I need to transfer the username from one report to another report in ABAP.
I am using the following code.
SUBMIT zpgm_to WITH fld_pgm2 eq fld_pgm1 .
'zpgm_to' is a report in which I need to pass a value.
'fld_pgm2' - field in the report zpgm_to.
'fld_pgm1' - the field in the report zpgm_from, which contains the transmitted value.
While I am using debugging, I find that this value is not passed to the zpgm_to report. I could not find where I made a mistake. If anyone crosses this question earlier, pls make it necessary.
source
share