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

Similar Messages

  • 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

  • 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

  • Report for Order and spare parts

    Hello every one, i am looking for a report which can tell me order number wise use of spare parts. It can be either in order or some seprate report. I have not find any such report till yet. Kindly help me in this.
    Regards
    Abhishek

    Baed on the requiremtns given, IW13 can also be auseful report for you.
    SM

  • 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.

  • Purchasing report for orders with GR

    Hi All,
    I need to do reporting on the purchasing values only for PO item with movement type 101,102 and few other related to GR.
    Objective is only PO items where item goods receipt has happened.
    Will the 2LIS_01_ITM do with BWVORG? Or any other extractor needs to be used
    Regards,
    Pal

    You can do it either in data loading level using routine or at Report level.
    I prefer doing it at data load level  ,like manasi said..write routine to filter out unwanted movement types.
    Better keep dso in your model and between dso to cube you write this so that in future you enhance it then you just need to modify the logic between the dso and cube..
    Regards,
    RK

  • 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

  • Passing parameter in report for order by clause

    how can we pass the name of the column on which we want the order by clause to sort as a parameter through parameter from in a report??

    Hi Guptha,
    We can create a bind parameter in report and we can send it as a parameter or enter in the parameter form.
    The Query will be
    select * from emp
    order by :Order_Bu_Column
    I think it will help you.
    Regards,
    Siva.

  • PM module report for Order Cost with details of Components

    Dear Gurus,
    Is there any report in standard SAP to get cost of an Order along with the details of components used with cost.
    Thanks.
    Shailesh Panchal

    Hi,
    Service order , you can go to IW33 , extras -> cost report - planned /actual comparison
    production order , you can go to co03 , goto->cost -> analysis
    Thanks,
    sudhakar

  • Report for conformation cancelled process orders.

    Hi frnds,
    I need a report for orders which have got cancelled of confirmation.
    plz suggest...
    Robert.

    Dear,
    There is no standard report in SAP which shows Report for conformation cancelled.
    But you can check in order it self in COR2 good movement details.
    Or  check document in MB03
    Use CORS to reverse the phases.
    After canceling if you want to view it again then use CORT (here there is one check box named 'Reversed' means that phase is reversed).
    Or Please use user exit
    EXIT_SAPLCORF_404 Process order conf.: Customer specific input checks 2
    Regards,
    R.Brahmankar

  • Order report for all components & services with plan/actual price

    Dear all Hi,
    I want to see a report which should give me the all the details of components & services cunsumed with their paln& actual costs for a production order, please suggest/help.
    Thanks in advance.

    Hi,
    You can get order wise costing report as following :
    Go to Production-->Shop Floor Control>Information System>Controlling Reports->Product Cost by Order where you will different drilldown options for getting costing report for orders.
    Hope this helps.
    Regards,
    Tejas

  • Is there a way I can add sales tax to the custom report I'm creating for orders?

    We have two customers that want to implement sales tax to the order details when generating a custom report for orders. I don't see any option to do so, but maybe I'm missing something. Is it possible?

    Hi,
    Nope your not missing anything its just not available at this stage.
    I'll pass this feedback to our dev team while I can’t guarantee this request will be developed right away, please keep an eye on the BC Blog and forums for the latest news on upcoming updates, including feature requests such as yours.
    Our product management team are monitoring a range of channels and speaking with a large group of existing Partners to ensure we’re headed in the right direction.
    Kind regards,
    -Sidney

  • Cogs report by order

    Hello All,
    How can I create a query where I can create a report for COGS  by production order with maximum break down of all costs incurred. I.E. details of costs like material costs,overhead etc....
    What tables gives me all these values.where can i get all the information required as mentioned above.
    Please post anything related as well.
    Thanks,
    Sai.

    do you really need COGS (cost of good sold) or you actually need COGM (cost of goods manufactured) ?
    I think the line item reporting for order (KOB1) is giving all the details you need.
    Paolo

  • Report for forecast, currenct stock, sales orders, confirmed production

    Follwing is the mail from user.
    Please confirm what are the report should I refer to to fulfill user requirement.
    I don't want to download the data from the tables directly.
    Can I please request for a report to be compiled and extracted from SAP showing the following data for the entire co code 1200 SKU range :
    Forecast - forecast data for the up coming 2 week period
    Sales Order - sales order data currently available for the upcoming 2 week period
    In transit - data showing all volumes in transit into ABO from all supplier sources, but predominantly from XXXXXX
    Production (Confirmed) - forecasting data that has been confirmed and signed off for production for the upcoming 2 week period
    Stock on Hand - Current stock on hand in ABO and the SA and WA warehouses
    Can I also request for this report be run and cascaded, capturing data available at 6:00am each day.
    Your feedback would much be appreciated.
    Thank you.

    Can I get the table & fields for the report.
    As I think we need to create zreport.
    For current stock I can get it from         MARD - LABST
    For Stock in transit from                      MARD - UMLME
    In need table &  field details for
    confirmed prodcution ( for 2 weeks)
    Sales orders (for 2weeks)

  • Report for mass interruption of partially confirmed orders in PPDS?

    Hi gurus,
    our client has a lot of partially confirmed orders in the past, and this is giving us problems with the optimizer.
    Is there a report for mass interruption of this orders?
    We can do it one by one in the DS planning board, but there are too many!
    would appreciate any help,
    Pablo

    Hi Pablo,
    I would suggest you can close the partially confirmed orders at R/3 itself
    so that it will update in APO via CIF.
    There is delivery complete indicator in R/3 production/process order which
    upon checking will close the order.
    Regards
    R. Senthil Mareeswaran.

Maybe you are looking for