On the IT Manufacturing Setup page (page 99000768 "Manufacturing Setup"), the "Activate Legacy Subcontracting" action currently sets ObsoleteTag = '29.0'.
This value was bumped from '28.0' to '29.0' in #8966 solely to satisfy the AppSourceCop rule AS0072 (ObsoleteTag must match obsoleteTagVersion = 29.0). The action logically belongs to the same '28.0' obsoletion wave as the sibling "Disable Legacy Subcontracting" and "Pre Check Disable Legacy Subcontracting" actions and the parent LegacySubcontracting group, which all carry ObsoleteTag = '28.0'.
Proposed change
Restore ObsoleteTag = '28.0' on the "Activate Legacy Subcontracting" action and suppress AS0072 locally with a pragma, consistent with the existing pattern used elsewhere in the codebase (e.g. src/Layers/GB/BaseApp/Purchases/Vendor/VendorTempl.Table.al):
#pragma warning disable AS0072
ObsoleteTag = '28.0';
#pragma warning restore AS0072
File
src/Layers/IT/BaseApp/Manufacturing/Setup/ManufacturingSetup.Page.al
On the IT Manufacturing Setup page (page 99000768
"Manufacturing Setup"), the"Activate Legacy Subcontracting"action currently setsObsoleteTag = '29.0'.This value was bumped from
'28.0'to'29.0'in #8966 solely to satisfy the AppSourceCop rule AS0072 (ObsoleteTagmust matchobsoleteTagVersion= 29.0). The action logically belongs to the same'28.0'obsoletion wave as the sibling"Disable Legacy Subcontracting"and"Pre Check Disable Legacy Subcontracting"actions and the parentLegacySubcontractinggroup, which all carryObsoleteTag = '28.0'.Proposed change
Restore
ObsoleteTag = '28.0'on the"Activate Legacy Subcontracting"action and suppress AS0072 locally with a pragma, consistent with the existing pattern used elsewhere in the codebase (e.g.src/Layers/GB/BaseApp/Purchases/Vendor/VendorTempl.Table.al):File
src/Layers/IT/BaseApp/Manufacturing/Setup/ManufacturingSetup.Page.al