Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Transfer Selection Screen Va;ue

Former Member
0 Likes
511

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.

3 REPLIES 3
Read only

Former Member
0 Likes
484

Hi Lipika,

You ca use export and import statements to resolve your problem.

Regards,

Venkat

Read only

Former Member
0 Likes
484

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.

Read only

Former Member
0 Likes
484

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