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

Pass a Workarea (Value) from one Program to another

Former Member
0 Likes
796

Hi Experts,

I have a requirement where a Workarea values needs to passed to the Report Program and as well to the Background Program. I am sure EXPORT and IMPORT will work for Foreground but not with the Background.

However for each workarea record a Background will be submitted (I am creating for Parallel Processing). So How can I achieve the above requirement (to get the work area value to the calling program).

Thanks in advance.

Regards,

Srinivas

5 REPLIES 5
Read only

Former Member
0 Likes
707

have you tried with export and import!!!!!

Read only

0 Likes
707

Hi,

Thanks for your reply...

Yes I have tried but it is not getting retrieved. As I will be calling the Background job inside the LOOP statement will there won't be problem with EXPORT and IMPORT I mean regarding the MEMORY ID's everytime I need to change the name (for each record of the LOOP.

Regards,

Srinivas

Read only

0 Likes
707

Hi

Import/export work in the same session, I can suppose when u submit a job program, this will start to run in a new task, so in a new session, so it can explain because Import/export don't work.

So u can try to use import/export statament in order to set the value in the cluster instead of (abap) memory

Max

Read only

0 Likes
707

Hi,

I think you can use field symbols for this workarea....

Read only

Former Member
0 Likes
707

Self...