2007 May 31 6:33 AM
WITHOUT USING SET PARAMETER AND GET PARAMETER HOW WILL YOU PASS THE DATA TO A PARTICULAR TRANSCATION..
2007 May 31 6:37 AM
Hi Surya,
You use Submit to call an ABAP report from within another report. For example
submit 'ZREPORT1' using pernr = g_pernr
exporting list to memory
and return.
In this case we are submitting the report ZREPORT1, passing the parameter pernr a value of g_pernr (from the calling program) sending the output list to ABAP memory, and retruning to the calling program.
You can retrieve the list using the function module LIST_FROM_MEMORY.
Regards,
Sree
The other way is use SUBMIT.
Regards,
Atish
2007 May 31 6:33 AM
2007 May 31 6:37 AM
Hi Surya,
You use Submit to call an ABAP report from within another report. For example
submit 'ZREPORT1' using pernr = g_pernr
exporting list to memory
and return.
In this case we are submitting the report ZREPORT1, passing the parameter pernr a value of g_pernr (from the calling program) sending the output list to ABAP memory, and retruning to the calling program.
You can retrieve the list using the function module LIST_FROM_MEMORY.
Regards,
Sree
| User | Count |
|---|---|
| 6 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |