D365 : How to customize/Extends class RetailStatementCalculate?
*This post is locked for comments
I have the same question (0)

D365 : How to customize/Extends class RetailStatementCalculate?
*This post is locked for comments
I have the same question (0)Yes
[ExtensionOf(ClassStr(InventUpdate))]
final class InventUpdate_Extension
{
static public boolean checkItemPostingDate(
ItemId _itemId,
TransDate _transDate)
{
//ACX::Base::end
return next checkItemPostingDate(_itemId, _transDate);
}
}