Transferring data from one report to another report using SAP ABAP Submit

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.

+3
source share
1 answer

I do not see a problem in your code example.

fld_pgm2 undefined, .

:

  • - > - >
  • , External program interfaces.
  • . , ___ is not a parameter or a select option in report ___
+2

All Articles