Maintenance work order-- Time confirmation report for work orders

Could you please let me know how to pull actual time confirmation report for the maintenance work orders?
regds
Arun

Use transaction IW43 or  IW47 for maintenance order confirmation ( inprocess & completed ) and refer [link|http://help.sap.com/saphelp_erp2005/helpdata/en/66/158661547611d182cc0000e829fbfe/frameset.htm]
-S.N

Similar Messages

  • Confirmation report for shipment tracking

    Dear experts,
                       how can i  generate a confirmation report for shipment tracking-vendor wise  ???
    Regards,
    Durgesh Tambat.

    Hi Durgesh Tambat;
    Please search in SCN before create a thread , i hope that you will reach your solution.
    Regards.
    M.Ozgur Unal

  • Confirmations report for orders

    Hi Experts ,
    Is there any single report which shows the confirmations done for different orders?
    In our scenario , we do time confrmations for different orders that includes PS / PM orders / PP Orders / Internal Orders .
    Now the client want to see the report for all these confirmations in a single report .
    Please suggest....
    Regards
    Judy

    Hi,
    I think there is no such report which give the details of confirmation of all the order types ( PS,PP, PM etc ) in one report.
    As I understand ,  you will have to get this information thru a Query. Get the information for Order type and confirmations from all the order types in one report output.
    Hope this helps.
    Warm regards,
    Srinivas Potluri

  • SAP Time management reports for Ukraine

    Hi All,
    can anybody send me the list of Time management reports available for ukraine.
    i have checked in other sites also, i am getting only standard reports, but i am not getting reports for ukraine. i have given ukraine country grouping also.
    regards
    Vani

    Hai..
    Personal Work Schedules (Report RPTPSH10)
    Daily Work Schedules (Report RPTDSH20)
    Attendance
    Attendance/Absence Data: Overview (Report RPTABS20)
    Attendance/Absence Data: Calendar View (Report RPTABS50)
    Attendance/Absence Data: Multiple Employee View (Report RPTABS60
    Attendance Check (Report RPTEAB00)
    Attendances/Absences Overview Graphic (Report RPTLEA40)
    Absence
    Attendance/Absence Data: Overview (Report RPTABS20)
    Attendance/Absence Data: Calendar View (Report RPTABS50)
    Attendance/Absence Data: Multiple Employee View (Report RPTABS60
    Attendances/Absences Overview Graphic (Report RPTLEA40)
    Time Accounts
    Time Leveling (Report RPTCMP00)
    The Time Statement (Report RPTEDT00)
    Cumulated Time Evaluation Results: Time Balances and Time Wage T
    Time Accounts (Report RPTDOW00)
    Displaying Absence Quota Information (Report RPTQTA10)
    Displaying Time Evaluation Messages (Report RPTERL00)

  • Balance Confirmation Report for multiple vendors

    Hi all,
    I have developed report in FI which gives details about opening balance,fiscal year, document number, posting date and amount in the output.In selection screen I am passing single values of fiscal year(GJAHR), vendor(LIFNR) and company code(BUKLRS). This report is working fine for single vendor but now I need to change it for multiple vendors. I tried but not getting desired result in the output.
    Following is code for single vendor in selection screen.
    SORT t_bsikbsak BY bukrs belnr gjahr buzei.
      LOOP AT t_bsikbsak.
        t_pre_bal-netpr = t_bsikbsak-dmbtr.
        t_pre_bal-sgtxt = 'Opening Balance'.
        IF t_bsikbsak-shkzg EQ 'H'.
          t_pre_bal-netpr = t_pre_bal-netpr * -1.
        ENDIF.
        COLLECT t_pre_bal.
      ENDLOOP.
      LOOP AT t_pre_bal.
        itab-netpr = t_pre_bal-netpr.
        itab-sgtxt = t_pre_bal-sgtxt.
        APPEND itab.
      ENDLOOP.
    SORT t_bseg BY bukrs belnr gjahr buzei.
      CLEAR itab.
      LOOP AT t_bseg.
        ON CHANGE OF t_bseg-bukrs OR t_bseg-belnr OR t_bseg-gjahr.
          READ TABLE t_bkpf WITH KEY bukrs = t_bseg-bukrs
                                   belnr = t_bseg-belnr
                                   gjahr = t_bseg-gjahr.
          IF sy-subrc IS INITIAL.
            itab-budat = t_bkpf-budat.
            itab-belnr = t_bkpf-belnr.
            itab-gjahr = t_bkpf-gjahr.
          ENDIF.
        ENDON.
        IF t_bseg-koart = 'K' AND t_bseg-lifnr = s_lifnr.
          itab-sgtxt = t_bseg-sgtxt.
         READ TABLE t_bsak WITH KEY bukrs = t_bseg-bukrs
                                    belnr = t_bseg-belnr
                                    gjahr = t_bseg-gjahr.
          IF t_bseg-shkzg EQ 'H'.
            t_bseg-dmbtr = t_bseg-dmbtr * -1.
          ENDIF.
          itab-netpr = itab-netpr + t_bseg-dmbtr.
        ELSEIF t_bseg-hkont = '0044100040'.  " G/L for INTEREST EXPENSES
          itab-inamt = t_bseg-dmbtr.
        ELSEIF t_bseg-hkont = '0012300060'.  " G/L for TDS ON INTEREST
          itab-tdamt = t_bseg-dmbtr.
        ENDIF.
        AT END OF bukrs.
          append_flag = 'X'.
        ENDAT.
        AT END OF belnr.
          append_flag = 'X'.
        ENDAT.
        AT END OF gjahr.
          append_flag = 'X'.
        ENDAT.
        IF append_flag = 'X'.
          APPEND itab.
          CLEAR itab.
          CLEAR : append_flag.
        ENDIF.
      ENDLOOP.
    Closing Balance
      LOOP AT itab.
        t_temp-netpr = itab-netpr.
        t_temp-sgtxt = 'Closing Balance'.
        COLLECT t_temp.
      ENDLOOP.
      CLEAR itab.
      LOOP AT t_temp.
        itab-netpr = t_temp-netpr.
        itab-sgtxt = 'Closing Balance'.
        APPEND itab.
      ENDLOOP.
    Kindly provide some input how to do it for multiple vendors in same code otherwise provide some suggestions for new code.
    Thanks in Advance.waiting for response.
    Thanks & Regards,
    Harshada Patil

    Hi,
    Thanks for quick response.Following is the structure of internal tables which I am using in this program.
    TYPES : BEGIN OF ty_bsikbsak ,
            bukrs TYPE bsik-bukrs,
            lifnr TYPE bsik-lifnr,
            umsks TYPE bsik-umsks,
            umskz TYPE bsik-umskz,
            augdt TYPE bsik-augdt,
            augbl TYPE bsik-augbl,
            gjahr TYPE bsik-gjahr,
            belnr TYPE bsik-belnr,
            buzei TYPE bsik-buzei,
            zuonr TYPE bsik-zuonr,
            shkzg TYPE bsik-shkzg,
            dmbtr TYPE bsik-dmbtr,
            END OF ty_bsikbsak.
    TYPES : BEGIN OF ty_bkpf ,
            bukrs TYPE bkpf-bukrs,
            belnr TYPE bkpf-belnr,
            gjahr TYPE bkpf-gjahr,
            bldat TYPE bkpf-bldat,
            budat TYPE bkpf-budat,
            stblg TYPE bkpf-stblg,
            stjah TYPE bkpf-stjah,
            END OF ty_bkpf.
    TYPES : BEGIN OF ty_bseg ,
            bukrs TYPE bseg-bukrs,
            belnr TYPE bseg-belnr,
            gjahr TYPE bseg-gjahr,
            buzei TYPE bseg-buzei,
            koart TYPE bseg-koart,
            shkzg TYPE bseg-shkzg,
            dmbtr TYPE bseg-dmbtr,
            sgtxt TYPE bseg-sgtxt,
            hkont TYPE bseg-hkont,
            lifnr TYPE bseg-lifnr,
            END OF ty_bseg.
    DATA : t_bsik     TYPE TABLE OF ty_bsikbsak WITH HEADER LINE.
    DATA : t_bsak     TYPE TABLE OF ty_bsikbsak WITH HEADER LINE.
    DATA : t_bsikbsak TYPE TABLE OF ty_bsikbsak WITH HEADER LINE.
    DATA : t_bkpf     TYPE TABLE OF ty_bkpf     WITH HEADER LINE.
    DATA : t_bkpf2    TYPE TABLE OF ty_bkpf     WITH HEADER LINE.
    DATA : wa_bkpf    TYPE ty_bkpf     .
    DATA : t_bseg     TYPE TABLE OF ty_bseg     WITH HEADER LINE.
    DATA: BEGIN OF t_pre_bal OCCURS 0,
          netpr TYPE bseg-dmbtr,
          sgtxt TYPE bseg-sgtxt,
          lifnr TYPE bseg-lifnr,
          END OF t_pre_bal.
    DATA: t_pre_bal1 LIKE t_pre_bal.
    DATA: BEGIN OF t_temp OCCURS 0,
          netpr TYPE bseg-dmbtr,
          sgtxt TYPE bseg-sgtxt,
          lifnr TYPE bseg-lifnr,
          END OF t_temp.
    DATA: BEGIN OF itab OCCURS 0,
          gjahr LIKE bsik-gjahr,
          belnr LIKE bsik-belnr,
          budat LIKE bkpf-budat,
          sgtxt LIKE bseg-sgtxt,
          lifnr LIKE lfa1-lifnr,
          netpr LIKE bseg-dmbtr,  " Net Amount
          inamt LIKE bseg-dmbtr,  " Interest Amount
          tdamt LIKE bseg-dmbtr,  " TDS Amount
          END   OF itab.
    RANGES: r_budat FOR bkpf-budat.
    I have Included vendor(LIFNR) in all these structures.Now I am using three internal tables to hold opening balance, Closing balance and line item accounting documents from bseg table respectively.here, I need to collect all these three internal tables into one internal table according to vendor(LIFNR)  with it's opening balance, accounting documents and closing balance. can anyone guide me through this so that I can collect all these three internal tables into single one.
    Thanks & Regards,
    Harshada Patil
    Edited by: Harshada.up on Feb 15, 2011 9:33 AM

  • Confirmations report for PO line items.

    Hi All,
    I have a PO which contains one sinlge line item and have put the confirmation contrl.ket as 0001/Z001 and Confrimation control as LA. we have created some 10 confirmations schedules on different dates with different qty.Inbound delivery has not yet created in the system for this line item.
    Now i would like to see these 10 schedule line confirmations in the report i tried with EKES it displays but i need some T codes which can show this report.Please let me know if any one has any idea of this or else we need to develop the program ? if yes tehn tell me wat are all teh tables we need to consider / join.
    Thanks,
    John

    Hi Prashant,
    I need the T code not the table.
    thanks for your reply.

  • Automatic Time Confirmation for an operation in a Maintenance Order (IW41)

    Hello,
    We have a requirement to do automatic time confirmation (while saving the order) on an operation when the user selects "DONE" standard text key on Operation line item. Is there a user exit or BADI available in Plant Maintenance that can be used for Automatic time confirmation?
    I went through some of the user exist/BADI in PM and didn't find anything for automatic time confirmation. The only thing that I found useful was user exit CONFPM03 (which allows to carry our own checks once and operation is selected for confirmation).
    Appreciate your responses. Thanks

    Hi ,
    Normally thru confirmation we enter actual hrs worked in IW41 .. but if you do not want to run that tcode then not sure of any BADI but i would suggest you to create a Z Programme which runs as a batch job at some 30min everyday . The Z Programme checks all the PM orders of particular order type  which are with  released status and then gets into operations and checks for standard text and if its value is DONE then calls programme SAPLCORU - IW41 Programme .. you can suitably put a variant for that batch job .. plz check the option with ABAPer ..
    regrds
    pushpa

  • Change Maintenance Work Order Detail Report in Print WO page

    Hello,
    I would like to ask you for your help. We would like to have different report in Print WO function than Maintenance Work Order Detail Report. I mean SSM responsibility > Search for WOs > click Print WO icon. We applied patch #9871500 (I found it there: Templates associated to datadefinitions other than 'EAMWRREP' are not shown in the Work Order Detail report in EAM [ID 1209703.1]). I did personalizations steps - I defined new data definition (for example TEST) and report with data definition TEST is shown in the option on Print WO page now... But how should I it define to have correct result? What should be defined in Executable, Concurrent Program, Data Definition and Data Template? I have RDF and RTF files for this report. We are using different SQL than it is used in the original report. How could be used our SQL defined in RDF?
    Thanks, Regards,
    Jitka

    Hi,
      1) You can choose to select and Print shop paper when you need.No enhancement is required.
    2) There is not an option in standard to say Print/Not print Long text . You will have to replace the standard form with a custom form and build the logic to print /Not Print long text based on your rules.
    Regards
    Narasimhan

  • How to Change Maintenance Work Order Report in EAM Maintenance Super User

    Hi,
    We like to change or create new costom report in place of Standrd EAM Maintenance work order details report in Maintenance super User Responsibility.
    When we go Maintenance Super User > Work Order > Print work order >Layout , In Template layout we find only one LOV called Maintenance report.
    We like to where this this Template LOV storing and Run button code where it's storing
    THANKS,
    Gana

    Hi,
    You could temporarly adjust the CUNI definition for TST so that it can be converted to seconds. Adjust the notifications to set a valid unit of measure.
    The alternative would be to update the field MAUEH in table QMIH with a valid breakdown unit of measure.
    -Paul

  • Update Time confirmation and Long text of Work Order in single FM or BAPI

    Hi,
    I would like to know, which standard FM or BAPI will update the longtext along with the confirmation text while doing the time confirmation of a work order.
    I have tried with standard BAPI BAPI_ALM_CONF_CREATE for updating the time confirmation. This is updating the time and confirmation text properly but not the long text. I would like to know how can I update the long text while doing the time confirmation. Is there any other standard FM/BAPI will update both?
    Thanks in Advance,
    Mohan.

    There is no standard SAP enhancement we can use for this purpose.
    We have developed another program to maintian the long text in production order.
    This call can be closed.
    Cheers,
    Qiang

  • Intercompny billing for maintenance work orders

    All,
    I have two scenarios dealing with intercompany activities for maintenance work orders. The first scenario involves a maintenance work order in Company B doing work on equipment also in Company B. The work order requires labor services and material from Company A. What is the most efficient way to consume the labor and material into the Company B work order? My client requires intercompany billing anytime labor services and/or material crosses into another company. So for this scenario, should I execute a cross-company labor confirmation and material consumption and then, create intercompany invoicing from this activity? Or, should Company B provide a purchase order to Company A for the labor and material and then, Company A executes intercompany billing to facilitate the correct intercompany financial postings?
    The second scenario requires a maintenance work order settlement from Company A to Company B. How should the intercompany billing be done for this? Should I settle to the cost object in company B and then do the intercompany billing? Or, should I settle to a sales document (i.e., debit memo) and then execute the intercompany billing?
    Pleases advise.
    Thanks!

    Alex,
      You should be able to use the List edit transaction iw38 to select and print Multiple Orders simultaneosuly. Once you have selected the orders in the Output screen, use the menu path ORDER > PRINT ORDER.
    Regards
    Narasimhan

  • To find 'Maintenance Work Center' for Equipment (without Production order)

    Hi,
    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. ]

    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

  • EAM Maintenance Work Order Detail Report

    Hello All,
    I have a requirement to add new fields to the Maintenance Work Order Detail Report which is run from the web page. This report's RTF template works based on the fields which are defined in the seeded data definition. This seeded data defintion has an seeded XSD file with the fields in it. By the RTF template I got the standarad concurrent program name as Maintenance Work Order Detail Report.
    I assumed the following process to happen when the Run button on the EAM work order page is clicked.
    1. Concurrent program Maintenance Work Order Detail Report is submitted
    Executable: PL/SQL Package EAM_WOREP_PUB.Work_Order_CP
    Seeded Data Definition: Work Order Details -- This DD has a seeded XSD file EAMWOREPORT.xsd
    2. So the RTF template based on the pl/sql package and the XSD file generates the report and displays.
    Please correct if my assumptions are wrong.
    I want to add new fields to this report. So I have customized the pl/sql package, modified the code with new fields and created a custom data defintion with a new XSD file with the new fields added in it. Also created a new template linked to new data defintion. After doing all this I am not able to see the new fields on the report generated they come as NULL.
    My question is Is it feasible to add new fields to this Maintenance Work Order Detail Report or we can use only the fields which the seeded one gives?
    Version: R12.1.2
    I tried and tried but couldn't find a solution to it. If anyone has faced the same issue please let me know.
    Thank You!!

    IW47 should give you the required information.
    Regards
    Narasimhan

  • Is there any way to generate Cost report at maintenance work order level

    Hi,

    Ramesh,
      I am guessing those info cubes will only be populated, if Operational level costing has been activated in ECC 6.0 or it may just be the activity cost(Not necessarily the operation cost). This is because in standard, cost on the maintenance order is ONLY CAPTURED at Header level.I don't think you have operational level costing activated.
      You could create your custom reports for time entry by capturing the operation number is any one of the unused fields and then using it for collecting the cost at operational level. The same can be done for service entry sheet. You could use a unused field (Ex: Reference number) to capture the operation number and use the same for your reporting needs.
      You may have to do the same for other cost capturing objects like gods movements, Po's and Overheads(Just split the entire ovehead and apply it across the Operation).
      Using proper validations on save of various transactions and implementing a custom report it is possible to get the same.However, unless you activate operational level costing you wont be able to get any standard reports.
    Hope it helps.
    Regards
    Narasimhan

  • Is there a process for moving costs from maintenance work orders to capital

    Is there a process for moving costs from maintenance work orders to capital projects?
    We have reversed the settlements on the work orders, and then trying to put the relevant NWA in , then receive error message :
    Rule for allocation of PM order to PS network is not maintained.

    hi
    check the allocation structure and the settlement related customization settings.

Maybe you are looking for