Hi everyone,
I am trying to run two report successively.
The first one will run on a set of records (based on a filter defined by user) and do several modifications to the records
The second report will run on the same set of records, but it must be on the modified records, not the original ones.
I wrote the following code:
function1(Rec1);
Rec2.COPY(Rec1);
function2(Rec2);
function1 will pass some parametres to the first report and then run it (same for function2).
Both function1 and function2 have the property VAR for their parameters.
but this didn't work
How shall I proceed?
Thanks in advance