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

Standard Get Set Parameters

Former Member
0 Likes
534

Hi All,

I have one requirement, in that I have to trigger some standard transactions

for that where should I get, standard Get Set parameters ID's so that I can put user defined values in that Input Output fields.

Regards,

Tushar

Hi All,

I have one requirement, in that I have to trigger some standard transactions

for that where should I get, standard Get Set parameters ID's so that I can put user defined values in that Input Output fields.

Regards,

Tushar

2 REPLIES 2
Read only

Former Member
0 Likes
502

Hi,

in your standard t-code say ME23 or MIGO

when u click on Input Output screen field and press F1 help in technical information

u will get parameter id's and other useful information as well.

AT LINE-SELECTION.

  GET CURSOR FIELD FLD VALUE VAL .
    GET CURSOR FIELD FLD VALUE VAL1 .
  CASE FLD.

    WHEN  'ITAB-EBELN'.

      SET PARAMETER ID 'BES' FIELD VAL .
      CALL TRANSACTION 'ME23'.


    when 'ITAB-MBLNR'.
      SET PARAMETER ID 'MBN'  FIELD VAL1 .
      CALL TRANSACTION 'MIGO'.


  ENDCASE.

I hope this wil use ful to you.

Rgards,

Ketan..

Read only

0 Likes
502

Thanks for your reply. I t will help me.

Regards,

Tushar.