cancel
Showing results for 
Search instead for 
Did you mean: 

report for material master detailed report

Former Member
0 Kudos

developed material master report inputting material as parameter, plant as select-options. output list will have total quantity by material group and plant.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

You can have a look at standard transactions MMBE and MB52.

Regards,

Srilatha.

Former Member
0 Kudos

hi sri,

actually, i don't have sap so that's why i asked .if possible pls send me that code.

full points..........

thanx & regards,

priya

Former Member
0 Kudos

tables marc.

parameters p_matnr like marc-matnr.

select-options s_werks for marc-werks.

data fs_marc like marc.

data t_marc like standard table of fs_marc.

select * from marc into corresponding fields of table t_marc

where matnr eq p_matnr

and werks in s_werks.

Here is the code,

Regards,

Pavan P.