Classification for Routing Operation (PLPOD-KLAKZ)

Hi experts,
I have to check if a routing operation (CA03) is classified. In CA03 there is an indicator that shows if a classification exists.
(PLPOD-KLAKZ) I already checked function group CPCL but I didn't find any function module which fits to my needs.
If there is any function module or database table this information is stored please help me to find it.
Thanks.
CJ

Dear,
The classification data of the resource has not yet been converted.
So that the same classes can be used for defining the selection conditions as for classifying resources, a conversion must be carried out for class type 019.
Please start report RCCLUKA2 in SE38  with the following parameters: Object table:      CRHD
Class type:        019
Regards,
R.Brahmankar

Similar Messages

  • Function Module for Routing -operation Selection

    Dear Gurus/Friends
    Iam in one development that has to call the Operation number like in MFBF for MileStone Confirmation
    Is there any function Module Available
    Prabakaran K
    Edited by: prabakaran k on May 12, 2008 3:26 PM
    Edited by: prabakaran k on May 12, 2008 3:26 PM

    answered

  • Reg operation level classification in routing

    Hi techies,
    If I maintain classification for an operation in routing.
    In production order can I see ,which are those operations classified under a particular class/charecteristic.
    Thanks in advance.
    Regards,
    M.S.C.Kiran

    Hi,
    Check below link for more details about Task list classification...
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/ab/0b3caaa91611d189060000e8323492/frameset.htm
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/ab/0b3caaa91611d189060000e8323492/content.htm
    Regards
    Edited by: Julfikar Ali on Apr 29, 2009 12:13 PM

  • Goods movement in QC confirmation for inprocess operation

    Dear Friends,
    I am doing inprocess inspection for routing operations. After results recording, I get the window where I am entering yield.
    If I go to confirmation tab, I can enter the activities and qualntity. But ther I am not getting goods movement tab.
    I want assign batch no. to material in the goods movement tab.
    How can I get it?
    Please help me.
    Waiting for reply!
    Thanks!
    Kiran

    No Inputs?????

  • Class Type 019 for operation classification in Routing

    Hi,
    I need to assign class type 019 for classifying operation.
    Its giving the below error: "Data for class type 019 has not been converted yet"
    The details of the help are as below:
    Can any one update the implications of the steps or how can Proceed with this.....
    Diagnosis
    You want to define resource selection conditions. In this case, you need to classify the operations with class type 019. The data for class type 019 must be converted first.
    Procedure
    1. In Customizing for the Classification System, call the classifiable object types.
    2. Make a note of the settings for the following objects in object table CRHD (work center) and class type 019:
    AFVC
    CRHD
    PLPO
    3. Delete these objects and save your settings.
    4. In the main menu, choose Tools -> ABAP Workbench, and then Development -> ABAP Editor.
    5. Enter the program name RCCLUKA2 and choose Execute.
    6. Enter class type 019 and choose Execute.
    The system converts the data of this class type.
    7. Call the classifiable object types in Customizing for the Classification System again.
    8. Use the settings you have written down to create the objects again that you have deleted before
    Thanks
    Amlan C

    Dear,
    The classification data of the resource has not yet been converted.
    So that the same classes can be used for defining the selection conditions as for classifying resources, a conversion must be carried out for class type 019.
    Please start report RCCLUKA2 in SE38  with the following parameters: Object table:      CRHD
    Class type:        019
    Regards,
    R.Brahmankar

  • LSMW for Routing and Reference Operations

    Hello Experts,
    I am working on data transfer for Routing and Reference Operations (TCode CA01 and CA11).
    I found one LSMW for Routing provided by SAP but didnt found for Reference Operations. Does anyone has more stuff related to Data transfer for Routing and Reference Operation.
    Please share with me. My email id is [email protected]
    Thanks in Advance..
    Harkamal

    Hi Harkamal,
        Check the programs:
    RCPTRA01
    RCPTRA02
    Go to SE38 .
    GIve the name of the program.
    Choose the Documentation radio-button.
    Click Display.
    It is pretty well documented.
    Regards,
    Ravi Kanth Talagana

  • Need to select all equipments (PRT) for a plan (routing) operation (PLPO)

    hi,
    I need to select all assigned equipments (PRT) for a plan (routing) operation (PLPO).
    Can anybody tell me the database table relation or is there a function module or a BAPI or something like this !?
    Thanks
    Olaf
    Edited by: Olaf Krüger on Feb 20, 2008 12:03 PM:  BADI to BAPI

    I suppose you have every PLPO needed (else look at function module WOSTS_TASKLIST_READ_FROM_DB)
    Then read
    PLMZ Allocation of bill of material items to operations
    STPO BOM item
    SELECT * FROM plmz INTO TABLE t_plmz
        FOR ALL ENTRIES IN t_plpo
        WHERE plnty = t_plpo-plnty
          AND plnnr = t_plpo-plnnr
          AND plnkn = t_plpo-plnkn.
      SELECT * FROM stpo INTO TABLE t_stpo
        FOR ALL ENTRIES IN t_plmz
        WHERE stlty = t_plmz-stlty
          AND stlnr = t_plmz-stlnr
          AND stlkn = t_plmz-stlkn.
    Regards

  • Branch operation and return operation for routing in alternative sequence

    Hi all experts.
    I would like to ask which table and field store the value of branch operation and return operation for routing in the alternative sequence. I can only find them in structure (PLFLD-VORNR1 and PLFLD-VORNR2) but I want the table field of them. Would anyone please suggest a solution? Thank you.

    Hi,
    look in table AFFL, here the BKNT1 and BKNT2 refer to those vornr1 and vornr2 of the operation. For example in user-exit ZXCO1U01 you will find the values (BKNT1/2) in the sequence table, and when, for example, filling the LOIPRO01-Idoc, you can use the found VORNR for the E1AFFLL-segment.
    See coding for example on determining VORNR1/2 (sequence_table/operation_table as in user exit EXIT_SAPLCOBT_001):
    SORT operation_table BY vornr.
      LOOP AT sequence_table INTO l_sequence.
        MOVE-CORRESPONDING l_sequence TO l_affl.
    * Read the operation table to determine the vornr1 and vornr2
    *via the value of field BKNT1/2
        IF NOT l_sequence-bknt1 IS INITIAL.
          READ TABLE operation_table INTO l_operation
          WITH KEY aufpl = l_sequence-aufpl
                   aplzl = l_sequence-bknt1.
          IF sy-subrc = 0.
            l_affl-vornr1 = l_operation-vornr.
          ENDIF.
        ENDIF.
        IF NOT l_sequence-bknt2 IS INITIAL.
          READ TABLE operation_table INTO l_operation
          WITH KEY aufpl = l_sequence-aufpl
                   aplzl = l_sequence-bknt2.
          IF sy-subrc = 0.
            l_affl-vornr2 = l_operation-vornr.
          ENDIF.
        ENDIF.
    Cheers,
    S.

  • Tables for knowing depedencies associated to routing operations

    Hi everyone,
    I have created a routing with some operations which I have assigned to a configurable material.
    Some of these operations have an associated dependency.   
    I would be very grateful if someone could explain me which tables should I review to know which dependency is associated to each routing operation.
    I have also the same problem with BOM positions.
    Thanks a lot in advance and best regards.
    Ben.

    Hi,
    Most of routing related informations are stored in the following tables, pl check
    PLPO, CRHD, PLKO
    Regards
    Merwyn

  • Load Program to Assign Class to Routing Operation

    Hello Experts,
       I used the standard batch direct input program to load Routings/operations/bom component allocation etc.
    We also have a requirement to assign Class(for class type 018) to each of these operations.
    Please suggest a standard load program to assign classification to a routing operation.
    Thanks
    Kishore

    Found the answer

  • Problem in BOM explosion for a operation Sub Contract.

    Hi All,
    Please advise how to explode a BOM or Assign component in a Purchase order with Item category (L) for a Operation SubContract External Processing  oriented material for which no material code is created from a Series Operation production order .
    Actually in my scenario, no raw material component will send to the Sub -Contract Vendor. Only Assembled operation material lets say operation 20 from a routing ( which is not having material code ) from an In - house production from a shopfloor has to be sent to the vendor to create a operation 30 material , which is also not having a material code." How to explode a BOM or component allocation for the Non- codified Item in a PO".
    regards,
    YK

    Hi
    Change the control key of the operation to PP02. System will prompt u to PR data screen where u have to tick on Subcontracting checkbox. Enter other mandatory field like material grp, cost element, purchasing grp etc. On saving system will create PR with line items. System will trigger the components reqmt based on the assignment to operation. Example if for operation 20, materials M1 & M2 are assigned, then in the PR u will find M1, M2 in the component screen which u have to send to the vendor.
    Hope it is clear to u.

  • How to determine the value of a Standard Value in a routing operation

    Dear Experts,
    Kindly guide me on how to detemine the value of my Standard Value in the  operation of my routing, or in the phase of my Master Recipe.
    I mean what determines the value that I enter for the Standard Values: Machine  and Labor in the phase of my Master Recipe?

    Hi,
    In the Routing / Master Recipe, the standard values are based on the lot size.
    For Example, if you have the lot of 100 KG, then in recipe the machine time will be 2 hr and labor time will be 2 hours, it means to make 100 KG we require 2 hrs of machine and 2 hrs of labor.
    Normaaly all production manager / supervisor will have the date for the hours. The system will calculate will respect to batch / lot size.
    If you have order for 1000 KG, then the system will assign 20 hrs for Machine and 20 hrs for labor.
    This will be used for Capacity planning and Costing.
    Capacity plan here your requirement is 20 hrs for machine and labor. If you have a reacto which wil run for 24 hrs a day, then the order will be completed in a day.
    Costing is concerned, all std. valur key will be assigned with an activity type in work center / Resources and the prices for activity type / cost center will be maintained in KP26.
    Based on the cost and hours, the system will allocate cost for the order (it will be planned cost). When you are confirming the order you will enter the actual time for the operation, then that will be your actual cost.
    Pl do a sample test scenario in your sand box, and surely you will understand more.
    The data for Routing / Recipe will be provided by the production manager of the plant and activity price will be provided by the finance team.
    Thanks,
    JK

  • LSMW for routing with standard batch input

    Hello All,
    I am trying to prepare one LSMW for routing upload for PP module. Routing data contains header data, operation data and master inspection characteristics data.
    I have created three source structures viz. material- task list header, task header data, operation and inspection.
    Header has been assigned to target structure BIMPL- Batch Input Structure for Allocation of Mat. to Task Lists,
    Task header data source structure has been assigned to BIPKO- Batch Input Structure for Task List Header,
    Operation source structure has been assigned to target structure BIPPO- Batch input structure for task list operation,
    and inspection source structure has been assigned to BIPMK- Inspection characteristics for batch input of task lists.
    Every source structure has been identified with an identifier value of which have been set as H, I,J,K for all source structures resp.
    The excel file has been prepared as follows,
    H     MATNR     WERKS     PLNNR     PLNAL               
    H     100045     1000     50000043     1               
    H     100045     1000     50000043     2               
    I     MATNR     WERKS     PLNNR     PLNAL     VALID_FROM     USAGE     STATUS
    I     100045     1000     50000043     1     01012000     1                1
    I     100045    1000     50000043     2     01012000     1                 1
    I have mentioned here the combination of first two structures only. But it contains data of other two source structures as well (for identifier J & K).
    The data from the excel is copied to the flat file and same is specified in LSMW in the step 'Specify file'.
    In 'Assign file' step the flat file is assigned to all the four source structure.
    Now at the time of reading data system is throwing me an error as 'Ensure field sequence is correct for data for mutiple source structures' Message no. /SAPDMC/LSMW_OBJ_060026
    How to overcome this?
    <removed by moderator> answers will be greatly appreciated........
    Mimiri
    Edited by: Thomas Zloch on Jul 11, 2011 10:16 AM

    Hello ,
    have you maintained this check box for the key fields"
    LSMW>Maintain Source fields>double click on fieds : MATNR WERKS PLNNR PLNAL
    Selection Parameter for "Import/Convert Data"-->Tick this check box
    regards

  • Tables for Router number and pcc required in ECC

    Hi,
    I want to know the Route number created by the system in ECC
    1. my input will be material/plant. i need group Number, Group counter . Please let me know which table this is getting stored?
    2. I have created product cost collector for this material/plant combination. which table this PCC is stored?
    Thanks
    Sakthi.K

    Dear Sakthi ,
    1) For Routing details use the below tables.
    Routings/operations
    MAPL                    Allocation of task lists to materials
    PLAS                    Task list - selection of operations/activities
    PLFH                    Task list - production resources/tools
    PLFL                    Task list - sequences
    PLKO                    Task list - header
    PLKZ                    Task list: main header
    PLPH                    Phases / suboperations
    PLPO                    Task list operation / activity
    PLPR                    Log collector for tasklists
    PLMZ                    Allocation of BOM - items to operations
    2) For Product costing use the below tables.
    KEKO               Product-costing header
    KEPH               Cost components for cost of goods manuf.
    KALO               Costing objects
    KANZ               Sales order items - costing objects
    Hope it will be helpful.
    Regards,
    Vijay.

  • Bapi to change Routing Operations

    Hi Gurus,
    Could you please tell me whether this Bapi Can be used to do Mass Change for an operation.
    I have found this Bapi : /SAPMP/BAPI_ROUTING_PROCESS
    But it is throwing exception Routing Entry is missing.
    I have filled only operations table and the importing parameters.
    Do I have to fill any other table.
    Please help me in the same.
    Best Regards,
    Navin Fernandes.

    NAVIN FERNANDES wrote:
    Hi Amber,
    >
    > I have created an LSMW and filled respective values with mapping but it giving me error saying
    > ****************************************************************************
    > "Data Transfer of Routings via Direct Input
    >
    >     Error_di_exp         From    To      Obj   Index       Plnnr
    >
    > E    1     1                             M     0000000001
    >
    > E                           1     1      M     0000000001
    >
    > C\ 045 V
    >    You cannot edit the task list object with activity type V
    > *******************************************************************************
    > Could you please help me in the same.
    > I want to change the standard values in the operation.
    >
    > Best Regards,
    > Navin Fernandes.
    this looks to be a functional error. Can you check again with your functional consultant.

Maybe you are looking for

  • How can I change the html when I export to swf?

    Hello, I want to export my InDesign file to a swf flip book. I've seen several nice wrappers that the swf's sit in which have navigation buttons with mouse over effects. The html that is automatically created by InDesign is very basic and the swf is

  • BAM data cache web service - single thread?

    Hi all, I have 2 load-balanced BPEL servers trying to push data to the same BAM server via the BPEL-to-BAM web service interface. In the logs, on one of the BPEL servers, I get this following error quite frequently: <WARN> <default.collaxa.cube.senso

  • Assiging task to specific user in a role

    Hi, I want to assign a task to a specific user in a specific role. However, it seems that using wlpi I can assign tasks either to a user or to a role !!! Is there a way where I can assign a task to user in a role e.g. assign task1 to user John in a M

  • OCISubscriptionRegister

    Hello all, I tried to run the OCI example for call back function. The example crashed at OCISubscriberRegister with an error message as follows: ORA-03120: two-task conversion routine: integer overflow. I've tried two different examples, both of them

  • HTTP Listener configuration

    How do I configure the HTTP listener running on 8i personal edition (NT/2000) and 9i Developer suite (NT/2000/XP), my OS is XP pro? I am able to connect forms to the database and build the forms. But when I try to "run" the form I get a "FRM-10142: T