Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions MB820_Assignments/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"version": "0.2.0",
"configurations": [
]
}
11 changes: 11 additions & 0 deletions MB820_Assignments/HelloWorld.al
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// 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 50200 CustomerListExt extends "Customer List"
{
trigger OnOpenPage();
begin
Message('App published: Hello world');
end;
}
31 changes: 31 additions & 0 deletions MB820_Assignments/app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"id": "ea9c8d6e-854e-420f-9956-bbe8b80fdd08",
"name": "MB820_Assignments",
"publisher": "VQD",
"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": 50200,
"to": 50249
}
],
"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": "MB820_Assignments"
},
{
"path": ".AL-Go"
}
],
"settings": {}
}