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

SET parameter ID for MD13

Former Member
0 Likes
1,058

Hi All.

I need to call the transaction MD13 from ALV, please let me know set parameter ID for MD13.

Thanks.

Regards.

Jay

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
863

Hi ,

ID = PAF -->planned order

Press F1 on the Field -->technical Settings --->Parameter ID

Regards

Prabhu

6 REPLIES 6
Read only

Former Member
0 Likes
864

Hi ,

ID = PAF -->planned order

Press F1 on the Field -->technical Settings --->Parameter ID

Regards

Prabhu

Read only

Former Member
0 Likes
863

Hi,

The parameter ID for MD13 is PAF

help to find Parameter ID

1. place the cursor in the field and Press F1 .

2. Click 'Technical info' button.

3. You can see your Paramter ID here.

Regards,

Boobalan S

Read only

kiran_k8
Active Contributor
0 Likes
863

Jay,

In the ALV Grid Display function module

i_callback_user_command = 'LIST1'

*******

FORM list1 USING r_ucomm LIKE sy-ucomm rs_selfield TYPE slis_selfield.

CASE r_ucomm.

WHEN '&IC1'.

IF rs_selfield-fieldname = 'PLNUM'.

READ TABLE itab1 INDEX rs_selfield-tabindex.

SET PARAMETER ID 'PAF' FIELD itab1-plnum.

CALL TRANSACTION 'MD13' AND SKIP FIRST SCREEN.

ENDIF.

ENDCASE.

ENDFORM. "list1

K.Kiran.

Read only

Former Member
0 Likes
863

Hi Jay,

The Parameter Id for MD13 is PAF.

To get the parameter-id got MD13 and press put the cursor in Planned Order Field an press F1. Then Select Techinical settings and there you can find Parameter Id.

Try the following:

SET PARAMETER ID 'PAF' FIELD <fieldname>.

and you need to call transaction.

CALL TRANSACTION 'MD13' AND SKIP FIRST SCREEN.

Regards,

Chandra Sekhar

Read only

Former Member
0 Likes
863

Hi,

Use like this

SET PARAMETER ID 'PAF' FIELD <value>.

CALL TRANSACTION 'MD13' AND SKIP FIRST SCREEN.

Read only

Former Member
0 Likes
863

Use

SET PRAMETER ID 'PAF'

Call transaction 'MD13 '

rgds

rajesh