Routing Inspection Characterstics

Hi Pandits,
I am trying to create Routing with its 'Inspection CHaracterstics' (IC) by filling table  INSPCHARACTERISTIC. I am able to create Routing, but when I am specifying IC, it is not creating and giving me below error.
T ID                   NUM MESSAGE
E BAPI                 001
W CPCC_DT              009 The valid-from data has been set from today's date
E QP                   411 Enter a selected set
E CQCL                 103 Consistency check when creating characteristic 0010 was unsuccessful
A CQCL                 103 Consistency check when creating characteristic 0010 was unsuccessful
If someone encountered this problem and able to find the soln, please help me out.
Rgds
Vaibhav

Dear,
I have dearched out internet, done my investigation but if one error resolves other comes. Can someone help me out?
Regards

Similar Messages

  • Urgent:  making multiple inspection characterstics in QP01 bdc

    Hi,
    I had made a BDC on QP01 in which i am able to upload 1 line for the
    inspection characterstic of a single Operation .
    Now the problem is there are around 10 to 15 lines for the inspection characterstic of a single Operation and i am not able to do it through it my bdc. now anybody can provide me some knowledge about it as how it is to be done?
    plzz help me out as it is really urgent to me and help will be definately rewarded.

    Hi,
    I had made bdc on transaction CA02. Its similiar to your requirement in which there are multiple inspection characterstics for single operation. Through BDC its possible. Please go through the below code.
    LOOP AT i_route_file INTO wa_route_file.
        AT NEW plnnr.
          PERFORM : zf_prepare_bdcdata_prg   USING 'SAPLCPDI'  '1010',
                    zf_prepare_bdcdata_value USING 'BDC_OKCODE' '/00',
                    zf_prepare_bdcdata_value USING 'RC271-PLNNR'
                                                   wa_route_file-plnnr.
    *--Conversion of date to internal format.
          PERFORM zf_conv_date.
          PERFORM zf_prepare_bdcdata_value USING 'RC271-STTAG' v_date.
        ENDAT.
        lv_arbpl = wa_route_file-arbpl.
        lv_steus = wa_route_file-steus.
        lv_ltxa1 = wa_route_file-ltxa1.
    *--Operation data
        AT NEW vornr.
          v_inscounter = 1.
          PERFORM : zf_prepare_bdcdata_prg   USING 'SAPLCPDI' '1400',
                    zf_prepare_bdcdata_value USING 'BDC_OKCODE' '/00',
                    zf_prepare_bdcdata_value USING 'RC27X-ENTRY_ACT' '1'.
    *--Conversion of vornr to internal format
          PERFORM zf_conv_vornr.
          READ TABLE i_opno INTO wa_opno WITH KEY plnnr = wa_route_file-plnnr
                                                  vornr = wa_route_file-vornr.
          IF sy-subrc <> 0.
            DESCRIBE TABLE i_opno LINES v_lines.
            v_num = v_lines + 1.
          ELSE.
            v_num = sy-tabix.
          ENDIF.
          CLEAR v_fieldnm.
          CONCATENATE 'PLPOD-ARBPL(' v_num ')' INTO v_fieldnm.
          PERFORM : zf_prepare_bdcdata_value USING v_fieldnm lv_arbpl.
          CLEAR v_fieldnm.
          CONCATENATE 'PLPOD-STEUS(' v_num ')' INTO v_fieldnm.
          PERFORM : zf_prepare_bdcdata_value USING v_fieldnm lv_steus.
          CLEAR v_fieldnm.
          CONCATENATE 'PLPOD-LTXA1(' v_num ')' INTO v_fieldnm.
          PERFORM : zf_prepare_bdcdata_value USING v_fieldnm lv_ltxa1,
                    zf_prepare_bdcdata_prg   USING 'SAPLCPDI' '1400',
                    zf_prepare_bdcdata_value USING 'BDC_OKCODE' '=QMUE',
                    zf_prepare_bdcdata_value USING 'RC27X-ENTRY_ACT' '1'.
          CLEAR v_fieldnm.
          CONCATENATE 'RC27X-FLG_SEL(' v_num ')' INTO v_fieldnm.
          PERFORM: zf_prepare_bdcdata_value USING v_fieldnm 'X'.
        ENDAT.
    *--Inspection Characteristics
        PERFORM: zf_prepare_bdcdata_prg   USING 'SAPLQPAA' '0150',
                 zf_prepare_bdcdata_value USING 'BDC_OKCODE' '/00'.
        CLEAR v_fieldnm.
        CONCATENATE 'PLMKB-VERWMERKM(' v_inscounter ')' INTO v_fieldnm.
        PERFORM: zf_prepare_bdcdata_value USING v_fieldnm
                                                wa_route_file-verwmerkm.
        CLEAR v_fieldnm.
        CONCATENATE 'PLMKB-MKVERSION(' v_inscounter ')' INTO v_fieldnm.
        PERFORM: zf_prepare_bdcdata_value USING v_fieldnm
                                                wa_route_file-mkversion.
        CLEAR v_fieldnm.
        CONCATENATE 'PLMKB-PMETHODE(' v_inscounter ')' INTO v_fieldnm.
        PERFORM: zf_prepare_bdcdata_value USING v_fieldnm
                                                wa_route_file-pmethode.
        CLEAR v_fieldnm.
        CONCATENATE 'PLMKB-PMTVERSION(' v_inscounter ')' INTO v_fieldnm.
        PERFORM: zf_prepare_bdcdata_value USING v_fieldnm
                                                wa_route_file-pmtversion.
        CLEAR v_fieldnm.
        CONCATENATE 'PLMKB-STICHPRVER(' v_inscounter ')' INTO v_fieldnm.
        PERFORM: zf_prepare_bdcdata_value USING v_fieldnm
                                                wa_route_file-stichprver.
        CLEAR v_fieldnm.
        CONCATENATE 'QFLTP-SOLLWERT(' v_inscounter ')' INTO v_fieldnm.
        PERFORM: zf_prepare_bdcdata_value USING v_fieldnm
                                                wa_route_file-sollwert.
        CLEAR v_fieldnm.
        CONCATENATE 'QFLTP-TOLERANZUN(' v_inscounter ')' INTO v_fieldnm.
        PERFORM: zf_prepare_bdcdata_value USING v_fieldnm
                                                wa_route_file-toleranzun.
        CLEAR v_fieldnm.
        CONCATENATE 'QFLTP-TOLERANZOB(' v_inscounter ')' INTO v_fieldnm.
        PERFORM: zf_prepare_bdcdata_value USING v_fieldnm
                                                wa_route_file-toleranzob.
        CLEAR v_fieldnm.
        CONCATENATE 'PLMKB-DUMMY10(' v_inscounter ')' INTO v_fieldnm.
        PERFORM: zf_prepare_bdcdata_value USING v_fieldnm
                                                wa_route_file-dummy10.
        PERFORM: zf_prepare_bdcdata_prg   USING 'SAPLQPAA' '1501',
                 zf_prepare_bdcdata_value USING 'BDC_OKCODE' '=ENT1',
                 zf_prepare_bdcdata_value USING 'PLMKB-VERWMERKM'
                                                wa_route_file-verwmerkm,
                 zf_prepare_bdcdata_value USING 'PLMKB-QPMK_WERKS'
                                                wa_route_file-qpmk_werks,
                 zf_prepare_bdcdata_value USING 'PLMKB-MKVERSION'
                                                wa_route_file-mkversion,
                 zf_prepare_bdcdata_value USING 'PLMKB-PMETHODE'
                                                wa_route_file-pmethode,
                 zf_prepare_bdcdata_value USING 'PLMKB-QMTB_WERKS'
                                                wa_route_file-qmtb_werks,
                 zf_prepare_bdcdata_value USING 'PLMKB-PMTVERSION'
                                                wa_route_file-pmtversion.
        PERFORM: zf_prepare_bdcdata_prg   USING 'SAPLQPAA' '1502',
                 zf_prepare_bdcdata_value USING 'BDC_OKCODE' '=ENT1',
                 zf_prepare_bdcdata_value USING 'BDC_CURSOR' 'PLMKB-PMETHODE',
                 zf_prepare_bdcdata_value USING 'PLMKB-PMETHODE'
                                                wa_route_file-pmethode,
                 zf_prepare_bdcdata_value USING 'PLMKB-QMTB_WERKS'
                                                wa_route_file-qmtb_werks,
                 zf_prepare_bdcdata_value USING 'PLMKB-PMTVERSION'
                                                wa_route_file-pmtversion.
        PERFORM: zf_prepare_bdcdata_prg   USING 'SAPLQPAA' '1502',
                 zf_prepare_bdcdata_value USING 'BDC_OKCODE' '=ENT1',
                 zf_prepare_bdcdata_value USING 'BDC_CURSOR' 'PLMKB-PMETHODE',
                 zf_prepare_bdcdata_value USING 'PLMKB-PMETHODE'
                                                 wa_route_file-pmethode,
                 zf_prepare_bdcdata_value USING 'PLMKB-QMTB_WERKS'
                                                 wa_route_file-qmtb_werks,
                 zf_prepare_bdcdata_value USING 'PLMKB-PMTVERSION'
                                                 wa_route_file-pmtversion.
        PERFORM: zf_prepare_bdcdata_prg   USING 'SAPLQPAA' '0150',
                 zf_prepare_bdcdata_value USING 'BDC_OKCODE' '=QMD1',
                 zf_prepare_bdcdata_value USING 'RQPAS-ENTRY_ACT' '1'.
        CLEAR v_fieldnm.
        CONCATENATE 'RQPAS-SEL_FLG(' v_inscounter ')' INTO v_fieldnm.
        PERFORM: zf_prepare_bdcdata_value USING v_fieldnm 'X'.
        PERFORM: zf_prepare_bdcdata_prg   USING 'SAPLQPAA' '0160',
                 zf_prepare_bdcdata_value USING 'BDC_OKCODE' '=QMAM',
                 zf_prepare_bdcdata_value USING 'PLMKB-STICHPRVER'
                                                wa_route_file-stichprver.
        PERFORM: zf_prepare_bdcdata_prg   USING 'SAPLQPAA' '0160',
                 zf_prepare_bdcdata_value USING 'BDC_OKCODE' '/00',
                 zf_prepare_bdcdata_value USING 'BDC_CURSOR'
                                                'PLMKB-PROBENR',
                 zf_prepare_bdcdata_value USING 'PLMKB-PROBENR'
                                               wa_route_file-probenr,
                 zf_prepare_bdcdata_value USING 'PLMKB-PMETHODE'
                                               wa_route_file-pmethode,
                 zf_prepare_bdcdata_value USING 'PLMKB-QMTB_WERKS'
                                      wa_route_file-qmtb_werks,
                 zf_prepare_bdcdata_value USING 'PLMKB-PMTVERSION'
                                       wa_route_file-pmtversion.
        PERFORM: zf_prepare_bdcdata_prg   USING 'SAPLQPAA' '1502',
                 zf_prepare_bdcdata_value USING 'BDC_OKCODE' '=ENT1',
                 zf_prepare_bdcdata_value USING 'BDC_CURSOR' 'PLMKB-PMETHODE',
                 zf_prepare_bdcdata_value USING 'PLMKB-PMETHODE'
                                                 wa_route_file-pmethode,
                 zf_prepare_bdcdata_value USING 'PLMKB-QMTB_WERKS'
                                                 wa_route_file-qmtb_werks,
                 zf_prepare_bdcdata_value USING 'PLMKB-PMTVERSION'
                                                 wa_route_file-pmtversion.
        PERFORM: zf_prepare_bdcdata_prg   USING 'SAPLQPAA' '0160',
                 zf_prepare_bdcdata_value USING 'BDC_OKCODE' '=QMBU',
                 zf_prepare_bdcdata_value USING 'PLMKB-PROBENR'
                                                wa_route_file-probenr,
                 zf_prepare_bdcdata_value USING 'PLMKB-PMETHODE'
                                                wa_route_file-pmethode,
                 zf_prepare_bdcdata_value USING 'PLMKB-QMTB_WERKS'
                                                wa_route_file-qmtb_werks,
                 zf_prepare_bdcdata_value USING 'PLMKB-PMTVERSION'
                                                wa_route_file-pmtversion.
        PERFORM: zf_prepare_bdcdata_prg   USING 'SAPLQPAA' '1502',
               zf_prepare_bdcdata_value USING 'BDC_OKCODE' '=ENT1',
               zf_prepare_bdcdata_value USING 'BDC_CURSOR' 'PLMKB-PMETHODE',
               zf_prepare_bdcdata_value USING 'PLMKB-PMETHODE'
                                               wa_route_file-pmethode,
               zf_prepare_bdcdata_value USING 'PLMKB-QMTB_WERKS'
                                               wa_route_file-qmtb_werks,
               zf_prepare_bdcdata_value USING 'PLMKB-PMTVERSION'
                                               wa_route_file-pmtversion.
        v_inscounter = v_inscounter + 1.
        AT END OF plnnr.
    *--Call transaction CA02- Change Routing
          CALL TRANSACTION 'CA02' USING i_bdcdata
                                  MESSAGES INTO i_messtab
                                  MODE 'N'
                                  UPDATE 'S'.
          COMMIT WORK AND WAIT.
        ENDAT.
      ENDLOOP.
    Please ask if any queries....

  • MIC changes in routing/inspection plan

    Hi, we have created qualitative inspection characterisics (without characteristics attribute control indicator) with incomplete copy model type. This is already assigned in inspection plan and in routing. Now our users want to assign characteristics attribute.  We changed the MIC control indicators. this is not reflecting in the routing/inspection plan.
    Could anyone suggest the best way to update the inspection characteristics in inspection plan as well as in routing.

    Dear !!!!
    Please Follow this steps
    1.Check Inspection Setup What u have given
    2.Create a Quality Work center with control Key QM01
    3.Create Master Inspection Characteristic in QS21
    4.Create Quality Plan QP01 make sure your usage type 5 0r 6
    5.Assign inspection characteristics in master inspection whatever u have created in QS21 save
    6.Go to QA32 check with selection by material or by plant
    7.Then go to QE51n and run by selection condition by material or by plant Results recording starts
        Then click on the Inspection lot make the inspection and save it will prompt saying that results save under operation
    9.Then go to Usage decision QA32
    10.Move Material From Quality To Unrestricted.
    Thatu2019s all the Steps
    With Regards
    Pushpalas

  • Revision no of Routing/Inspection plan in Purchase order

    Hi MM friends,
    I have two requirements from client
    1. Is it possible to update the revision number of Routing/inspection plan or attaching any document in Purchase order to inform the vendor the relevant changes.
    2 Also the Routing changed revision number can be made as
    mandatory field in P.O?
    Regards,
    Anil

    It should pick latest revision level.Becuse PO get all data from material master.

  • What is the IDOC for Master inspection Characterstics Creation/edit/Cancel

    Hi
    i need IDOC for this.....
    what is the IDOC for
    1.Master inspection Characterstics Creation
    2.Master inspection Characterstics Edit
    3.Master inspection Characterstics Cancel
    plz give ans very urgent
    bye
    suresh

    Check these..
    in TCode: we30
    ->INSPECTIONPLAN_CREATE01
    ->MATQM01
    ->QPMK01
    Regards,
    Ramesh.

  • Material Inspection characterstics

    Hi all,
    I have created a new plant, business area and sales organization. I have done almost all configurations. Now I am doing a test run of MM. I have created a material and al necessary master data. I created an inspection plan for this material . while entering inspections characterstics in qp01, no characterstic is shown for my newly created plant 5500. Where I can create characterstics for this plant or assigned already created characterstics to new plant?
    Please respond.
    Regards,
    AI.

    I hav resolved myself. it can be done in tcode qs21.
    Regards,
    AI.

  • Difference between Characterstics and Master Inspection Characterstics??

    Could some please explain me the difference between characterstics and Master inspection Characterstics?
    How do you create a new master inspection characterstics?

    Classification and Characteristics are cross-application functions ( [SAP Help|http://help.sap.com/saphelp_erp60_sp/helpdata/en/dd/ae56614bb411d192f20000e829fbc6/frameset.htm] ) used in many areas of SAP such as:
    - Equipment
    - Functional location
    - Notification
    - Task lists
    - Materials
    - QM master inspection characteristics
    - Sales orders
    - Etc
    PeteA

  • Material routing inspection characteristics.

    Hi everybody,
    I just wanted to ask whether don't you somebody know some function or bapi, that allows to change the material routing inspection characteristics listed in CA02.
    Thanks a lot.
    Jan.

    Check it here Re: bdc problem ca02

  • Result Recording of Inspection Characterstics.

    Hi Gurus,
    Actually we have one scenario in QA in which for one material there are certain specification whose result we will come to know few days later after posting inspection lot in Unrestricted & also after doing UD.
    I want to know how to do result recording for that perticular specification after we already did the UD for that lot?
    Is it possible after UD?
    Is there any additional customization setting nedded?
    Thanks in advance.

    Hi,
    You can do this .
    Those MIC for which you want to take result after UD .In control indicator of MIC put long term inspection check box on .
    So that even after UD of inspection lot ,  result record for that MIC will remain open for you to take result.
    Regards
    SANIL
    Edited by: Sanil Vadke on Jun 29, 2010 8:53 AM

  • BAPI to update Routing operations

    Hi
    I want to update inspection characterstics in routing operations,
    can you plz suggest any BAPI to update.
    Regards,
    kranti

    Hi Dhirendra,
      I want to update Char.number,Material Insp characterstics,method and sampling Procedure.
    as u mentioned in that BAPI,    BAPI_QPMK_SAVEREPLICA,i have found,Material Insp characterstics,method these two parameters,
    so how can i uplopad Characterstic no and sampling procedure?
    Regards,
    Kranti

  • Inspection for second operation

    hi all
    i have maintain inspection orgin 03 & 04 for sfg material in material master also in routing i have assign control key having inspection check box on for the 03 line item (0010,0020,0030).
    my first operation shows perfect inspection lot after production order release. but when i go for the second operation it does not works and it show no inspection characterstics maintain for the operation, though i assign inspection characteristics to the operations.

    Dear.
    In mm02, choose qm view.
    Choose QM proc then click inspn setup tab.
    04 for final inspn (after prodn)
    03 for roh. & click active.
    2. QS21 create MIC
    3. In the routing choose first operation & choose inspn characteristics & choose eg.Legth & then sample as (eg) fixed sample. Go for second operation do the same tining.
    4) For final insp create quality plan in OP01.
    Then when you realse order then system will create one insp lot for inporocess in that you will get two operation and go ahead.
    Hope clear to you.
    Regards,
    R.Brahmankar

  • Procedure to Assign Inspection Plan and to Execute it

    Dear All,
    pls explain me the step by step procedure to ceate an inspection plan and assigning it to an manufactured item and also explain me how to clear the goods from QM after the production confirmation.
    Regards,
    Srini

    Hi muthu
    First include quality view in material master. There assign inspection type 04. Inspection during GR. Then activate this.
    Then in QA 32 assign inspection characterstics with UD code and set release to this.
    Once you do GR for production in MB 31 goods will be automatically posted to inspection stock.
    Then double click on that in MD 04 screen and do UD with good quantity and scrap qty with correct storage location.
    after savings this goods will be automatically posted to unrestricted stock.
    Hope this will clear
    Regards
    J . Saravan

  • BAPI/FM for forced Inspection completion

    Hello,
    I have a requirement to build a report for automating Mass UD of inspection lots. When users close the PO they are stuck if the ILs are open, hence the requirement. I have built the report for mass UD and used BAPI_INSPLOT_SETUSAGEDECISION with forced UD indicator set. The issue now is in case of long term inspection characterstics are open for the lot, it doesn't close the IL and status is set as LTIN but in other cases it sets the status to ICCO which automatically closes the lot on forced UD.
    Is there a BAPI or approach to force close the IL via the report?
    Edited by: bhatia.garima on Jan 12, 2011 11:30 AM

    Closing thread -- ref. BAPI/FM/Approach for force Inspection complete via program

  • Routing exist error in Material Deletion

    HI,
    At the time of archiving ,system shows the  following error message s.
             1. MARC : xxxxxx - routing exists
             2. MARC :xxxxxxx- Use in routing -inspection plan
    we have checked and found that  routing and inspection plan taask list for the problematic material but i dont know why system showing this error message .Kindly let me know how to resolve this issue.
    Thanks & regards,
    Renuga.A

    it  has only a deletion indicator - and it still exists , that is what SAP is complaining about. you have to archive the other objects first.

  • Difference between Routing & Rate Routing

    Hi All,
    can anyone tell me difference between Routing & Rate Routing? can we use routing for REM? if no, then what will be the effect?
    Thanks,
    Rinky

    Hi Rinky ,
                   Routing and rate routing are task list in broad manner .
    standard task list: Describes the worksteps necessary to produce a material or perform an activity without reference to an order.( that means they are created without reference to order )
    Essential objects of a task list are header, operations, material component allocations, production resources/tools and inspection characteristics.
    Together with specific dates and quantities, task list data forms an important part of the order.
    The following task list types exist in the R/3 System:
    routing
    reference operation set
    rate routing
    reference rate routing
    inspection plan
    maintenance task list
    standard network
    master recipe
    Routing is created with ca01 and rate routing by ca21 .
    Routing is used in discrete manufacuting and rate routing in repetitive .
    Rate routing generally has only one operation  and prod line instead of work centers and operations in routings .
    Both routings can be used for scheduling , cosing and capacity planning .
    Hope this was helpful answer !
    Neal
    Edited by: Neal Gibson on Jun 30, 2008 11:46 AM

Maybe you are looking for

  • How to embed multiple queries in one web template

    Hi, I've a requirement wherein I need to embed two queries in one web template. The first query displays order quantity from a particular customer and the second query displays other information for that customer. Most of my web templates i've contai

  • Trying PhoneGap in Dreamweaver CS5.5

    I have been trying out PhoneGap in Dreamweaver CS5.5. I've written up my experiences here: http://www.itwriting.com/blog/4261-hands-on-building-a-phonegap-app-with-dreamweaver-5-5.h tml http://www.itwriting.com/blog/4284-building-a-phonegap-app-for-i

  • T61p +Momentus 500GB as boot disk = BSOD

    I replaced the Hitachi 160GB boot disk with a 500GB 5400rpm Momentus - now, after about 15-30 minutes, the computer (runing XP) will BlueScreen, typically with one of two errors "A process of thread crucial to system operation has unexpectedly exited

  • Call to BPM WebServive and Return BPM GUID

    Hello, When calling the web service to start a BPM process, we would like the web service to return to the calling application the guid of the BPM process that was created. The purpose of this is to provide the calling application a level of traceabi

  • Standard screen field validation : ME21n/ ME22n

    Hi experts, I have a requirement in which we are supposed to do field validations while creating or changing POs/Purchase requistions. Suppose if at item level in Account assignment category is 'F' and the order entered by user is of type 'Z560' then