2008 Feb 06 4:33 AM
Hi......,
My requirement is I have to subtract the subtotals of two columns (i.e. Quantity) and I need to display the result (after subtraction) in the another column(i.e. Delta).
At last I need to diplay number of record count processed by report.
Please guide me on the same.....
Thanx,
Jay
2008 Feb 06 4:39 AM
Hi jay,
Store the two values in two subtotals in different variables say q1, q2 and place the substracted value in q and print it.
To get the no of records processed in the report, give a count ie
if sy-subrc = 0, val = val+1. in loop and finally print the val.
tyr it.