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: 

call transaction

Former Member
0 Kudos

i want to call transaction 'cs02' from a report and want the fields of that transaction

change number and revision level to be loaded with values. i tried with set parameter ids AEN and RVS , im not getting it..

how to get values loaded automatically onto it without giving/typing by user.

2 REPLIES 2

Former Member
0 Kudos

Then try this

fill BDC table

  • Setting value for calling Transaction QMO3

CLEAR wa_bdcdata.

wa_bdcdata-program = c_scrn.

wa_bdcdata-dynpro = c_200.

wa_bdcdata-dynbegin = c_x.

APPEND wa_bdcdata TO t_bdcdata.

CLEAR wa_bdcdata.

wa_bdcdata-fnam = c_fnam.

wa_bdcdata-fval = i_viqmel-qmnum.

APPEND wa_bdcdata TO t_bdcdata.

CALL TRANSACTION tcod USING itab skip first screen.

.

Former Member
0 Kudos

Hey dont know the exact reason but only we are able to populate data into Material, Plant and Usage.

Hopefully other fields are getting cleared in middle. So unable to set paramter for Change number and Revision.