I am trying to create a custom API using vscode / AL. I have follow the example in the documentation for the API car brand / car model.
When I try to publish I get the following error.
Reason: Your license does not grant you the following permissions on TableData 2000000206 Published Application: IndirectInsert for company CRONUS USA, Inc..
My launch json looks like:
"version": "0.2.0",
"configurations": [
{
"name": "IOTW Server",
"request": "launch",
"type": "al",
"environmentType": "Sandbox",
"environmentName": "D365Env",
"startupObjectId": 22,
"startupObjectType": "Page",
"schemaUpdateMode": "ForceSync",
"breakOnError": "All",
"launchBrowser": true,
"enableLongRunningSqlStatements": true,
"enableSqlInformationDebugger": true,
"tenant": "3d1a315f-a282vvvvvvvvvvvvvvvvvvvv",
"usePublicURLFromServer": true
}
]
A question I have is how to tell the launch where to save the API tables/pages.
I see that "startupObjectId": 22, seems to tell where it goes. This is confusing as I don't now where to save my API and pages.
Thans for any help you can give
,