‎2008 May 27 2:12 PM
Dear Experts,
can i get the screen fileld values of a program from another program using DYNP_VALUES_READ ???
(both prms r running sequentially)
‎2008 May 27 2:25 PM
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
‎2008 May 27 2:57 PM
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
‎2008 May 27 3:04 PM
Try with field-symbols
data l_text(50) value '(PROGRAM_NAME)variable_name'.
field-symbols <fs> type any.
assign (l_text) to <fs>.