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: 

how to get the value from one transaction to another?

Former Member
0 Kudos

Hi ,

     I have created menu that calls a transaction "zprocess" like shown in the pic.

     

when i click the menu button Category it directs me this page shown in below pic.

Capturedsa.JPG

My aim:

1.when i click the menu button "CATEGORY"it has to redirect to the above screen with a value from the field called"class_id"and to show the value in the process entry screen field called"class"

please help..

1 ACCEPTED SOLUTION

vinoth_aruldass
Contributor
0 Kudos

hi, try import export concept.

it works,

ex

EXPORT flag1 TO MEMORY ID 'FLAG1' .

IMPORT flag1  FROM  MEMORY ID 'FLAG1' .

hope it will be helpful.

Vinoth.

3 REPLIES 3

Sandeep_Kumar
Product and Topic Expert
Product and Topic Expert
0 Kudos

Try using SET/GET parameters...

vinoth_aruldass
Contributor
0 Kudos

hi, try import export concept.

it works,

ex

EXPORT flag1 TO MEMORY ID 'FLAG1' .

IMPORT flag1  FROM  MEMORY ID 'FLAG1' .

hope it will be helpful.

Vinoth.

Former Member
0 Kudos

Hi ,

If you need to IMPORT or EXPORT compalte internal table, you can make use of syntax as bewlo.

{code}

 

IMPORT itab = itab1 FROM DATABASE indx(fi)
CLIENT sy-mandt ID wa_xebkn-vbeln

.

 

EXPORT i_vendor TO DATABASE indx(fi)
FROM wa_indx CLIENT sy-mandt ID vbak-vbeln

{code}

.