Hi
I have Below DataItem Structure in report . I want every G/L Account information should print on New Page including Header.
G/L Entry
Integer
Thanks
*This post is locked for comments
you could use following structure in the report:
DataItemLink at dataitem "g/l entry": G/L Account No.=FIELD(No.)
trigger code:
G/L Account - OnAfterGetRecord()
// local var.: glEntry / record / "g/l entry"
glEntry.SETRANGE("G/L Account No.","G/L Account"."No.");
IF glEntry.COUNT = 0 THEN
CurrReport.SKIP;
report layout:
Sohail Ahmed
2
mmv
2
Amol Salvi
2