Hi,
I'm having requirement to add additional fields in accounting source explorer form and to write the logic to insert the data for those custom fields.
I have created customized fields in ASE temp table and written extension for AccountingSourceExplorerProcessor Class & method postDataUpdate.
I will update this field from another customized field of CustTrans table.
But updation is not happening in ASE table. While debugging came to know that Temp table not having any records. But at form level data is visible.
Any help how to resolve this issue.
Code is like this :
update_recordSet accountingSourceExplorerTmp
setting InvoiceDescription = custTrans.InvoiceDescription
where accountingSourceExplorerTmp.InvoiceDescription == ''"
join custTrans
where custTrans.Voucher == accountingSourceExplorerTmp.SubledgerVoucher
&& custTrans.TransDate == accountingSourceExplorerTmp.AccountingDate
join custTable
where custTable.AccountNum == custTrans.AccountNum
join Name from dirPartyTable
where dirPartyTable.RecId == custTable.Party;