‎2006 Oct 23 1:12 AM
Hi..
pls help me with this..
requirement is like this..
I am calling a report from another one. Say the calling report is first and the called is second. I am calling using submit statement.
populated data in an internal table in second report.
Returned to the first report and called third report and filled an internal table and came back to first report.
Is there anyway that I can get those two ITABS at a time in the first report. Because i got to compare them.
Pls suggest .. Thanks a lot!@!
‎2006 Oct 23 1:19 AM
‎2006 Oct 23 1:31 AM
Thanks a lot Rich.. let me know... will get back to you once resolved. Thanks!
‎2006 Oct 23 2:08 AM
Rich
I was not able to get thru,.
can you please provide me the brief steps to do that.
What should be the memory ID??
Thanks
‎2006 Oct 23 2:12 AM
Hi,
Check this example..
*Send the internal table memory from the second report.
EXPORT ITAB2 TO MEMORY ID 'REPORT2'.
*Get the values from the second report.
IMPORT ITAB2 FROM MEMORY ID 'REPORT2'.
*Send the internal table memory from the third report.
EXPORT ITAB3 TO MEMORY ID 'REPORT3'.
*Get the values from the third report.
IMPORT ITAB3 FROM MEMORY ID 'REPORT3'.
Compare the internal table.
IF ITAB2[] = ITAB3[].
...
ENDIF.
Thanks,
Naren
Message was edited by: Narendran Muthukumaran
‎2006 Oct 23 4:57 PM
Thanks a lot Narendran and Rich. It solved my issue. You both owe some points .. Thanks a lot.