Application Development and Automation 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: 
Read only

QM Tables- Help Needed

Former Member
0 Likes
1,395

Hi all,

I need to make a report on Defective Quantity ( Materialwise & Vendorwise).

I am trying to make it using the following tables...

qave

qals

marc

mkpf

mseg

qamb

Can somebody suggest me from which table should get Defect type(code) & code group..? Is there any other table for the same..?Coz I need to display defect type alongwith defective material.

1 ACCEPTED SOLUTION
Read only

alejandro_lpez
Contributor
0 Likes
1,054

Hi,

Look at table QMFE, fields FEGRP (Code Group - Problem) and FECOD (Problem or Damage Code)

regards,

Alejandro.

Hi all,

I need to make a report on Defective Quantity ( Materialwise & Vendorwise).

I am trying to make it using the following tables...

qave

qals

marc

mkpf

mseg

qamb

Can somebody suggest me from which table should get Defect type(code) & code group..? Is there any other table for the same..?Coz I need to display defect type alongwith defective material.

2 REPLIES 2
Read only

alejandro_lpez
Contributor
0 Likes
1,055

Hi,

Look at table QMFE, fields FEGRP (Code Group - Problem) and FECOD (Problem or Damage Code)

regards,

Alejandro.

Read only

alejandro_lpez
Contributor
0 Likes
1,054

Hi,

Make a Select from table QMEL to get field qmnum (Notification No) with the field prueflos (Inspection Lot Number).

SELECT prueflos qmnum INTO TABLE i_defect

FROM qmel FOR ALL ENTRIES IN i_orden

WHERE prueflos = p_prueflos.

Then with table i_defect you can select all the defects and groups asociated to Inspection Lot Number

SELECT qmnum fenum fegrp fecod anzfehler pnlkn merknr probenr

arbpl arbplwerk feqklas

INTO TABLE i_defect_complete

FROM qmfe FOR ALL ENTRIES IN i_defect

WHERE qmnum = i_defect-qmnum.

regards,

Alejandro.