‎2009 Jul 21 5:27 AM
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
‎2009 Jul 21 5:34 AM
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
‎2009 Jul 21 5:38 AM
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.
‎2009 Jul 21 5:51 AM
hi
QAMV Characteristic specifications for inspection processing
QAMR Characteristic results during inspection processing
regards
anand kumar
‎2009 Jul 21 6:15 AM
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
‎2009 Jul 21 6:19 AM
hi
Kindly check out tables CABN, CAWN, CAWNT
regards,
Nishant Malhotra
‎2009 Jul 21 6:39 AM
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