FM / TABLES TO GET WORK CENTER DETAILS

hi friends,
              can any1 suggest me functional module or tables where i can fetch work center details like we get in CA03

Use This FM
CR_WORKSTATION_READ_ROUTING,ROUTING_DISPLAY
Use table CRHD ,MAPL
Please reward if useful.

Similar Messages

  • Read Routing and work center details from transfer order

    Hello
    I am using transaction LT31 to print a form for the transfer order.
    The customer wants me to print a field that is in the work center details of the routing for this material and plant.
    I can see this data with transaction CA02 where i enter material and plant,and then the work centers are beeing displayed.From here i can double click on the work center and see the field Supply area that i have to print.
    My answer now is,how to read details on the work center starting from my transfer order number.Which is the table connection between transfer order table LTAK and the tables where i can find the work center details.
    Thank you

    I have found the solution:
    ltak-tanum = mseg-tbnum
    read aufnr from mseg and go to afko
    mseg-aufnr = afko-aufnr
    read plnnr from afko and go to plpo
    afko-plnnr = plpo-plnnr
    from plpo read arbid and go to crhd
    plpo-arbid = crhd-objid
    from here,we can find the arbpl and the field that i was looking for PRVBE

  • FM to get work center information from routing

    Hi all,
    Is there any FM to get work center information from routing?
    Points assured.
    Thanks and regards,
    Nilesh

    Use This FM
    CR_WORKSTATION_READ_ROUTING,ROUTING_DISPLAY
    Use table CRHD ,MAPL
    Please reward if useful.

  • CAPP Functionality and Custom Z table when maintaining work center standard

    Hi,
    i have to do enhancmenet to transaction CR02,
    Production planning needs to update PP routers with Standard Values that pertain to setup, machine, labor, man calculation, machine calculation.  They will use CAPP functionality to accomplish this. Work centers will be classified with characteristics identified as CAPP standard values. The actual standard values will be assigned to each work center using transaction CR02, program SAPLCRA0. The work centers will be classified and standard values assigned.Upon saving the work center entries, the system needs to update the Z table with the assigned characteristic values and store the information by plant and work center. When the CAPP program is executed, the program will go a Z table where the work center characteristics are stored.

    What if I really don't care about the old historical values??? I only want to populate this information from this point forward. Would that change your mind as to which method to choose???
    In this case, you can use the Append Structure. There would be more advantages as you don't have to keep track of data consistency, Locking / Unlocking mechanism etc.
    Please refer to the section [Further Remarks on Append Structure|http://help.sap.com/saphelp_nw04/helpdata/en/cf/21eb61446011d189700000e8322d00/frameset.htm]
    Regards,
    Naimesh Patel

  • Tables to retrieve work center for target costs

    Dear all,
    currently i developing a report which requires me to display the work centers and their target and actual hours and costs. I tried using production order link tables but they only show work centers that are related to planned costs. May i know which tables can i refer to, in order to retrieve work centers that contribute to the target costs?
    Thanks and Regards
    YM

    I have a Report for - 'Equipment BOM' - IB03.
    Problem: How to find the 'Maintenance work Center ' For Equipment ? (IE03--> Organization > Responsibility> Main. W.Cntr)
    [ Note: For Client --> It's not necessary that each Equipment has Production Order, Few Equipments are taken only for Repair purpose, Equipment is there in table - EQUI,
    So - Not possible to fetch from AUFK, HIKO or any other order tables. ]
    EQUZ-GEWRK has the main work center. Pass the equipment number and valid-to date to get the main work center.
    Cheers
    Sujay

  • SAP Table to get Cost Center Acct Line Items based on Cost Element

    Hello there,
    My question is pretty straight forward.
    Is there a way to get cost center document line items efficiently by just using the Cost Element(most specifically), Period, Posting Date, and Fiscal Year (Cost Center would help too)? I ask this because other tables I am asking are quite slow. So basically im trying to look for the the BSIS/BSAS equivalent for cost center accounting.
    Hope to hear from you soon. Thank you and good day.

    Hi ,
                Check out this link .You will get what is want with linkage also.<a href="http://www.erpgenie.com/abap/tables.htm">FI tables</a>\
    Please reward if useful.

  • Need to get cost center details for a requisition

    Hi All,
    Could you please help me to find table for cost center details for a requsition.
    Thanks,

    Hi;
    Did you see:
    http://www.aboutoracleapps.com/2007/08/oracle-general-ledger.html
    Information Center : Oracle Cost Management [ID 1417659.2]
    Regard
    Helios

  • Read work center details for a notification

    Hello All,
    Is there an FM that I can use to read the work center that is assigned to a service / maintenance notification?
    The problem that I have is that I use BAPI_ALM_NOTIF_GET_DETAIL to read the notification header.
    In case of service notifications of type S1, I get the PP_WORKCENTER information but for notifications of type S3, i get the PM_WORCENTER.
    I need one FM which will get the work center and plant for me so that I do not have to check the notification types.
    Does anybody know of one?
    Best Regards,
    Mithun

    Hi;
    Did you see:
    http://www.aboutoracleapps.com/2007/08/oracle-general-ledger.html
    Information Center : Oracle Cost Management [ID 1417659.2]
    Regard
    Helios

  • How to get work center

    Hi All,
    I am creating r actual and planned renue report for service orders ( CS ) .
    Problem :
    I have a service order number , But i am  unable get the workcenter of the order.
    Please guide me how to get the workcenter based on service order.
    Thanks in advance
    Regards
    Sudhakar

    Dear Sudhakar,
    Try using this FM: CR_WORKSTATION_READ
    Field: GEWRK (Object ID of the Work Center)
    View: VIAUFKST
    Regards
    s@k
    Edited by: siemens.a.k on Feb 11, 2010 10:18 AM

  • How to get work item details programatically ?

    Hi All,
    I have a list of work items (process instances) and I want to retrieve each item details such as: attachments, notes, id, ...
    All the items are filtered and represented as Fuego.Papi.Instance:
    Fuego.Papi.Instance[] inst = busProcess.getInstancesByFilter(filter : instFilter);
    But the work item details are inherited from Fuego.Lib.ProcessInstance. So, how to get the item details from inst[] ?
    Would appreciate any help, may be Dan will have an advise ?
    Regards,
    Kim

    If you have instances returned by your filter, you could extract variable information for each instance by doing something like this:
    for each inst in getInstancesByFilter(ps, filter : instF) do
        // here's how to get the value inside a primitive instance variable
        orderAmtObj as Object = getVar(inst, var : "orderAmount")
        // here's how to get the value of attributes inside a complex BPM Object instance variable
        //    - in this case this is an "order" object with two attributes (customerName and amount)
        orderObj as Object = (getVar(inst, var : "order"))
        xmlObject = Fuego.Xml.XMLObject(createXmlTextFor(DynamicXml, object : orderObj, topLevelTag : "xsi"))
        logMessage "The value of the order object's customer name is: " +
               selectString(xmlObject, xpath : "customerName")
        logMessage "The value of the order object's order amount is: " +
               selectNumber(xmlObject, xpath : "amount")
        // here's a rather uninspired way to retrieve who the participant is that was assigned the instance
        logMessage "The participant assigned to this instance is: " + inst.participantId
    endInside the above "for" loop, you could retrieve these predefined variables (this example assumes you use "inst" in your "for" loop):
        objRet as Any
        objRet = inst.getVar(var : "PREDEFINE_ACTIVITY")
        logMessage "Activity name = " + objRet using severity = DEBUGSubstitute "PREDEFINE_ACTIVITY" in the above logic to get this information:
    PREDEFINE_PRIORITY (priority)
    PREDEFINE_ACTIVITY_DEADLINE (activity.deadline)
    PREDEFINE_CREATION_TIME (creation.time)
    PREDEFINE_PROCESS_DEADLINE (deadline)
    PREDEFINE_DESCRIPTION (description)
    PREDEFINE_PROCESS (process)
    PREDEFINE_RECEIVED_TIME (receptionTime)
    PREDEFINE_PARTICIPANT (participant)
    PREDEFINE_COPY (id.copy)
    PREDEFINE_STATUS (status)
    Similarly, you might want to try to get instance information using the Fuego.Papi.VarDefinition object a try. Never used it, but the logic might be as simple as:
        logMessage "who created? = " + inst.getVar(Fuego.Papi.VarDefinition.CREATOR_ID) using severity = DEBUG
        logMessage "does it have attachments? = " + inst.getVar(Fuego.Papi.VarDefinition.HAS_ATTACHMENTS) using severity = DEBUG   
        logMessage "does it have notes? = " + inst.getVar(Fuego.Papi.VarDefinition.hasnotes) using severity = DEBUGDan

  • Bapi for getting work center using receiving order and operation.

    Hi Abapers,
    could you tell me the name of bapi which takes receiving order , operation
    and giving back work center
    Thanks in Advance.

    Hi,
      Try this one Data_Sales upload
    Bye

  • Table to get the component details of a given PO line item...

    Hello Experts,
    In ME23N(Display PO), I need to know where to fetch the component details of a
    given line item. This is applicable for line items with a category of subcrontracting.
    Hope you can help me guys. Thank you and take care!

    HI,
    U can fetch the data from table EKPO this for line item table for purchase order item tabel.
    like this,
    data: itab like ekpo with header line.
    Select * from ekpo into table itab where ebeln  in s_epeln.
    Regards,
    S.Nehru.

  • Work center for Production order

    Hi,
    In my report I need to link the production order to work center. I have got all the information for the production order from AFKO, but I am unable to find a way to link it to the work center?
    Thanks
    Vamsi

    Hi Vamsi,
    Refer value AFKO-AUFPL, Use AFVC-AUFPL to fetch the operation details of an order. Fetch AFVC-ARBID for AFVC-AUFPL, use CRHD-ARBID to get Work center details.
    Regards,
    Prasobh.
    Award your marks, if this has helped you.

  • User Exit or DB-Table for Work Center (CR01)

    Hi!
    I have an external software which must be triggered when the user changes a work center in SAP (transaction CR01,CR02). I was looking for an user exit to do what ever is necessary but I couldn't find one.
    So, does anybody know an user exit or BADI for work center?
    Also possible:
    The database table where work center are stored. So I could poll against this table and check if a work center was changed. I found the table SGOSHIST which log all modified objects in SAP. So this could maybe used to check for modified work center, I think.
    Thanks,
    Konrad

    > You can check the BADI definition from transaction SE18,
    > 'LTRM_WORK_CNTR_DTRM', this might be helpful,
    How can I check this BADI. If I use SE18, it doas not exist, buit if I try to create it, the system tells me that it already exists in the SAP Original System... and asks me if I want to create a copy of it! I don't know what to do at this point!
    > Work center details are avilable in CRHD table, you can
    > look for CR* from SE11 transaction,
    I know, but if you change the description of the work center, it is stored in CRTX. there are a lot of CR* tables. It would be helpful to have a table which is updated every time a work center is modified!
    Thanks,
    Konrad

  • Cost Center - Work Center Table

    Hi!
    How to get Cost Center from Work Center? . Any Table?
    Thanks in Advance
    Bekele

    Hi Bekele,
    First get the Workcentre Object ID in CRHD table for your work center. Then with the Object ID, get the cost centre assigned in that work center in table CRCO.
    I guess, you dont get both in a single table. Hope this help you !!
    Regards,
    Hari.

Maybe you are looking for