2007 Mar 19 12:06 PM
Hi All,
How to get the rescheduling exceptions. just like transaction MD04.
Please replay ASAP.
Thanks in Advance.
2007 Mar 19 12:09 PM
Hi Praveen,
Use the function module
CALL FUNCTION 'MD_STOCK_REQUIREMENTS_LIST_API'
EXPORTING
matnr = w_itab3-matnr
werks = w_itab3-werks
TABLES
mdezx = i_mdez.
Which outputs the MD04 Screen. and pass the auslt as below.
*GET ALL Exceptions into i_excep.
SELECT aussl auslt FROM t458b INTO TABLE i_excep
WHERE spras = sy-langu.
you will get the Exceptions defined.
Thanks,
Kaleem,
Reward if helpful.
2007 Mar 19 12:09 PM
Hi Praveen,
Use the function module
CALL FUNCTION 'MD_STOCK_REQUIREMENTS_LIST_API'
EXPORTING
matnr = w_itab3-matnr
werks = w_itab3-werks
TABLES
mdezx = i_mdez.
Which outputs the MD04 Screen. and pass the auslt as below.
*GET ALL Exceptions into i_excep.
SELECT aussl auslt FROM t458b INTO TABLE i_excep
WHERE spras = sy-langu.
you will get the Exceptions defined.
Thanks,
Kaleem,
Reward if helpful.