Skip to content

Commit

Permalink
New PTE (MyFirstApp)
Browse files Browse the repository at this point in the history
  • Loading branch information
freddydk committed Nov 5, 2024
1 parent 47721f8 commit a3891f0
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 6 deletions.
5 changes: 5 additions & 0 deletions MyFirstApp/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"version": "0.2.0",
"configurations": [
]
}
12 changes: 12 additions & 0 deletions MyFirstApp/HelloWorld.al
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Welcome to your new AL extension.
// Remember that object names and IDs should be unique across all extensions.
// AL snippets start with t*, like tpageext - give them a try and happy coding!

pageextension 60000 CustomerListExt extends "Customer List"
{
trigger OnOpenPage();
begin
Message('App published: Hello world');
end;
}

31 changes: 31 additions & 0 deletions MyFirstApp/app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"id": "24dd0752-78ec-4967-a5b7-47cbb247f82b",
"name": "MyFirstApp",
"publisher": "Freddy",
"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": 60000,
"to": 61000
}
],
"features": [
"NoImplicitWith"
],
"resourceExposurePolicy": {
"allowDebugging": true,
"allowDownloadingSource": false,
"includeSourceInSymbolFile": false
}
}
15 changes: 9 additions & 6 deletions al.code-workspace
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"folders": [
{
"path": ".AL-Go"
}
],
"settings": {}
"folders": [
{
"path": "MyFirstApp"
},
{
"path": ".AL-Go"
}
],
"settings": {}
}

0 comments on commit a3891f0

Please sign in to comment.