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

Get data from a called standard transaction

Former Member
0 Likes
332

Hi All,

I have a difficulty for retrieving data from a standard transaction HR.

In my report , I use call transaction 'PP02' to create/modify an infotype record.

Now I need to get the data modified by users and also know their actions ( function code: back , exit or cancel).

Since PP02 is a standard transaction and I can't make modification within it, how can I get the data for furthur processing?

Is the data saved somewhere in the abap memory? How can I read the memory to get it back?

Thanks a lot for your help!

Yimin

1 REPLY 1
Read only

Former Member
0 Likes
278

Solution:

The transaction has used a BADI.

I create a new implementation of this BADI and add a 'export ...to memory ID AAA' and then use 'import .. from memory ID AAA' in the pricipal program.