Hello,
We have an app on appsource that contains 3 pages with chartparts, as shown below
chartpart("270-01"; "270-01")
{
Visible = false;
ApplicationArea = All;
}
When we try to upload our app in appsource then microsoft validates the new .app for both versions BC26 and BC27.
When we remove the chartparts from the page then during appsource validation we get following error.
The chartpart with name '272-01' defined in Page 'XXX' was found in the previous version,
but is missing in the current extension. This will break dependent extensions.
If we dont remove it then we get appsource validation failure because chartparts do not exist in BC27.
I tried following approach
#if BC26
chartpart("270-01"; "270-01")
{
ApplicationArea = All;
Visible = false;
ObsoleteState = Pending;
}
#endif
,but still get following issue during appsource validation for BC27.
The chartpart with name 'XXX' defined in Page 'YYY' was found in the previous version, but is missing in the current extension. This will break dependent extensions.
Please mind that in BC27 chartparts are totally removed.
Does anyone know a way to fix this?
Thanks in advance,