Hi,
I need to get all the marked records for a customer in AX 2012
AR>all customers > Collect tab > Closed transaction editing.
I have written some code related to spectrans but I need to get the voucher number as well.
I am able to get the count with the below code , but I need tthe values of the record as well. eg. Voucher number
specTransManager = SpecTransManager::newRefTableId(Custtable, tableNum(CustSettlement), true);
if(specTransManager.getSpecTransCount() > 0)
Thanks,
VK