‎2008 Jun 12 7:39 AM
Hello Gurus,
I am having an internal table in one report.
I want to use this internal table in another report.
How will I do this???
Please help me.
Regards,
Roshan Lilaram.
‎2008 Jun 12 7:42 AM
Hi,
program 1:
EXPORT t_sflight1 TO MEMORY ID 'SFLI'.
SUBMIT pgm2 AND RETURN.
program2:
IMPORT t_sflight1 FROM MEMORY ID 'SFLI'.
LOOP AT t_sflight1 INTO fs_string1.
where in use the same internal table in both reports
Reward Points If helpful.
Regards,
priya.
‎2008 Jun 12 7:42 AM
Hi,
program 1:
EXPORT t_sflight1 TO MEMORY ID 'SFLI'.
SUBMIT pgm2 AND RETURN.
program2:
IMPORT t_sflight1 FROM MEMORY ID 'SFLI'.
LOOP AT t_sflight1 INTO fs_string1.
where in use the same internal table in both reports
Reward Points If helpful.
Regards,
priya.
‎2008 Jun 12 7:43 AM
Hi,
First prog take type 'INCLUDE'.
Second prog take a 'EXECUTABLE'.
U can easly is use same interanal table use both reports.
Thanks,
SReddy.
‎2008 Jun 12 7:43 AM
Hi Roshan
well icna use the Import And Export Concept but for that u have to define an similar internal table in the called Program now when u import the internal table in called program use this
internal table to get the data .
Cheers
Snehi Chouhan