‎2006 Aug 24 8:38 AM
hI ALL,
USING SUBMIT IS THERE ANY WAY TO PASS tHE I/O FIELDS (NOT SELECTION SCREEN) TO A REPORT PROGRAM.sAMPLE CODES WILL BE PREFERABLE.
‎2006 Aug 24 8:41 AM
By using SET PARAMETER & GET PARAMETERS also its possible.
but for that field you have mention that parameter id.
before calling you have to use SET Paramter id... to place the value in the memory.
automatically that value will appear in that field of calling program.
Regards
srikanth
‎2006 Aug 24 8:41 AM
If you want to pass data from one pgm to another without using selection-screen than use EXPORT and IMPORT.
Calling Pgm.
EXPORT ITAB TO MEMORY.
SUBMIT ZXYZ AND RETURN.
Called Pgm.
IMPORT ITAB FROM MEMORY.
--Please note to define ITAB in both pgms.
--Variation is there for Export/Import to be sending it to a specificy memory id.
Regards
Anurag
‎2006 Aug 24 8:48 AM