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

How to get data from another program after a Call Funcion In Update Task

Former Member
0 Likes
617

Hi All,

In VF01 transaction, I have the userexit1 ZXMCVU06 with a commit statement that triggers a standard function module (in update task). This function module exucutes another userexit2.

The problem I experinced is that the userexit2 needs to get dat from userexit1.

How can I solve this question? SET/GET PARAMETER or IMPORT/EXPORT?

Follow below more technical information:

- VF01 executes ZXMCVU06 userexit; In ZXMCVU06 code there is a commit statement.

- The commit statement executes the call funcion 'J_1B_NF_DOCUMENT_PRINT' in update task.

- The funcion 'J_1B_NF_DOCUMENT_PRINT' executes anothe userexit (LJ1BAF01).

- I need to get some data in LJ1BAF01 from ZXMCVU06. Is it possible?

Thanks in advance,

Janete

Hi All,

In VF01 transaction, I have the userexit1 ZXMCVU06 with a commit statement that triggers a standard function module (in update task). This function module exucutes another userexit2.

The problem I experinced is that the userexit2 needs to get dat from userexit1.

How can I solve this question? SET/GET PARAMETER or IMPORT/EXPORT?

Follow below more technical information:

- VF01 executes ZXMCVU06 userexit; In ZXMCVU06 code there is a commit statement.

- The commit statement executes the call funcion 'J_1B_NF_DOCUMENT_PRINT' in update task.

- The funcion 'J_1B_NF_DOCUMENT_PRINT' executes anothe userexit (LJ1BAF01).

- I need to get some data in LJ1BAF01 from ZXMCVU06. Is it possible?

Thanks in advance,

Janete

2 REPLIES 2
Read only

Former Member
0 Likes
538

export / import should be the way to use here

Read only

Former Member