cancel
Showing results for 
Search instead for 
Did you mean: 

MD04 Transaction Data Table

Former Member
0 Kudos

Hi,

I want to know the table name for MD04 transaction data. in that transaction i am giving Material, Plant. its showing MRP values and stock. i need to know where it is storing?

points will be rewarded for helpful answers.

Regards,

Balu

View Entire Topic
Former Member
0 Kudos

Hi,

Just Use:

CALL FUNCTION 'MD_STOCK_REQUIREMENTS_LIST_API'

EXPORTING

  • PLSCN = "Planning Scenario of Long-Term Planning

matnr = <t_marc>-matnr "Material Number

werks = <t_marc>-werks "Plant

inper = 'M' "For Months

  • ergbz = s_ergbz-low

  • BERID = "MRP Area

  • IMPORTING

  • E_MT61D =

  • E_MDKP =

  • E_CM61M =

  • E_MDSTA =

TABLES

  • MDPSX = t_mdps

  • mdezx = t_mdez

mdsux = t_mdsu "Summary table

EXCEPTIONS

material_plant_not_found = 1

plant_not_found = 2

OTHERS = 3.

Please it is exactly replica of MD04, so whatever is possible in MD04 e.g. setting the filter, everything is possible in this FM as it has got all the required parameters. In the above example I am retrieving the 'Summary' data monthwise.

I hope this helps,

Regards

Raju Chitale

Former Member
0 Kudos

Dear Raju,

Your answer is perfectly matched the question. Thanks to all who tried to give solution.

Regards,

Balu