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 Inspection Characteristics table

Former Member
0 Likes
27,201

Hi,

I am designing Inspection Report for QM Module, the thing is i am unable to find the tables for the data

1. Characteristic Specifications

2. Characteristic Results

like Characteristic Related complete data. And also can any one tell me what is the relation between Operation & Charaterisitics in the Inspection Processing?

Like the table used for that !!

Waiting for ur reply....

Regards,

Srinath

6 REPLIES 6
Read only

Former Member
0 Likes
14,167

Try Following tables:

QALS - Matchcode for inspection lot,

QAMV - Characteristics Specification.

QAMR - Characteristic results during inspection processing

QAPP_QALS - Inspection lots for insp. points

Characteristis means Details about material like compositions, quality etc.

Operation means, what testing has to be done on Material.

Regds,

Anil

Edited by: Anil Katoch on Jul 21, 2009 6:53 AM

Edited by: Anil Katoch on Jul 21, 2009 6:56 AM

Read only

Former Member
0 Likes
14,167

Hi Srinath,

To get the Inspection Number use table MSEG.

with mseg-mblnr get inspection number from QAMB table with mblnr as key.

to get opeartion number,


  CALL FUNCTION 'BAPI_INSPLOT_GETOPERATIONS'
    EXPORTING
      NUMBER        = qamb-PRUEFLOS
    TABLES
      INSPOPER_LIST = INSPOPER_LIST.

for getting the characteristics of Inspection Use,


CALL FUNCTION 'BAPI_INSPOPER_GETCHAR'
    EXPORTING
      INSPLOT       = insnumber-------------->inspection lot number
      INSPOPER      = insopnumber---------->operation set number
    TABLES
      INSPCHAR_LIST = INSPCHAR_LIST.

for the characteristics value get original_value from QAMR Table.

Read only

Former Member
0 Likes
14,167

hi

QAMV Characteristic specifications for inspection processing

QAMR Characteristic results during inspection processing

regards

anand kumar

Read only

Former Member
0 Likes
14,167

Hi,

Following is the list of related tables.

QALS - Inspection lot record : This is the table where you can get all the inspection lot numbers

QAMV - Characteristic specifications for inspection processing

QAMR - Characteristic results during inspection processing

QASR - Sample results for inspection characteristics

QASE - Results table for the sample unit

QASE and QASR give the results for individual samples and partial samples

To get the operation for the particular characteristic, call function module QEEA_READ_SINGLE_OPERATION

Pass AUFPL from QALS, VORGLFNR from QAMR and PRUEFLOS from QAMR to the function module as shown below.

The FM returns the value of operation VORNR in structure e_qapo.

call function 'QEEA_READ_SINGLE_OPERATION'

exporting

i_aufpl = <fs_qals>-aufpl

i_plnkn = <fs_qamr>-vorglfnr

i_prueflos = <fs_qamr>-prueflos

importing

e_qapo_wa = e_qapo

exceptions

not_found = 1

others = 2

.

Hope you'll find this useful.

Regards

Radhika

Read only

Former Member
0 Likes
14,167

hi

Kindly check out tables CABN, CAWN, CAWNT

regards,

Nishant Malhotra

Read only

Former Member
0 Likes
14,167

hI,

QAMKR Table is for Specifications and results for the characteristic.

and there is one F.M 'QEEM_GET_CHARACTERISTIC_DATA'. try this.

Regards,

Manjula