Application Development 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: 

Export a table to memory ID and import it in the Workflow.

Former Member
0 Kudos

Hi,

For a particular requirement,

We are triggering Workflow from the User Exit MV45AFZZ.

Before triggering this WF, I am trying to export an internal table to a memory ID and trying to Import it back from the same memory ID into an internal table in the Workflow task. This is failing.

Even the name of internal tables and memory IDs are similar.

Can we do this like this? If yes please let me know how to do this.

Thanks & Regards,

Mallika Maktala

2 REPLIES 2

Former Member
0 Kudos

Hi

The MEMORY ID use the ABAP memory and this part of memory is seen by all programs working in the same mode, you make sure your WF don't open several tasks, but uses only one.

Max

0 Kudos

Initially,

I have populated the values of the internal table in to a Database table, immediately called Workflow, in a task tried to retrieve the data from the database table.

But though there is some data in the table, it dint retrieve any data, as at that point the table may not be updated.

So now I used this Import export concept.

I think its in same session, but still not working,

Any solution?

Mallika Maktala