QM - Table QPMK-STEUERKZ

Hello Abapers...
The Transaction QS23 (Change master insp. charac. version) use several "checkboxes" that are updated in the field STEUERKZ from the Table QPMK.
In that field if a read the values from the table (SE16) it has this: "XX    = +.     X      X X     ".
The combination from ACTIVATE/DEACTIVE the Checkboxes are updated in this field. I only want to know when a Charac is Quantitative Characteristic or Qualitative Characteristic but i couldn't read the correct values from this field.
Any suggest???
Regards,
Carlos Lerzundy

Dear Sir,
Only quantitative
XX    =   X
Only Qualitative
=   X
Quantitative with lower limit
XX  X =   X
Quantitative with upper limit
XX X  =   X
Quantitative with check value
XX   X=   X
Quantitative with upper & lower limit
XX XX =   X
Quantitative with Upper & check value
XX X X=   X
Quantitative with lower & check value
XX  XX=   X
Quantitative with lower/Upper/Check value
XX XXX=   X
Quantitative with only sampling procedure
XX    =   X    X
Quantitative with uppper/lower/check with sampling procedure
XX XXX=   X    X
Qualitative with only charac. attribute
X   =   X
Qualitative with only sampling
=   X    X
Qualitative with sampling & charac. attribute
X   =   X    X
this might be helpful to you..!!!
A bit late reply but it is said "Der se aaye par durasat aaye".
Rgds,
Nirav Parekh
SAP PP QM ABAP Consultant

Similar Messages

  • QP01 Inspection Plans

    Hi,
    I am trying to upload inspection plan master data in QP01 tcode.
    I was given a program in BDC which does the same. but the problem with this program is that....its not updating inspection characteristics after 13th record. line is not getting incremented. Below is my code .plz help
    page_count is initialized to zero.
    IF WRK-NUMB_LOOP > 1.
            PERFORM F_DYNPRO USING:
                                 ' '     TRQPAS_SEL_FLG  ' '.
         ENDIF.
    (This below part is branced out when 13 records are processed....otherwise it skips this and does the normal process)
         IF WRK-NUMB_LOOP > 13.
             PAGE_COUNT = INCR + ( WRK-NUMB_LOOP * 10 ).              
             INCR = PAGE_COUNT.                                        
            MOVE 2 TO WRK-NUMB_LOOP.
            PERFORM F_DYNPRO USING:
                                 'X'    'SAPLQPAA'    '0150',
                                  ' '    'RQPAS-AB_MKNR' INCR,
                                 'X'    'SAPLQPAA'    '0150'.
         ENDIF.
         TRQPAS_SEL_FLG+14(2) = WRK-NUMB_LOOP.
         TPLMKB_VERWMERKM+16(2) = WRK-NUMB_LOOP.
         TRQPAS_QUANTITAT+16(2) = WRK-NUMB_LOOP.
         TRQPAS_QUALITAT+15(2) = WRK-NUMB_LOOP.
         PERFORM F_DYNPRO USING:
                 ' '     TRQPAS_SEL_FLG  'X',
                 ' '    TPLMKB_VERWMERKM   INTQPMK-MKMNR.
    (few more performs are here)(when branced out for 13 records...its not performing the below dynpro performs..)
    IF PAGE_COUNT > 0.
            SUBTRACT 1 FROM WRK-NUMB_LOOP.            "TLDD
            TRQPAS_SEL_FLG+14(2) = WRK-NUMB_LOOP.
         ENDIF.
         CLEAR PAGE_COUNT.  
    wrk-numb_loop increments after one record is completely processed.
    After getting to 13th line my program is not reading the perform dynpro.....code ...
    any help is appreciated.

    There is no such direct mapping table, cross-table or Function module that describes how the Qualitative/Quantative fields are populated.
    SAP follows certain mapping to populate the values for these fields this can be cheked in SCN for Qualitative and Quantitative control indicators mapping.
    Secondly to update these indicators in Inspection plan load, you can use the STEUERKZ field value from QPMK table.
    This field is concatenation of the 28 control indicators (QMKST structure for Quali/Quantitative fields).
    So while uploading the data for Inspection plan, Inspection chracteristics are updated in system first where STEUERKZ can be updated.
    Vice versa to know what each indicator value signifies in
    the field QPMK-STEUERKZ, we can use the function module QSS0_QMKST_RQMST.
    Regards,
    Nidhi

  • Inspection characteristics

    hi all,
    i want to identify quality and quantity index for transaction ia03 (equipment task)
    i want to know where its stored in which field and table,
    STEUERKZ its field for control indicator (Cntrl Indicator String for Insp. Char./Master Insp. Char.) can any one brief me about this/ how can we identify
    indicators for quality and quantity)
    regards
    siva

    Hi, see below code...hope it helps
    READ TABLE i_qpmk WITH KEY zaehler = t_insp-qpmk_werks                               
                                       mkmnr   = t_insp-verwmerkm.                               
            IF sy-subrc = 0.                                                                               
    DATA: p_steuerkz   TYPE qpmk-steuerkz.                                             
              CLEAR p_steuerkz.                                                                               
    p_steuerkz = i_qpmk-steuerkz.                                                                               
    insp_char-quantitative_ind = p_steuerkz+0(1).                                                                               
    IF p_steuerkz+0(1) = 'X'.                                                                               
    insp_char-cha_master_import_modus
    = 'N'.                                                                  
              ELSE.                                                                               
    insp_char-cha_master_import_modus = 'C'.                                         
              ENDIF.                                                                               
    ENDIF.

  • INFOSET QUERY: Set condition for output display

    Dear Experts,
    I have created a infoset query for display of Material inspection Characteristics using tables QPMK, QPMZ & QPMT.
    now the user wants to display data only of those transaction no.'s starting with 'MC' or 'EQP' or 'WE' so on & so forth.
    I do not know how to incorporate the same in the Infoset. I have tried putting the codes in DATA / START-OF-SELECTION / RECORD PROCESSING etc... but no use.
    There is another option of filtering the transaction no,'s in Layout, but user does not want the same.
    so kindly guide me.
    Thanks.
    Regards,
    Jitesh

    Hi Jitesh,
    Please follow the below stepas . (here pseudo code)
    In Data Section
    DATA: str1 TYPE string,
               str2 TYPE string,
               str3 TYPE string.
    str1 = 'MC*'.
    str2 = 'EQP*'.
    str3 = 'WE*'.
    If you have more strings to compare ..declare those like that.
    In 'Record processing Event' you need to use CHECK statement with CP operatoar of String
    CHECK table_name-transaction_field CP str1 OR  table_name-transaction_field CP str2 OR table_name-transaction_field CP str3.
    CHECK SY-SUBRC EQ 0.
    Genrtae the Infoset "Important step
    Go to SQ01(in a new session) , and see if your getting required result.
    Regards,
    Dinesh
    Edited by: Dinesh Tiwari on Oct 1, 2009 7:17 AM
    Edited by: Dinesh Tiwari on Oct 1, 2009 7:18 AM
    Edited by: Dinesh Tiwari on Oct 1, 2009 8:07 AM

  • Inspection Plan & MIC status.

    Dear SAP,
    We have a requirement that QC will creat the MIC & Inspection Plan in status created, and QA will review and change the status from Created to Release.So where or in which object level i can put control so that QC not able to select the Status 4 for inspection plan, and Release for MIC.
    Regards,
    Asif.

    Dear Craig,
    I have created a new roll will basis help.and attached the below condition in the object you can refer dow.But then to user able to create MIC & Inspection plan in release mode.Please explain what would be the issue.
    MIC Status Table & Field Name (Object Name-Q_STA_QPMK,Table-QPMK, Field-LOEKZ)
    Inspection Plan Status Table & Field Name (Object Name-Q_ROUT,Table-PLKPO, Field-VERWE)
    QSTATMERK Master Inspection Characteristic Status 1
    STATU  Status  1
    Regards,
    Asif

  • Parameters to collective serch help

    Hi,
    Noe i created a collective serch help , using  an elementry serch help with two fields from table QPMK
    QPMK-VERSION and
    QPMK-MKMNR
    In elementry serch help
    MKMNR is used as parameter in my module pool screen one field is QPMK-VERSION, I want to select the values in to this serch help based on the value of field QPMK-VERSION
    Regards
    Nausal

    Not sure what you're asking, or why you need a collective search help.  Sounds like you had what you need with the elementary.
    But, for a really good how-to, look at how SAP constructs collective search helps, like DEBI, or ASH_VMVA or others.

  • IDOC QPMK01

    Hi,
    Has anyone moved the contents of table QPMK from Acceptance to Production through transaction QL21 using the IDOC QPMK0. I have done the partner profile setting and the port setting in WE20 and WE21 but still I am not able to create the entries in the Production system.
    Have someone worked on the same already?

    Hi,
    I have created the logical system and assigned it on the target system field. I am able to create the IDOC and the IDOC status is 03 (Data passed to Port OK) but in the target system both the tables QPMK and QPMT are not getting updated.
    Thanks & Regards,
    Bhuvaneswari

  • Table Fields of Product Analysis

    Hi All,
    I'm working on Product Analysis report for Inspection Lot.
    Unable to find the tables and fields for inspection parameters:
    1.Valid till date field
    2.weight
    3.FFA
    4.BCAR
    5.DOBI
    Thank You,

    Hi Sridhar,
    Quality Management Table Codes
    Master Data
    QMAT Inspection type - material parameters
    QMHU QM Link Between Inspection Lot and Handling Unit Item
    QMTB Inspection method master record
    QMTT Inspection Method Texts
    QPAC Inspection catalog codes for selected sets
    QPAM Inspection catalog selected sets
    QPMK Inspection characteristic master
    QPMT Master Inspection Characteristics Texts
    QPMZ Assignment table - insp. methods/master insp. characteristic
    TQ01D Authorization groups for QM master data
    TQ01E Text authorization groups for QM master data
    TQ21 Assignment of screens to screen groups
    TQ25 QM:screen sequence for master and inspection characteristics
    Catalogue
    QPCD Inspection catalog codes
    QPCT Code texts
    QPGR Inspection catalog code groups
    QPGT Code group texts
    TQ07 Follow-Up Action for Usage Decision of Inspection Lot
    TQ07A QM: Function Modules for Follow-Up Action
    TQ07T Language-dependent texts for Table TQ07
    TQ15 Inspection catalog type index
    TQ15T Language-dependent texts for table TQ15
    TQ17 Defect classes
    TQ17T Language-dependent texts for table TQ17
    Sample Determination
    QDEB Allowed. Relationships: Sampling Procedures/Dynamic Mod. Rules
    QDEBT Allowed combinations of procedures/dynamic mod. rules: texts
    QDPA Sampling scheme-instructions
    QDPK Sampling scheme header
    QDPKT Sampling scheme: texts
    QDPP Sampling scheme item
    QDQL Quality level
    Hope this list will help you.
    cheers
    Suvi

  • What is table name

    Hi,
    What is table name in which we have locking information of the provider.
    The column in the table are as follows.
    ID | Name | Type | Version | Portal DB Provider | Created Date | Created by | Status | Locked By | Locked On |
    I want the name of this table.

    Hi
    It is stored in <b>QAMR</b> table not in QALS
    Characteristic Number field is
    <b>MERKNR</b>
    Characteristic Results (values) are stored in following fields
    MAXWERT
    MEDIANWERT
    MINWERT
    <b>MITTELWERT</b>
    VARIANZ
    MOMENT3
    MOMENT4
    ANTEILO
    ANTEILU
    See the other related tables for the Characteristic values are:
    QAMV,QASR,QPMK,QPMT,QPMZ
    <b>Reward points if useful</b>
    Regards
    Anji

  • Tables for Defect type and its description while defect recording for a MIC

    Dear Experts,
    Kindly suggest the tables name  in  system by which we can get Defect type and its description that we have used while  performing defect recording for a MIC in system at the time of result reording for an inspection lot.
    Thanks in advance for your inputs ...
    Best regards ,
    Nitishj

    hii,
    Check
    QPAC - Inspection catalog codes for selected sets
    QPAM - Inspection catalog selected sets
    QPMK-CODEQUAL- Defect code grp for rejection at MIC level
    Link above table field name with QAVE for UD code & QAMR for Results recording
    Edited by: Lokesh K on Sep 29, 2010 10:43 AM
    Edited by: Lokesh K on Sep 29, 2010 10:45 AM

  • QM Tables

    Hi,
    In QM i want to check the material whether its a quantitative or Qualitative.
    I used qpmk table
    i passed mat insp characteriastic(MKMNR) = 'CHL01', How i can get wether its a QA or QL?
    And one more issue is in QA32 after click on isp result TAB, the specification text will be generating, could u tell me which table i can get this text also...
    Rgs,
    dhanush.

    Hi,
    I checked all the tables, i don't know which table they are maintaining quantitaive or qualitative..plz guide me.
    Rgs,
    dhanush

  • QM Tables and T codes

    can anybody tell hw many QM Tables and T codes are ther in total approx.
    and if possible which r imp. one?atleast tables.
    thnx

    Dear Sandip,
    <b>Important QM Tables</b> 
    Area Table Description 
    Master Data QMAT Inspection type - material parameters 
    Master Data QMHU QM Link Between Inspection Lot and Handling Unit Item 
    Master Data QMTB Inspection method master record 
    Master Data QMTT Inspection Method Texts 
    Master Data QPAC Inspection catalog codes for selected sets 
    Master Data QPAM Inspection catalog selected sets 
    Master Data QPMK Inspection characteristic master 
    Master Data QPMT Master Inspection Characteristics Texts 
    Master Data QPMZ Assignment table - insp. methods/master insp. characteristic 
    Master Data TQ01D Authorization groups for QM master data 
    Master Data TQ01E Text authorization groups for QM master data 
    Master Data TQ21 Assignment of screens to screen groups 
    Master Data TQ25 QM:screen sequence for master and inspection characteristics 
    QM Master Data 
    Catalog QPCD Inspection catalog codes 
    Catalog QPCT Code texts 
    Catalog QPGR Inspection catalog code groups 
    Catalog QPGT Code group texts 
    Catalog TQ07 Follow-Up Action for Usage Decision of Inspection Lot 
    Catalog TQ07A QM: Function Modules for Follow-Up Action 
    Catalog TQ07T Language-dependent texts for Table TQ07 
    Catalog TQ15 Inspection catalog type index 
    Catalog TQ15T Language-dependent texts for table TQ15 
    Catalog TQ17 Defect classes 
    Catalog TQ17T Language-dependent texts for table TQ17 
    Catalog 
    Sample Determination QDEB Allwd. Relationships: Sampling Procedures/Dynamic Mod. Rules 
    Sample Determination QDEBT Allowed combinations of procedures/dynamic mod. rules: texts 
    Sample Determination QDPA Sampling scheme-instructions 
    Sample Determination QDPK Sampling scheme header 
    Sample Determination QDPKT Sampling scheme: texts 
    Sample Determination QDPP Sampling scheme item 
    Sample Determination QDQL Quality level 
    Sample Determination 
    Inspection Char TQ17A Weighting of Char 
    Inspection Char TQ11 Inspection Qualification 
    Inspection Char TQ29 Tolerance Keys 
    Inspection Char T006 Unit of measurement 
    Inspection Char 
    Dynamic Modification QDBM Valuation mode 
    Dynamic Modification QDBMT Valuation Mode: Texts 
    Dynamic Modification QDDR Dynamic modification rule (header) 
    Dynamic Modification QDDRT Dynamic modification rule: texts 
    Dynamic Modification QDEP Allowed inspection severities 
    Dynamic Modification QDEPT Allowed Inspection Severities: Texts 
    Dynamic Modification QDFB Function modules for the individual procedure categories 
    Dynamic Modification QDFBT Function Modules for Procedure: Texts 
    Dynamic Modification QDFM Function modules for valuation mode 
    Dynamic Modification QDFMT Function Modules for Valuation Mode: Texts 
    Dynamic Modification QDPS Inspection stages for a dynamic modification rule
    Dynamic Modification QDPST Inspection Stages: Texts 
    Dynamic Modification QDSA Sampling type 
    Dynamic Modification QDSAT Sampling Type: Texts 
    Dynamic Modification QDSV Sampling procedure 
    Dynamic Modification QDSVT Sampling Procedure: Texts 
    Dynamic Modification TQ39B QM : Activates reference for dyn. modification level 
    Dynamic Modification 
    Graphics & SPC QASH Quality control chart 
    Graphics & SPC QAST Control chart track 
    Graphics & SPC QPSH Control chart types 
    Graphics & SPC QPSHT Texts for control chart types 
    Graphics & SPC QPSP SPC criterion 
    Graphics & SPC QPSPT Texts for SPC criteria 
    Graphics & SPC QPST Control chart track 
    Graphics & SPC QPSTT Texts for control chart tracks 
    Graphics & SPC 
    Specifications QMSP QM: material specification 
    Specifications 
    Inspection Plan PLKO Inspection plan Header 
    Inspection Plan MAPL Material Assignement 
    Inspection Plan PLPO Operation Details 
    Inspection Plan PLMK Inspection plan characteristics 
    Inspection Plan PLMW MAPL-Dependent Charac. Specifications (Inspection Plan) 
    Inspection Plan TQ03 QSS: Control for Screen Texts/TABLE NOT USED (Rel. 4.6) 
    Inspection Plan TQ29A Dependency tolerance key - nominal measurement 
    Inspection Plan TQ72 Type of share calculation 
    Inspection Plan TQ72T Texts for type of share calculation 
    Inspection Plan TQ75 QM formula parameters 
    Inspection Plan TQ75F Field names for QM formulas 
    Inspection Plan TQ75K Short text for Table TQ75F 
    Inspection Plan TQ75T Description of formula parameters 
    Inspection Plan 
    Qm in procurement QINF QM-info record for material and vendor 
    Qm in procurement TQ02 QM system definition 
    Qm in procurement TQ02A QM system assignment and QM system requirements 
    Qm in procurement TQ02B QM system 
    Qm in procurement TQ02T QM system description 
    Qm in procurement TQ02U Description QM system 
    Qm in procurement TQ04A Functions that can be blocked 
    Qm in procurement TQ04S QM block functions : texts 
    Qm in procurement TQ05 QM certificate categories for procurement 
    Qm in procurement TQ05T QM: text table for certificate types 
    Qm in procurement TQ08 Control of QM in procurement 
    Qm in procurement TQ08T QM: text for QM procurement keys 
    Qm in procurement TQ09 QM: agreement of QM document types 
    Qm in procurement TQ09T QM: agreement of QM document types 
    Qm in procurement TQ32A Inspection type to status assignment from status profile 
    Qm in procurement 
    QM in SD QVDM QM Info Record - QM Control in SD 
    QM in SD TQ32B Find insp.type for quality insp. for delivery note 
    QM in SD 
    Inspectio lot QALS Inspection lot record 
    Inspectio lot QALT Partial lot 
    Inspectio lot T156Q Movement Type: Material-Independent Control 
    Inspectio lot TQ30 Inspection types 
    Inspectio lot TQ30T Texts for inspection types 
    Inspectio lot TQ32 Assignment of inspection type to origin 
    Inspectio lot TQ32C Lot creation allowed values for the origin 
    Inspectio lot TQ32C _T Texts for lot creation indicator 
    Inspectio lot TQ33 Relevant fields for origin 
    Inspectio lot TQ34 Default values for inspection type 
    Inspectio lot 
    Inspection point QAPP Inspection point 
    Inspection point TQ79 Table with inspection point/user field combinations 
    Inspection point TQ79T Key words for inspeciton point user fields 
    Inspection point 
    Results Recording QAES Sample unit table 
    Results Recording QAKL Results table for value classes 
    Results Recording QAMR Characteristic results during inspection processing 
    Results Recording QAMV Characteristic specifications for inspection processing 
    Results Recording QASE Results table for the sample unit 
    Results Recording QASR Sample results for inspection characteristics 
    Results Recording QASV Sample specifications for inspection processing 
    Results Recording TQ12 Ind. external numbering for test units in results recording 
    Results Recording TQ12T Texts for the ind. for ext. numbering of units to be insp. 
    Results Recording TQ70 Control table for results recording 
    Results Recording TQ70C Function codes for navigation from the char.overview screen 
    Results Recording TQ70E Screen-based processing tables 
    Results Recording TQ70F Navigation during results recording 
    Results Recording TQ70S Characteristic overview screen for results recording 
    Results Recording TQ73 Origin of results data 
    Results Recording TQ73T Texts for origin of results data 
    Results Recording TQ74 Recording configuration 
    Results Recording TQ74T Recording configuration 
    Results Recording TQ76 Processing status of inspection characteristics 
    Results Recording TQ76T Texts for the processing status of insp. characteristics 
    Results Recording TQ77 Attributes for the Inspection Characteristic 
    Results Recording TQ77T Text Tables for Attributes 
    Results Recording TQ78 Status-dependent processing table for insp. characteristics 
    Results Recording TQ78T Texts for the status-specific proc. table for insp. char. 
    Results Recording 
    Defects recording TQ84 Confirmation profile 
    Defects recording TQ84T Text table for confirmation profile 
    Defects recording TQ86 Report category for defects recording 
    Defects recording TQ86A Assignment report category for work center 
    Defects recording TQ86T Text table for report category 
    Defects recording V_T35 2B_F Generated table for view V_T352B_F 
    Defects recording 
    Usage decision QAMB QM: Link Between Inspection Lot and Material Document 
    Usage decision QAVE Inspection processing: Usage decision 
    Usage decision TQ06 Procedure for Calculating the Quality Score 
    Usage decision TQ06T Language-specific texts for Table TQ06 
    Usage decision TQ07M QM: Inventory postings with usage decision 
    Usage decision 
    Sample Mgmt QPRN Sample drawing of phys. samples 
    Sample Mgmt QPRS Master record for phys. samples 
    Sample Mgmt QPRVK Sample-drawing procedure 
    Sample Mgmt QPRVK T Header for sample drawing procedure texts 
    Sample Mgmt QPRVP Sample-drawing items 
    Sample Mgmt QPRVP T Items for sample drawing procedure texts 
    Sample Mgmt TQ40 Definition of sample types 
    Sample Mgmt TQ40T Text table for sample type 
    Sample Mgmt TQ41 Storage locations for physical samples 
    Sample Mgmt TQ41T Texts for storage locations 
    Sample Mgmt TQ42 Physical sample containers 
    Sample Mgmt TQ42T Texts for phys. sample containers 
    Sample Mgmt 
    QMIS S068 Vendor statistics 
    QMIS S069 Material statistics 
    QMIS S097 QM notifications: Matl anal. 
    QMIS S098 QM notification: Vendor anal. 
    QMIS S099 QM notifications: Cust. anal. 
    QMIS S100 Problems: Material analysis 
    QMIS S102 Problems: Vendor analysis 
    QMIS S103 Problems: Customer analysis 
    QMIS S104 Customer statistics 
    QMIS S161 Inspection results: General 
    QMIS S162 Quantitative insp. results 
    QMIS S163 Quant. Insp. Result: Vendor 
    QMIS S164 Quant. Insp. Result: Vendor 
    QMIS S165 Inspection result: gen. custs 
    QMIS S166 Insp. Results: Quant. Customer 
    QMIS TQ55 Assign inspection lot origin for update group 
    QMIS TQ56 Definition of quality score classes 
    QMIS TQ56T Text table for the definition of quality score classes 
    QMIS TQ57 Assignment of quality score key to info structure 
    QMIS 
    Quality Certificates QCPR QM quality certificates in procurement 
    Quality Certificates I000 Conditions for certificate profile 
    Quality Certificates KONDI Conditions: Data part for certificates 
    Quality Certificates QCVK Certificate profile header 
    Quality Certificates QCVM Certificate profile characteristic level 
    Quality Certificates QCVMT Certificate profile characteristic level: texts 
    Quality Certificates QCVV Certificate Profile: List of Preliminary Products 
    Quality Certificates TQ61 Result value origin for certificates 
    Quality Certificates TQ61T Origin of result values for certificates: texts 
    Quality Certificates TQ62 Output strategy for skip characteristics 
    Quality Certificates TQ62T Output strategy for skip characteristics: texts 
    Quality Certificates TQ63 Origin of insp. specs for certificates (function modules) 
    Quality Certificates TQ63T Origin of inspection specifications for certificates: texts 
    Quality Certificates TQ64 Origin of characteristic short text for certificates 
    Quality Certificates TQ64T Origin of characteristic short text for certificates: texts 
    Quality Certificates TQ65 Certificates: Combinations allowed for origins, specs/values 
    Quality Certificates TQ67 Certificate-Relevant Output Types 
    Quality Certificates 
    Quality Notification QMEL Notification header 
    Quality Notification QMFE Item 
    Quality Notification QMSM Task 
    Quality Notification QMMA Activities 
    Quality Notification T352C Catalog types for each catalog profile 
    Quality Notification TQ81 Notification Scenario 
    Quality Notification TQ81V Usage of parts 
    Quality Notification TQ81V_T Texts for usage of parts 
    Quality Notification TQ81_T Texts for Notification Scenarios 
    Quality Notification TQ82 Change of Notification Type 
    Quality Notification TQ83 Partner Functions for Codes 
    Quality Notification TQ85 Function table for follow-up functions 
    Quality Notification TQ85R Rules for Follow-Up Functions 
    Quality Notification TQ85_T Action box text table 
    Quality Notification TQ8CO Assignment of reference orders to notification type 
    Quality Notification 
    Other Objects MARA Material Number 
    Other Objects T001W Plant 
    Other Objects LFA1 Vendor 
    Other Objects KNA1 Customer 
    Other Objects AUFK Order Number 
    Other Objects SAFK Run Schedule Header Number 
    Other Objects MCH1 Batch Number 
    Other Objects MCHA Batch Record 
    Other Objects EKKO Purchasing Document Header 
    Other Objects EKPO Purchasing document Item 
    Other Objects EKET Delivery Schedule 
    Other Objects VBUK Delivery Header 
    Other Objects VBUP Delivery Item 
    Other Objects CSKS Cost Center 
    Other Objects EQUI Equipment Number
    <b>Transaction List:</b>
    Q000    Quality management
    QA00    Quality inspection
    QA01    Create Inspection Lot
    QA01A   Create Inspection Lot
    QA02    Change Inspection Lot
    QA02A   Change Inspection Lot
    QA03    Display inspection lot
    QA05    Job planning: Periodic inspection
    QA06    Job overview: Periodic inspection
    QA07    Trigger for recurring inspection
    QA07L   Deadline Monitoring Log
    QA08    Collective Processing of Insp. Setup
    QA09    No. range maintenance for insp.lots
    QA10    Trigger automatic usage decision
    QA10L   Log for Automatic Usage Decision
    QA11    Record usage decision
    QA12    Change usage decision with history
    QA13    Display usage decision
    QA14    Change UD without history
    QA16    Collective UD for accepted lots
    QA17    Job planning for auto usage decision
    QA18    Job overview for auto usage decision
    QA19    Automatic usage decision
    QA22    Change inspection point quantities
    QA23    Display insp.point quantities
    QA32    Change data for inspection lot
    QA32WP  QA32 -Call from Workplace/MiniApp
    QA33    Display data for inspection lot
    QA40    Auto. Usage Decision for Production
    QA40L   Log for Automatic Usage Decision
    QA41    Scheduling UD for Production Lots
    QA42    Job planning: UD prod. insp.lots
    QA51    Scheduling Source Inspections
    QA52    Source inspections: Job overview
    QAC1    Change insp. lot actual quantity
    QAC2    Transfer stock to insp. lot
    QAC3    Reset sample
    QAER    Display archive objects
    QAS1    Download Insp. Specs. (Obsolete)
    QAS2    Download Basic Data (Obsolete)
    QAS3    Upload Results (Obsolete)
    QAS4    Upload UD (Obsolete)
    QC01    Create certificate profile
    QC02    Change certificate profile
    QC03    Display certificate profile
    QC06    Immediate delete of cert. profiles
    QC11    Create cert. profile assignment
    QC12    Change cert. profile assignment
    QC13    Display cert. profile assignment
    QC14    Create cert.prof.assign.w/copy model
    QC15    Create cert. profile assignment
    QC16    Change cert. profile assignment
    QC17    Display cert. profile assignment
    QC18    Create cert.prof.assign.w/copy model
    QC20    Certificates for Deliveries
    QC21    Quality certificate for the insp.lot
    QC22    Quality Certificate for Batch
    QC31    Archive display: Delivery item
    QC32    Archive display: Inspection lot
    QC40    Internet Certificate for Delivery
    QC40A   Internet Certificate for Delivery
    QC42    Batch certificate on WWW
    QC51    Create certificate in procurement
    QC52    Change certificate in procurement
    QC53    Display certificate in procurement
    QC55    Worklist: Certificates - Procurement
    QCC0    QM: Direct Access to IMG
    QCC1    Direct Access to IMG: Notification
    QCC2    IMG Direct Access: QM Q-Notification
    QCC3    IMG Direct Access: QM Q-Inspection
    QCC4    IMG Direct Access: QM Q-Planning
    QCC5    IMG Direct Selection: QM Bus. Add-In
    QCC_STABI       Copy Stability Study Customizing
    QCC_STABI_NK    Copy Stability Study Number Ranges
    QCCC    QM standard settings complete
    QCCF    QM standard forms
    QCCK    QM standard settings: Catalogs
    QCCM    QM std. settings: Qual. notifs.
    QCCN    QM standard number ranges
    QCCP    QM std. settings: Quality planning
    QCCS    QM sampling schemes
    QCCT    QM standard texts
    QCCU    QM standard settings: Environment
    QCCW    QM std. settings: Quality inspection
    QCCY    Transport QM tolerance key
    QCCZ    QM std. settings: Qual. certificates
    QCE2    Edit Communication Support
    QCE3    Display Communication Support
    QCYF    QM standard forms (general)
    QCYT    QM standard texts (general)
    QD21    Mark completed notifications
    QD22    Archiving Notifications: Archive
    QD24    Archiving Notifications: Delete
    QD25    Archiving Notifications: Admin.
    QD33    Delete quality level
    QD34    Delete quality level planning
    QD35    Delete job overview for Q-levels
    QDA1    Edit sampling type
    QDA3    Display sampling type
    QDB1    Maintain allowed relationships
    QDB3    Display allowed relationships
    QDH1    Q-level evaluation: Change data
    QDH2    Q-level evaluation: Display data
    QDL1    Create quality level
    QDL2    Change quality level
    QDL3    Display quality level
    QDM1    Edit valuation mode
    QDM3    Display valuation mode
    QDP1    Create sampling scheme
    QDP2    Change sampling scheme
    QDP3    Display sampling scheme
    QDR1    Create dynamic modification rule
    QDR2    Change dynamic modification rule
    QDR3    Display dynamic modification rule
    QDR6    Disp. where-used list-dyn. mod. rule
    QDR7    Replace dynamic mod. rule used
    QDV1    Create sampling procedure
    QDV2    Change sampling procedure
    QDV3    Display sampling procedure
    QDV6    Uses: Sampling procedures
    QDV7    Replace sampling procedure used
    QE00    Quality Planning
    QE01    Record characteristic results
    QE02    Change characteristic results
    QE03    Display characteristic results
    QE04    Record sample results
    QE05    Change sample results
    QE06    Display sample results
    QE09    Indiv.display of charac.result
    QE09WP  Call QE09 from Workplace
    QE11    Record results for inspection point
    QE12    Change results for inspection point
    QE13    Display results for inspection point
    QE14    Record results for delivery note
    QE15    Change results for delivery note
    QE16    Display results for delivery note
    QE17    Record results for equipment
    QE18    Change results for equipment
    QE19    Display results for equipment
    QE20    Record results for funct. location
    QE21    Change results for funct. location
    QE22    Display results for funct. location
    QE23    Record results for phys. sample
    QE24    Change results for phys. sample
    QE25    Display results for phys. sample
    QE29    No. Range Maint.: Conf. No. for Char
    QE51    Results recording worklist
    QE51N   Results Recording Worklist
    QE52    Worklist: Results for phys. sample
    QE53    Worklist: Record results for equip.
    QE54    Worklist: Results for funct. loctns
    QE71    Tabular res. recording for insp. pts
    QE72    Tabular Results Rec. for Insp. Lots
    QE73    Tabular res. recording for characs.
    QEH1    Worklist for Mobile Results Rec.
    QEI1    Displaying QM Interfaces Appl. Log
    QEI2    Deleting QM Interfaces Appl. Log
    QEW01   Results Recording on Web
    QEW01V  Variant Maint.: Recording on Web
    QF01    Record defect data
    QF02    Change defect data
    QF03    Display defect data
    QF11    Record defects for inspection lot
    QF21    Record defects for operation
    QF31    Record defects for characteristic
    QG09    Maint. num. range Q control charts
    QGA1    Display quality score time line
    QGA2    Display inspection results
    QGA3    Print inspection results
    QGC1    Qual. control charts for insp. lots
    QGC2    Control charts for task list charac.
    QGC3    Control charts for master insp. char
    QGD1    Test Equipment Usage List
    QGD2    Test Equipment Tracking
    QGP1    Results history for task list charac
    QGP2    Results History for Task List Charac
    QI01    Create quality info. - purchasing
    QI02    Change qual.information - purchasing
    QI03    Display quality info. - purchasing
    QI04    Job planning for QM procurement keys
    QI05    Mass maintenance QM procurement keys
    QI06    QM Releases: Mass maintenance
    QI07    Incoming insp. and open pur. orders
    QI08    Job overview of QM procurement keys
    QISR    Internal Service Request
    QISR1   Internal Service Request - Forms
    QISR_PCR60      vc_scenario for Message type 60(PCR)
    QISR_SM29       ISR Customizing: Table Transfer
    QISR_SR12_START Suggestion System
    QISRSCENARIO    Customizing Szenario
    QISRTRANSPORT   ISR Customizing Transport
    QISRW   Internal Service Request on the Web
    QK01    Assign QM order to material
    QK02    Display assigned QM orders
    QK03    Maintain specs. for order type
    QK04    Create QM order
    QK05    Confirmed activities for insp. lot
    QL11    Mat: Distribute Inspection Setup-ALE
    QL21    Master Inspection Characs (ALE)
    QL31    Distribute Inspection Methods (ALE)
    QL41    Distribute Code Groups (ALE)
    QM00    Quality Notifications
    QM01    Create quality notification
    QM02    Change quality notification
    QM03    Display quality notification
    QM10    Change list of quality notifications
    QM10WP  QM10 - Call from Workplace/MiniApp
    QM11    Display List of Qual. Notifications
    QM12    Change list of tasks
    QM13    Display list of tasks
    QM13WP  QM13 - Call from  Workplace/MiniApp
    QM14    Change list of items
    QM15    Display list of items
    QM16    Change activity list
    QM17    Display activity list
    QM19    List of Q Notifications, Multi-Level
    QM50    Time line display Q notifications
    QMW1    Create quality notification (WWW)
    QP01    Create
    QP02    Change
    QP03    Display
    QP05    Print inspection plan
    QP06    List: Missing/unusable insp. plans
    QP07    List: Missing/Unusable GR InspPlans
    QP08    Print task lists for material
    QP11    Create reference operation set
    QP12    Change reference operation set
    QP13    Display reference operation set
    QP48    Number Ranges for Physical Samples
    QP49    Number range for phys. samp. drawing
    QP60    Time-related development of plans
    QP61    Display change documents insp.plan
    QP62    Change documents ref.operation sets
    QPIQS8  QM MiniApp Selection Variant
    QPIQS9  QM MiniApp Selection Variant
    QPNQ    Number ranges for inspection plans
    QPQA32  QM MiniApp Selection Variant
    QPQGC1  QM MiniApp Selection Variant
    QPQM10  QM MiniApp Selection Variant
    QPQM13  QM MiniApp Selection Variant
    QPR1    Create physical sample
    QPR2    Change physical sample
    QPR3    Display physical sample
    QPR4    Confirm physical sample drawing
    QPR5    Manual inspection lots for physSamps
    QPR6    Create new phys.-samp. drawing w.ref
    QPR7    Storage Data Maintenance
    QPV2    Maintain sample drawing procedure
    QPV3    Display sample drawing procedure
    QS21    Create master insp. characteristic
    QS22    Create master insp. charac. version
    QS23    Change master insp. charac. version
    QS24    Display master insp. charac. version
    QS25    Delete master insp. charac. version
    QS26    Display characteristic use
    QS27    Replace master insp. characteristic
    QS28    Display insp. charac. list
    QS29    Maintain characteristic number range
    QS31    Create inspection method
    QS32    Create inspection method version
    QS33    Change inspection method version
    QS34    Display inspection method version
    QS35    Delete inspection method version
    QS36    Display inspection method use
    QS37    Central replacement of methods
    QS38    Display inspection method list
    QS39    Maintain method number range
    QS41    Maintain catalog
    QS42    Display catalog
    QS43    Maintain catalog
    QS44    Maintain catalog
    QS45    Display catalog
    QS46    Display code group use
    QS47    Central replacement of code groups
    QS48    Usage indicator - code groups
    QS49    Display code groups and codes
    QS4A    Display catalog
    QS51    Edit Selected Sets
    QS52    Display selected set index
    QS53    Maintain individual selected set
    QS54    Maintain selected set
    QS55    Display selected set
    QS58    Usage indicator - selected sets
    QS59    Display selected sets
    QS61    Maintain material specification
    QS62    Display material specification
    QS63    Maintain material spec: Planning
    QS64    Display material spec: For key date
    QS65    Activate material specification
    QS66    Plan activation of material spec.
    QS67    Job overview: Activate mat. spec.
    QSR5    Archive inspection plans
    QSR6    Delete routings
    QST01   Create Stability Study
    QST03   Display Stability History
    QST04   Display Inspection Plans
    QST05   Graphical Scheduling Overview
    QST06   Scheduling Overview (StabilityStudy)
    QST07   Change Testing Schedule Items
    QST08   Display Testing Schedule Items
    QSUB    Define subsystems
    QT00    Test Equipment Management
    QT01    Test equipment management
    QTSA    Product Allocations: Send Quantities
    QTSP    Product Allocations:Send Customizing
    QUERY_BP_FSBPBILDER     BP: Screen Customizing for Query
    QV01    Create quality assurance agreement
    QV02    Change quality assurance agreement
    QV03    Display quality assurance agreement
    QV04    Find Quality Assurance Agreement
    QV11    Create technical delivery terms
    QV12    Change technical delivery terms
    QV13    Display technical delivery terms
    QV14    Search technical terms of delivery
    QV21    Create QA agreement (DocType Q03)
    QV22    Change Q-agreement (doc. type Q03)
    QV23    Display Q-agreement (doc. type Q03)
    QV24    Find Q-agreement (doc. type Q03)
    QV31    Create Q-spec. (doc.type Q04)
    QV32    Change Q-specification (docType Q04)
    QV33    Displ. Q-specification (docType Q04)
    QV34    Find Q-specification (doc. type Q04)
    QV51    Create control for QM in SD
    QV52    Change control for QM in SD
    QV53    Display control for QM in SD
    QVM1    Inspection lots without completion
    QVM2    Inspection lots with open quantities
    QVM3    Lots without usage decision
    QZ00    Quality Certificates
    Hope this will help.
    Regards,
    Naveen.

  • Require Table

    Dear Guruji
    We want to devlop one report in BIW.for that we want table detail for following matter.we are using Process order scenario
    1.  Total BOM for FERT or HALB up to End level
    2. Total work center use for that master recipe with time.
    3 MIC for all the material which is use in BOM
    Thanks
    Pankaj

    Hi,
    The required tables;
    Work Center
    CRHD - Workcenter Header Data
    CRCA - Workcenter Capacity Allocation
    CRCO - Workcenter Cost Center Assignment
    CRHH - Hierarchy Header
    CRHS - Hierarchy Structure
    CRTX - Workcenter Text
    KAKO - Capacity Header
    KAZY - Intervals of Capacity
    Bill of Material
    STPO - BOM Item Details
    STPU - BOM Sub Items (designators)
    STKO - BOM Header Details
    MAST - BOM Group to Material
    STZU - BOM History Records
    STAS - BOM Item Selection
    STPF - BOM Explosion Structure
    MIC
    QPMT - Master Inspection Characteristics Texts 
    QPMK  - Inspection characteristic master
    Hope it helps !!
    Thanks !!
    SISL

  • MB5B Report table for Open and Closing stock on date wise

    Hi Frds,
    I am trying get values of Open and Closing stock on date wise form the Table MARD and MBEW -Material Valuation but it does not match with MB5B reports,
    Could anyone suggest correct table to fetch the values Open and Closing stock on date wise for MB5B reports.
    Thanks
    Mohan M

    Hi,
    Please check the below links...
    Query for Opening And  Closing Stock
    Inventory Opening and Closing Stock
    open stock and closing stock
    Kuber

  • Error while dropping a table

    Hi All,
    i got an error while dropping a table which is
    ORA-00600: internal error code, arguments: [kghstack_free1], [kntgmvm: collst], [], [], [], [], [], [], [], [], [], []
    i know learnt that -600 error is related to dba. now how to proceed.
    thanks and regards,
    sri ram.

    00600 errors should be raised as service request with Oracle as it implies some internal bug.
    You can search oracle support first to see if anyone has had the same class of 00600 error, and then if not (and therefore no patch) raise your issue with Oracle.
    http://support.oracle.com

Maybe you are looking for

  • How to transform a text variable in PLD to all CAPS?

    Dear Experts, I have a text variable in my PLD and I will like to change this text to all upper case? What is the function I can use to achieve this in PLD? Warmest Regards, Chinho

  • Policy files expiry for pgp encryption

    HI All i am using bouncycastle jars for encrypting data using PGP. for this to function we need to install the jce unrestricted security files given at the java downloads but when i download and use them then for one weeek they are working fine but a

  • BOEXIR2 report embedded in aspx page

    I currently have an aspx application that passes parameters dynamically to Crystal Reports that are located in the local file system using the viewer. I am able to set the database/logon info dynamically and everything works great. We now have a demo

  • Missing photos after migration from iPhoto to Photos

    Last week I upgraded my desktop MacPro from OS 10.9.latest to OS 10.10.3. When I first opened Photos, it did the migration from iPhotos without apparent problem. But I have noticed that many (hundreds at least) of the photos from my pre-migration iPh

  • Where do i find the windows drivers?

    hi i installed windows 7 and now i need to istall the drivers but how? in the bootCamp guide that i printed out it is written that there is an setup.exe on my OSX Install DVD. but there is no exe file on my snowleopard install DVD how do i get the dr