‎2008 Aug 06 4:59 AM
Hi All.
I need to call the transaction MD13 from ALV, please let me know set parameter ID for MD13.
Thanks.
Regards.
Jay
‎2008 Aug 06 5:02 AM
Hi ,
ID = PAF -->planned order
Press F1 on the Field -->technical Settings --->Parameter ID
Regards
Prabhu
‎2008 Aug 06 5:02 AM
Hi ,
ID = PAF -->planned order
Press F1 on the Field -->technical Settings --->Parameter ID
Regards
Prabhu
‎2008 Aug 06 5:02 AM
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
‎2008 Aug 06 5:03 AM
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.
‎2008 Aug 06 5:07 AM
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
‎2008 Aug 06 6:38 AM
Hi,
Use like this
SET PARAMETER ID 'PAF' FIELD <value>.
CALL TRANSACTION 'MD13' AND SKIP FIRST SCREEN.
‎2008 Aug 06 6:41 AM