RE: ledgerTansAccountList Report
my customizations are under
1. Adding new field (Journal num) which is required to display on report added to LedgerTranscatoinlistStaging Tmp.
2. The same field (Journal num) added to another table LedgerTransListTmp.
3. Adding a new Table (LegerEntryJournal) to LegerTranslist Query with outer join General Journal Entry table.
4. added code to Class method LedgerTranslistHelper(create Reportdata)
ledgerentryjournal=queryRun.get(tableNum( ledgerentryjournal))as ledgerentryjournal;
processingStagingTable.JournalNum=ledgerEntryJournal.JournalNumber;
join JournalNumber from ledgerEntryJournal
where LedgerEntryJournal.recId==generalJournalEntry.LedgerEntryJournal;
the code work fine....but the actual report data disturbed.
i.e suppose with out customization the report data show me data on 1786 pages, and when i import the customization the same report show only record for 786 page.
please help me where i making mistake.
Regards.