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

DYNP_VALUES_READ

Former Member
0 Likes
426

Dear Experts,

can i get the screen fileld values of a program from another program using DYNP_VALUES_READ ???

(both prms r running sequentially)

3 REPLIES 3
Read only

Former Member
0 Likes
393

Hi Friend,

For this requirement, this FM will not work.

Try with memory ID; Pass one value to the memory ID from one program and take that from other.

Regards

Krishnendu

Read only

Former Member
0 Likes
393

Hi,

Try like this.

call FM 'RS_REFRESH_FROM_SELECTOPTIONS' to read the selection screen values and with the help of export you can acheive the functionality.

EXPORT t_datatab FROM t_datatab1 TO MEMORY ID 'ZTEST'.

in the other program use IMPORT statment to read the values.

Rgds,

Bujji

Read only

Former Member
0 Likes
393

Try with field-symbols


data l_text(50) value '(PROGRAM_NAME)variable_name'.
field-symbols <fs> type any.

assign (l_text) to <fs>.