From bf59cea3ec4624ff147e89a29f39392dd812023e Mon Sep 17 00:00:00 2001 From: Jonas Blunck Date: Thu, 7 Nov 2024 15:10:25 +0100 Subject: [PATCH] Add application code --- CustomerApp/CustomerListExtension.al | 9 ++++++++ CustomerApp/app.json | 32 ++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 CustomerApp/CustomerListExtension.al create mode 100644 CustomerApp/app.json diff --git a/CustomerApp/CustomerListExtension.al b/CustomerApp/CustomerListExtension.al new file mode 100644 index 0000000..94f742e --- /dev/null +++ b/CustomerApp/CustomerListExtension.al @@ -0,0 +1,9 @@ + +pageextension 50000 CustomerListExt extends "Customer List" +{ + trigger OnOpenPage(); + begin + Message('App published: Hello AL-Go!'); + end; +} + diff --git a/CustomerApp/app.json b/CustomerApp/app.json new file mode 100644 index 0000000..658b7d5 --- /dev/null +++ b/CustomerApp/app.json @@ -0,0 +1,32 @@ +{ + "id": "921879f8-cca3-4357-a47d-580b2f381417", + "name": "MyApp", + "publisher": "Jonas", + "version": "1.0.0.0", + "brief": "", + "description": "", + "privacyStatement": "", + "EULA": "", + "help": "", + "url": "", + "logo": "", + "dependencies": [], + "screenshots": [], + "platform": "1.0.0.0", + "application": "22.0.0.0", + "idRanges": [ + { + "from": 50000, + "to": 51000 + } + ], + "features": [ + "NoImplicitWith" + ], + "resourceExposurePolicy": { + "allowDebugging": true, + "allowDownloadingSource": false, + "includeSourceInSymbolFile": false + } + } + \ No newline at end of file