Hi all,
I'm working on my first AL project. I'm using cloud Business Central, and I'm authenticated with my account which has access to all companies.
But when I try to download symbols, it's trying to get the data for the company "CRONUS UK Ltd", instead of my actual company. Is there a way to specify company in the launch.json? I don't see an option for it, I'm using `startupCompany` but that doesn't seem to make a difference.
This is the error I'm getting:
```
If you are targeting a cloud instance, supply these IDs if contacting Microsoft support.
[2026-02-09 11:01:35.23] The request for path /v2.0/Sandbox/dev/packages?publisher=Microsoft&appName=Application&versionText=27.0.0.0&tenant=<tenant id> failed with code Forbidden. Reason: You do not have the following permissions on TableData 2000000206 Published Application: IndirectRead for company CRONUS UK Ltd..
```
This is my launch.json:
```
{
"version": "0.2.0",
"configurations": [
{
"name": "Microsoft cloud sandbox",
"request": "launch",
"type": "al",
"environmentType": "Sandbox",
"environmentName": "Sandbox",
"startupObjectId": 22,
"startupObjectType": "Page",
"breakOnError": "All",
"launchBrowser": true,
"enableLongRunningSqlStatements": true,
"enableSqlInformationDebugger": true
}
]
}
```