Hi there,
I am trying tp publish my customization package below is my Json file for configuration. Before the issues with the connection was resolved with changing the version 27.0.0.0.
It seems like something to do with the setting.
I have listed below the AL code for adding a datetime fields.
however now when publishing the customization I have the below error. My launch json is as below
Any help would be really appreciated
Error Log
[2026-01-27 21:25:24.30] Publishing AL application using launch configuration 'Microsoft cloud sandbox'.
[2026-01-27 21:25:24.79] Authenticated as user 'amit.kary@XXXXXXXX' in tenant 'XXXXXXXXXXXX'. Please note that these credentials are cached. Clear the credentials cache to authenticate as another user.
[2026-01-27 21:25:24.79] Targeting Dynamics 365 Business Central environment tenant '31ec9b1a-4393-4bd7-8438-b0c158aedeb8'.
[2026-01-27 21:25:46.13] Error: Internal Server Error
[2026-01-27 21:25:46.14] Error: Error: An error occured while processing the request.
If you are targeting a cloud instance, supply these IDs if contacting Microsoft support.
[2026-01-27 21:25:46.18] The request for path /v2.0/WiiseDemoProduction/dev/metadata?tenant=31ec9b1a-4393-4bd7-8438-b0c158aedeb8 failed with code InternalServerError. Reason: Internal Server Error
{
"name": "Microsoft cloud sandbox",
"request": "launch",
"type": "al",
"environmentType": "Production",
"environmentName": "WiiseDemoProduction",
"startupObjectId": 22,
"startupObjectType": "Page",
"breakOnError": "All",
"launchBrowser": true,
"enableLongRunningSqlStatements": true,
"enableSqlInformationDebugger": true,
"tenant": "XXXXXXXXXXX"
}
tableextension 50100 "Sales Header Ext" extends "Sales Header"
{
fields
{
field(50100; "SDTM Date"; DateTime)
{
Caption = 'SDTM Date';
}
}
}
pageextension 50100 "Sales Order Ext" extends "Sales Order"
{
layout
{
addlast(General)
{
field("SDTM Date"; "SDTM Date")
{
ApplicationArea = All;
}
}
}
}