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: 

Data exchange between dialog and update processes

0 Kudos
773

Dear experts,


I need to send some data from the dialog to the update work process. Is this possible? If so, how? Will e.g. 'export to memory id'/'import from memory id' work in this case?

Thank you!

Alexander.

2 REPLIES 2

Sandra_Rossi
Active Contributor
554

No. The "ABAP memory" is only shared between internal sessions, inside one external session (cf ABAP documentation - Memory organization). Use CALL FUNCTION ... IN UPDATE TASK to transmit the data to the update task.

former_member208149
Participant
0 Kudos
554

Well, EXPORT TO MEMORY ID shares the data among internal sessions but you can make use of EXPORT TO DATABASE ID to send the data from the dialog to the update work process if absolutely necessary.

https://help.sap.com/doc/abapdocu_751_index_htm/7.51/en-US/abapexport_data_cluster_medium.htm#!ABAP_...