Hi,
We're first starting out with developing our first AL Language app. We're having trouble deploying the Hello World basic app to our Sandbox account.
What we've done so far is:
1. Download the AL Language VS Code extension
2. Create a basic app (ALT A, ALT L).
3. Authenticate with our Sandbox account
4. Deploy (F5).
The errors we're getting in the terminal:
[2021-07-15 16:42:59.45] Sending request to https://api.businesscentral.dynamics.com/v2.0/sandbox/dev/packages?publisher=Microsoft&appName=Application&versionText=18.0.0.0 [2021-07-15 16:42:59.45] Sending request to https://api.businesscentral.dynamics.com/v2.0/sandbox/dev/packages?publisher=Microsoft&appName=System&versionText=1.0.0.0 [2021-07-15 16:43:00.46] The request for path /v2.0/sandbox/dev/packages?publisher=Microsoft&appName=System&versionText=1.0.0.0 failed with code NotFound. Reason: Not Found [2021-07-15 16:43:04.95] The request for path /v2.0/sandbox/dev/packages?publisher=Microsoft&appName=Application&versionText=18.0.0.0 failed with code NotFound. Reason: Not Found [2021-07-15 16:43:04.95] Could not download reference symbols. Please ensure that: 1. The correct server name and instance are specified in the launch.json file. 2. The correct application version is specified in the app.json file. 3. The dependencies are correctly specified in the app.json file. Microsoft (R) AL Compiler version 7.3.7.27759 Copyright (C) Microsoft Corporation. All rights reservedlaunch.json
{ "version": "0.2.0", "configurations": [ { "name": "Microsoft cloud sandbox", "request": "launch", "type": "al", "environmentType": "Sandbox", "environmentName": "sandbox", "startupObjectId": 22, "startupObjectType": "Page", "breakOnError": true, "launchBrowser": true, "enableLongRunningSqlStatements": true, "enableSqlInformationDebugger": true } ] }
app.json
{ "id": "7edce079-e514-4f51-bf41-7fe36d831099", "name": "ALProject3", "publisher": "Default publisher", "version": "1.0.0.0", "brief": "", "description": "", "privacyStatement": "", "EULA": "", "help": "", "url": "", "logo": "", "dependencies": [], "screenshots": [], "platform": "1.0.0.0", "application": "18.0.0.0", "idRanges": [ { "from": 50100, "to": 50149 } ], "contextSensitiveHelpUrl": "https://ALProject3.com/help/", "showMyCode": true, "runtime": "7.0" }