2006 Nov 21 10:24 AM
How do I transfer the value of a selection screen of one program to another program ?
for example i have program A having the selection screen value A1.This program A calls the program B where I want to use the value A1.
How do I transfer the value of a selection screen of one program to another program ?
for example i have program A having the selection screen value A1.This program A calls the program B where I want to use the value A1.
2006 Nov 21 10:39 AM
Hi Lipika,
You ca use export and import statements to resolve your problem.
Regards,
Venkat
2006 Nov 21 10:44 AM
Hi,
If program B has parameter A on selection screen you can use 'submit' statement in program A to call program B.
SUBMIT B VIA SELECTION-SCREEN
WITH A eq A1
AND RETURN.
2006 Nov 21 10:58 AM
Hi,
you can use export and export to memory that value,and then submit and in the program B import that value from memory.
report aprogram.
export a from a to memory id 'id'.
submit bprogram and return.
report bprogram.
import a to a from memory id 'id'.
Regards
Vijay