‎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
‎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