Hi
How to save data in temporary Dataitem in a report and then display information in a Tablix
Purchase Invoice Header
Purchase Invoice Line
In Purchase Invoice Line i have below code
Purch. Inv. Line - OnAfterGetRecord()
PLine.RESET;
PLine.SETRANGE(PWHRLine."Source No.", "Purch. Inv. Line"."Purchase Order No.");
PLine.SETRANGE(PWHRLine."Source Line No.","Purch. Inv. Line"."Purchase Order Line No.");
IF PLine.FINDFIRST THEN BEGIN
RNo := PLine."RNo";
RDate := PLine."RDate";
END;
RNo , RDate i want to display in separate Tablix
Thanks
*This post is locked for comments