protected CustAgingReportTmp insertCustAgingReportTmp(boolean _reverseAmountsAndHeadings)
{
CustAgingReportTmp custAgingReportTmp = next insertCustAgingReportTmp(_reverseAmountsAndHeadings);
custAgingReportTmp.TotalCreditMax = 12;
custAgingReportTmp.SalesMan = 'aaa';
return custAgingReportTmp;
}
The Second Way to get data using a table event handler:
Thanks!
Regards:
Ahmad Hassan.
protected CustAgingReportTmp insertCustAgingReportTmp(boolean _reverseAmountsAndHeadings)
{
CustAgingReportTmp custAgingReportTmp = next insertCustAgingReportTmp(_reverseAmountsAndHeadings);
// custAgingReportTmp.clear(); // this line missed after R&D then added these lines
custAgingReportTmp.TotalCreditMax = 12;
custAgingReportTmp.SalesMan = 'aaa';
// custAgingReportTmp.insert(); // this line missed after R&D then added these lines
return custAgingReportTmp;
}
Thanks!.
André Arnaud de Cal...
291,965
Super User 2025 Season 1
Martin Dráb
230,836
Most Valuable Professional
nmaenpaa
101,156