How to fetch Routing Sub Operation details

hi all,
I am downloading routing details from tables MAPL PLKO PLPO . But I am unable to find routing sub operation details.
Could you all help me how and from where to retrieve the information
Thanks.

Routing
<b>PLPO          Routing Operation Details
PLKO         Routing Header Details
MAPL         Routing Link to Material
PLAB          Relationships - Standard Network
PLAS          Task List - Selection of Operations
PLMZ         Component Allocation
PLPH          CAPP Sub-operations
PLFH          PRT Allocation
PLWP         Maintenance Package Allocation
PLMK         Inspection Characteristics
PLAH</b>
Engineering Change Management
AENR        Customer and priority
AEOI          Revision Numbers
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
Line Design
LDLH          Line Hierarchy Header
LDLP          Line Hierarchy Items
LDLT          Line Hierarchy Takt Times
LDLBC       Takts/No. Individual Capacities per Line
LDLBH       Line Balance Header 
LDLBP        Line Balance Items
LDLBT        Line Hierarchy Entry and Exit Takts
PRT's
CRFH          PRT Master Data
CRVD_A     Link of PRT to Document
CRVD_B     Link of Document to PRT
CRVE_A     Assignment of PRT data to Equipment
CRVE_B     Assignment of equipment to PRT data
CRVM_A    Link of PRT data to Material
CRVM_B    Link of Material to PRT data
CRVS_A     Link of PRT Internal number to PRT External number
CRVS_B     Link of PRT External number to PRT Internal number 
Thanks
Seshu

Similar Messages

  • How to fetch the active window details using system service

    I am running one application as a service in windows OS. Its purpose is to fetch the all process name,process id and other details which are running currently by executing the tasklist /v command from Java and save the results in a text file.
    I can able to fetch the all the details including window title when i run it in a user level.
    when i launch it as system service,In a text file, it has process name,process id, username and all other details which are currently running in a Os but window title is always NA.
    What is the reason ? is there any security limitation for that?    

    Hi Vel144
    unfortunately you have posted your question in a forum dedicated to project/project server application, would suggest you to post your question in relevant forum, you will get help from experts there
    Thanks | epmXperts | http://epmxperts.wordpress.com

  • How to fetch the components operation and workcenter. pp report

    Hi experts,
                 this report is for pp module ,routing details,in our program
    only give the ouput of the header materials operation and workcenter
    but not get into components.
    before we clariy if the materilas is e or x -
    check the plpo operation and crhd workcter
    or else
    if the material is f -
    get the vendor details---- i ll not using this onle
    before  we need to adopt it only e or x only
    TABLES : MAST,MARC,CRHD,PLPO.
    TYPES : BEGIN OF IT_FINAL,
             POSNR LIKE STPOX-POSNR,
             IDNRK LIKE STPOX-IDNRK,
             OJTXP LIKE STPOX-OJTXP,
             MENGE LIKE STPOX-MENGE,
             MEINS LIKE STPOX-MEINS,
             VORNR LIKE PLPO-VORNR,
             ARBID LIKE PLPO-ARBID,
             OBJTY LIKE PLPO-OBJTY,
             LTXA1 LIKE PLPO-LTXA1,
             VGE01 LIKE PLPO-VGE01,
             VGW01 LIKE PLPO-VGW01,
             VGW02 LIKE PLPO-VGW02,
             ARBPL LIKE CRHD-ARBPL,
            LIFNR LIKE EINA-LIFNR,
            INFNR LIKE EINA-INFNR,
             END OF IT_FINAL.
    DATA : BEGIN OF CRHD_IDEL OCCURS 1000,
           OBJID LIKE CRHD-OBJID,
           ARBPL LIKE CRHD-ARBPL,
           END OF CRHD_IDEL.
      DATA: BEGIN OF ISTPO OCCURS 1000.
            INCLUDE STRUCTURE STPOX.
    DATA: END OF ISTPO.
    DATA: BEGIN OF MATCAT OCCURS 1000.
            INCLUDE STRUCTURE CSCMAT.
    DATA: END OF MATCAT.
    DATA : BEGIN OF ITAB OCCURS 0,
               MATNR LIKE MAST-MATNR,
               WERKS LIKE MAST-WERKS,
               END OF ITAB.
    SELECT-OPTIONS : P_MATNR FOR MAST-MATNR.
    PARAMETERS     : P_WERKS TYPE MAST-WERKS.
    DATA : IT_FINAL_IDEL TYPE STANDARD TABLE OF IT_FINAL
               WITH HEADER LINE INITIAL SIZE 100 WITH DEFAULT KEY.
    DATA : IT_CRHD_IDEL LIKE CRHD OCCURS 100 WITH HEADER LINE.
    DATA: IT_STB LIKE ISTPO OCCURS 0 WITH HEADER LINE.
    DATA : IT_MAPL_IDEL LIKE MAPL OCCURS 100 WITH HEADER LINE.
    DATA  :IT_ITAB_IDEL LIKE MARC OCCURS 100 WITH HEADER LINE.
    DATA : IT_PLPO_IDEL LIKE PLPO OCCURS 100 WITH HEADER LINE.
    SELECT MATNR WERKS FROM MAST INTO TABLE ITAB
                       WHERE MATNR  IN P_MATNR AND WERKS = P_WERKS.
    START-OF-SELECTION.
      CLEAR ISTPO. REFRESH ISTPO.
      LOOP AT ITAB.
      CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
          EXPORTING
            CAPID                 = 'PP01'
            MEHRS                 = 'X'
            MMAPS                 = ' '
            MDMPS                 =  ' '
         BREMS                  = 'X'
         DISMM                 = ' '
         LIFNR                 = ' '
         WEBAZ                 = ' '
            DATUV                 = SY-DATUM
            MTNRV                 = ITAB-MATNR
            WERKS                 = P_WERKS
            EMENG                 = '1'
            STKKZ                 = ' '
            FBSTP                 = ' '
            FTREL                 = ' '
          IMPORTING
            TOPMAT                = W_TOPMAT
           DSTST                 = DSTST
          TABLES
            STB                   = ISTPO
            MATCAT                = MATCAT
          EXCEPTIONS
            ALT_NOT_FOUND         = 1
            CALL_INVALID          = 2
            MATERIAL_NOT_FOUND    = 3
            MISSING_AUTHORIZATION = 4
            NO_BOM_FOUND          = 5
            NO_PLANT_DATA         = 6
            NO_SUITABLE_BOM_FOUND = 7
            OTHERS                = 8.
      WRITE: / W_TOPMAT-MATNR UNDER TEXT-H00 COLOR COL_HEADING,
               W_TOPMAT-MAKTX UNDER TEXT-H01 COLOR COL_HEADING.
        SELECT MATNR WERKS OBJID BESKZ FROM MARC INTO CORRESPONDING FIELDS OF TABLE IT_ITAB_IDEL
                    WHERE   MATNR = ITAB-MATNR AND BESKZ = 'X' OR BESKZ = 'E' OR BESKZ = 'F'.
        SELECT MATNR WERKS PLNTY PLNNR LIFNR FROM MAPL INTO CORRESPONDING FIELDS OF TABLE IT_MAPL_IDEL
                                                   WHERE MATNR = ITAB-MATNR AND
                                                         WERKS = 'IN01' .
      SELECT PLNTY PLNNR VORNR  ARBID OBJTY LTXA1 VGE01 VGW01 VGW02 PLIFZ FROM PLPO INTO CORRESPONDING FIELDS OF TABLE IT_PLPO_IDEL
                                                        FOR ALL ENTRIES IN IT_MAPL_IDEL
                                                        WHERE PLNTY = IT_MAPL_IDEL-PLNTY AND
                                                              PLNNR = IT_MAPL_IDEL-PLNNR AND
                                                              WERKS = 'IN01' AND ARBID <> 0.
    LOOP AT ISTPO.
      IT_FINAL_IDEL-POSNR  = ISTPO-POSNR.
      IT_FINAL_IDEL-IDNRK  = ISTPO-IDNRK.
      IT_FINAL_IDEL-OJTXP  = ISTPO-OJTXP.
      IT_FINAL_IDEL-MENGE  = ISTPO-MENGE.
      IT_FINAL_IDEL-MEINS  = ISTPO-MEINS.
    LOOP AT IT_PLPO_IDEL.
    IT_FINAL_IDEL-VORNR = IT_PLPO_IDEL-VORNR.
        IT_FINAL_IDEL-ARBID = IT_PLPO_IDEL-ARBID.
        IT_FINAL_IDEL-OBJTY = IT_PLPO_IDEL-OBJTY.
        IT_FINAL_IDEL-LTXA1 = IT_PLPO_IDEL-LTXA1.
        IT_FINAL_IDEL-VGE01 = IT_PLPO_IDEL-VGE01.
        IT_FINAL_IDEL-VGW01 = IT_PLPO_IDEL-VGW01.
        IT_FINAL_IDEL-VGW02 = IT_PLPO_IDEL-VGW02.
      ENDLOOP.
        READ TABLE IT_CRHD_IDEL WITH KEY OBJID = IT_PLPO_IDEL-ARBID.
        IT_FINAL_IDEL-ARBPL = IT_CRHD_IDEL-ARBPL.
        APPEND IT_FINAL_IDEL.
        CLEAR : IT_FINAL_IDEL,IT_PLPO_IDEL,IT_CRHD_IDEL,ISTPO.
    ENDLOOP.
    WRITE :/6 W_TOPMAT-MATNR, 25 W_TOPMAT-MAKTX.
       LOOP AT IT_FINAL_IDEL.
       WRITE :/ IT_FINAL_IDEL-POSNR,
                IT_FINAL_IDEL-IDNRK,
                IT_FINAL_IDEL-OJTXP,
                IT_FINAL_IDEL-MENGE,
                IT_FINAL_IDEL-MEINS,
                IT_FINAL_IDEL-VORNR,
                IT_FINAL_IDEL-ARBID,
                IT_FINAL_IDEL-OBJTY,
                IT_FINAL_IDEL-LTXA1,
                IT_FINAL_IDEL-VGE01,
                IT_FINAL_IDEL-VGW01,
                IT_FINAL_IDEL-VGW02,
                IT_FINAL_IDEL-ARBPL.
       ENDLOOP.
    REFRESH IT_FINAL_IDEL.
    SKIP.
    ENDLOOP.
    regards
    ds

    u have the plant and component from STPOX....using this goto MARC table and check BESKZ field...

  • How to fetch USERNAME from Partner Details.

    Hi,
    i'm using FM BBP_PO_GET_DETAIL. Which provides a table with partner details. using this partner detail i want to find out the USERNAME so that i can use FM BBP_USER_GET_DETAIL to fetch the details of a particular partner.
    Kindly tell me how can i find the USERNAME of a particular partner using the details i get in partner table.
    Waiting for a quick response.
    Regards,
    Neha

    Hi Alok n Disha,
    Thanks a lot for your help. I'm using FM BUP_PARTNER_GET, This asks for partner_no and provides username through the field XUBNAME. Although BUT000 also provides XUBNAME but when i entered the partner_no it did not populate XUBNAME hence i had to use the above mentioned Function Module.
    once again,
    Thanks.

  • How to fetch net due date details

    Hi sap gurus
    I am fetching data from fbl5n transaction.
    i want days in arrears by NET due date(VERZN) and net due date(FAEDT) fileds
    but the data is coming from structure RFPOS-FAEDT and RFPOS-VERGN Fields.
    i want to display those fields in my script layout.
    RFPOS is a structure so its not contain  any data so exactly which table i will get FAEDT and VERGN fields..
    how i will fetch those fields for my requirement.
    if any solution really helpful.
    i am using standard print program RFKORD10.
    and  standard form is F140_ACC_STAT_01. and copied form into zform.
    if any one can guide it will resolve my problem..
    with advance thanks..

    This is a standard SAP functionality. Usually a credit memo is referenced to an invoice and if you don't have a reference to an invoice SAP would consider that credit memo as due immediatly.
    If you have an invoice to be referenced to this credit memo enter the invoice number in the invoice reference field in FB75 > payment tab and then enter the payment term. If you don't have an invoice reference enter V  in the invoice reference field and then the payment term, system will calculate net due date based on payment term.

  • How to fetch the customer contact details like phoneno,fax_no

    Hi All,
    i am knew to Apps .here i need to extract the details from database to text file.in my query i have a problem to get the details about customer contact_no like phone_no,fax_no,contact_person_name(first,last).anyone can help in this case.thank you in advance
    Akepati

    Hi,
    you can get these information from Hz_Contact_points table. This table stores the phone,fax, email details about the contact of a party.
    Join Condition between Hz_Contact_Points and Hz_parties is Owner_table_id where Owner_table_name ='HZ_PARTIES', owner_table_id is the party_id of Hz_parties.
    I hope this helps
    Regards,
    Dinesh

  • Where the sub operation details of a activity of a WBS element are stored

    Hello experts,
                        Where can i find the suboperation details ( quantities , UOM .........)  of the activities of WBS element in CJ20N transaction. In which table it is being stored.

    Hi Kiran,
    These details are mainly stored in RESB table.
    But for your refereence if you want the table name of any
    of the value you just place your cursor over that field > Press F1>
    get a popup> get technical information throug a pushbutton on the popup>
    you would get the details of the table name field name etc. through this.
    Hope you may find it useful.
    Thanks
    Sumit

  • Operation and Sub operation link in routing -reg

    Hi,
    In one of our report development we have to seggregate the operation number wise suboperations
    which table and fields we have to use ?
    we have to down load all the operations and sub operations for a given routing from the system and should be able to display for this operation these  are all the sub operations and display their operation timings
    please guide
    regards,
    Madhu Kiran

    Hi,
    If i go to some operation and add one sub operation for it , i am not getting in the tables both operation and sub operation
    i think both are getting stored in the same field
    can some one give some logic of fields connection to fetch the sub operatiosn of an operation ?
    PLPH table has no entries at all in our system
    i try to use PLPO and PLAS
    i require basic logic of flow
    how to get the suboperations of an operation
    pl help
    regards,
    madhu kiran

  • Sub operations in routing

    hi sap gurus,
    while creatng routing we want to create suboperations for the finished product. pls tell the flow path how to create suboperations with transaction code.
    regards and thaks in advance
    muralidhar.t

    1. Create the operation as usual (say 0010)
    2. In the next line again give the main operation number & in the Suboperation column i.e. column next to operation i.e. in SOp enter the suboperation no u want i.e. say 0002. The moment u enter Sub operation no and press enter; system will prompt u to enter time for activities and finally it is created...
    All the other steps are similar to creating operation
    Once it is created; you can see a "check box" under Sub operation for 0010 (before base quantity)
    Also u click on that Sub operations and can see the details within it....
    Hope it clarifies
    Rgds

  • Track Changes made in Routing Operation Detail

    Hi gurus,
    I need your help with Routings.
    We have a process where if a change is made into the Routing, we have the Change Master process and a Change number is assigned to this Routing.
    For example, if a change is made into the Description of the "Operation" into the Routing, I can see this change with transaction CA60 and CA61.
    But, if a change is made into the "Operation Details" i.e.:  change the labour data or the overlapping data (where before it was Required overlapping and now is No overlapping); this kind of change into my Routing is not showed in transactions CA60 or CA61.
    I checked that a changed was made because the "Changed on" field was updated and "Changed by" field.
    Then, I checked the tables CHDHR and CDPOS and I can see that a document was created with the changed that I did, but, it does not show the detail of my change (i.e. old value was: Required overlapping, new value is: No overlapping).
    Do you know where I can see that my change was made? Or, is it possible to track these kinds of changes into SAP? where and how?
    Many thanks for your time and your feedback will be very well appreciated!
    Regards,
    Sandra

    Hi,
    Look for the change history in change header and change positions.
    The tables are CDHDR and CDPOS.
    Regards,
    Renjith Michael.

  • OPERATION DETAILS IN ROUTING

    Hi Experts
                  In the operation details of routing- CA01 there is control -either based on time or Quantity for every operation. What it mean. If time based is it denoting the time for the particular operation. What it mean if "quantity based " is preferred.Can I have details please.
    Also will you give a scenario with some operations mentioned where I can use routing.
    Pranav

    Hi Gajesh, Thanks
    I take your case - "Suppose you have 4 operation. Forming, lathing , quality checks and painting. Normaly in production system you will have a quality check in between the process".
    here check necessary in 3rd step - quality check. So am I to select time based / quantity based for operation -3 only ( because only it will have MIC ). Can I go without selecting time based / quantity based option also (if so how - what option i need select in the operation details for the 3rd operation). 
    Next, in CO11N. I confirm operation -1 ( here what option I hav to select - either partial confirmation / final confirmation). As per my logic, only partial confirmation need to be selected (what quantity I hav to enter here for yield- is it the total production order quantity = total target quantity).
    similarly, 2nd operation- lathing- I select partial confirmation- enter yield/scrap etc
    3rd operation is qc check- is it possible that production person will confirm this step in co11n itself without waiting for the qc person to confirm using QA32. ( here what yield to be entered and how if we use QA32 )
    4th -painting - finally ( as my logic goes -final confirmation selected and operation confirmed for the total production order quantity)
    Tell me if right. I noticed that if final confirmation option selected in the first operation itself, all the 4 operations can be confirmed in the co11n itself ( by selecting final confirmation option for all 4 operations)by the production department. Am i wrong somewhere. If this is so, how Qc person has control over the process.
    Also what yield /scrap quantity will be entered for each 4 operations in co11n ( is it mean the wastage occuring in each step =scrap and remaining quantity =yield). If so the final yield by operation -4 will be surely less than the production order quantity ( if wastage occurs during lathing/forming)
    regards,Pranav

  • How to maintain sub-operations?

    Hi all,
           How to maintain sub-operations? I am not able to do it as as soon as I enter the operation data the field for sub-operation disables, kindly let me know what to do?
    Regards
    MANS

    Dear,
    Insert the "Main operation number" again at Operation field and give the "new number" for Sub opetaion number at SOp.field in the opreation Overview of CA01.
    Steps are as,
    1. Create the operation as usual (say 0010)
    2. In the next line again give the main operation number & in the Suboperation column i.e. column next to operation i.e. in SOp enter the suboperation no u want i.e. say 0002.
    The moment u enter Sub operation no and press enter; system will prompt u to enter time for activities and finally it is created...
    U will observe that whenever there is a suboperation; there is no check box under sub operation where as in 0010 you can see that check box (Column before Base Qty). Also u click on that Sub operations and can see the details within it.
    Hope it will work for you.
    Regards,
    R.Brahmankar

  • How to fetch the payment details in to report

    Hi,
    I have the MIRo number, How to find the payment document number and check number so and so.
    What are the transactions like: F053,FB03.
    Let me know the process of payment after MIRO.
    What are the documents we need to raise, how to find those documents, what is the link.
    How to find the accounting document for payment and check details (from which tables).
    What are the table names and field names. What we can get from PAYR table.
    I want to create a report for MIRO with payment details.
    How to fetch the business area field value in to report.
    What is the table name. I verified it is storing in structure. Which is the right table for fetching that value with reference to MIRO.
    With regards
    Lakki
    With regards
    Lakki

    Hi,
    For Creating MIRO Document,
    We have to create PO Me21n,
    then Do GR - MIGO using PO Reference,
    then we have to do MIRO Using then same PO. so the link is basically the PO. Then the Payment for the MIRO document is done in F-53/F-58 refering the MIRO  document. the check number will be generated once we do the Check  Print in
    FBZ5.
    You can  assign the check number to the F-53 document either in Assignment Field or the Reference field Using FCHU.
    Once you do this you can view all the Vendor Bill using Doc Type RE, KR & Vendor Payments Doc Type KZ.
    You can use the Std Report FBL1N / FK110N
    Hope its useful. Assign points if found use ful
    Regards,
    R.Ramakrishnaraj

  • How to fetch details based on sales order....

    hi,
    How to fetch all invoice number with corresponding net value,cost then credit and
    debit memo details corresponding to one sales order .
    plz reply.

    HI,
    See the relation b/w sales order table & billing table
    VBAP=VBRLN = VBRP-AUBEL
    VBAP-POSNR = VBRP-AUPOS
    then for fetching the cost & credit debit indicator , use this relationship.
    VBRK-VBELN = BKPF-AWKEY
    BKPF-AWTYP = 'VBRK'
    Reward Points if it is Useful.
    Thanks,
    Manjunath MS

  • How to fetch invoice details based on service notification

    Hello,
          How to fetch the invoice deatils for a service quotation.
    Wat are the tables used for this purpose.
    Thanks in advance.
    Regards,
    Umasankar.

    Hi
    Use the table VBAK and VBAP  for the Quotation details use VBTYP = B
    and pass the VBAP-VBELn and VBAP-POSNR to VBRP-AUBEL and VBRP-AUPOS  and take the VBRP-VBELN  which is the Invoice Number
    take the details from VBRK and VBRP details
    <b>Reward points for useful Answers</b>
    Regards
    Anji

Maybe you are looking for

  • Setup Error 1603 with Exchange 2013 incl. SP1 on Windows Server 2012 R2

    Hello all, i've started the installation of a new Exchange 2013 with SP1 in a Windows 2012 R2 environment. New AD, no Exchange previously installed. Exchange ISO from Volume Licensing Service Center (Filename: SW_DVD9_Exchange_Svr_2013w_SP1_MultiLang

  • Mail not showing as Read between devices

    I have a macbook pro running on OSX and an iPhone 5. Whenever i get mail on either of my devices and i open the email and "read" it, it does not show as read on myother device. I have 3 hotmail accounts and 1 gmail account, and they all seem to have

  • BPM Web Based Process Modelling

    Hi Folks, I remember seeing a webminar or a video on SDN which demonstrated modifying of BPM projects from within Internet Explorer. I cannot seem to find it now. If anyone else seen it or can point me to the link or can tell me which version it is i

  • Lost radio tuner with Win 7 install

    Hello,   I recently installed Win 7 over Vista on my HP M8100n  desktop. The radio tuner no longer works on the Hauppauge WinTV HVR-1600 NTSC/ATSC combo card, through Windows Media Center. The TV tuner still works fine. When opening the radio applica

  • 3.6 won't display facebook album cover pics/ windows 7/ explorer does

    New laptop with Windows 7 and Firefox 3.6. So far, facebook album cover pics and thumbnails do not display under profile pics tab, although individual pics display. By comparison, eBay pics and thumbnails display correctly. On same computer same prob