15. April 2008 10:20
Turnover Statistics Customer - OnPreDataItem()
LastFieldNo := FIELDNO("Customer No.");
SETRANGE("Posting Date",von,bis);
Turnover Statistics Customer - OnAfterGetRecord()
IF FIND('-') THEN BEGIN
vergleich("Customer No.");
IF vergleich("Customer No.") THEN BEGIN
CurrReport.CREATETOTALS("Quantity Therapy");
END ELSE
CurrReport.SKIP;
END;
Turnover Statistics Customer - OnPostDataItem()
vergleich(debitor : Code[20]) : Boolean
turnover.RESET;
turnover.COPYFILTERS("Turnover Statistics Customer");
turnover.SETRANGE("Posting Date",von2,bis2);
turnover.SETRANGE("Customer No.",debitor);
EXIT(turnover.ISEMPTY);
15. April 2008 12:48
17. April 2008 20:38