Application Development 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: 

a report for MM where basic list will contain the material no and material

Former Member
0 Kudos

how to develop a report for MM where basic list will contain the material no and material description for the range of material no chosen by user. ...plz help me...how to do this step by step..

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Raja,

Firstly declare a select-option for material number.

write a select query specifying the required field and specify a where clause

as

WHERE MATNR IN S_MATNR.

Obviously you will select the records into internal table and so loop that internal table and display the records...

The records will be displayed on the basic list.

Hope this will solve your problem.

Regards,

Narin Nandivada

4 REPLIES 4

Former Member
0 Kudos

Are you asking someone to write a simple report for you? There are standard SAP Reports you could use, you could use the ABAP Dictionary, or you could even use QucikView or ABAP Query.

0 Kudos

i'm sorry...dear....

i need a process to do this....plz help...

Former Member
0 Kudos

Look at the MARA and MAKT tables. If you do not know the field names, go to TCode MM03, go to the Fileds you need, press the F1 key to get the Technical Information. You should be able to write a program from there. The best way to learn is to do it yourslef, if you run itno troubles, then repost with what problems you are having.

Former Member
0 Kudos

Hi Raja,

Firstly declare a select-option for material number.

write a select query specifying the required field and specify a where clause

as

WHERE MATNR IN S_MATNR.

Obviously you will select the records into internal table and so loop that internal table and display the records...

The records will be displayed on the basic list.

Hope this will solve your problem.

Regards,

Narin Nandivada