Price trends report

Hi All,
I have a requiremnt in BEx report.  I need to develop a report Having today sale price, YTD sales average price and seasonal average price are three columns.   How to get this done.
And In RRI when we click on today sale price it opens another report with all details of sales invoice. like that for all three columns.
I am using BEx 7.1 and BI 7.0 My industry is Sugar.
Please give the directions to get developed.
Thanks In advance.

I need to compare the price value and according the exception shoud work rather than giving constant exception values.
Hence the higest price exception colour could be in GREEN and lowest price exception colour could be in RED.
Any Idea from anybody....?
Regards
Raju Saravanan

Similar Messages

  • Reg: Exception  - Price Trend Report

    Friends
    Presently i am working in MM report "Price Trends"
    In this report there is row called, price (I.e) (Invoice Amount / Invoice Quantity).
    i am showing price trends for last 12 months.
    My Requirement is,higest & Lowest price in row wise should have exception colors.
    Can anybody let me know, how to go with this exceptions without giving constant values in Exception.
    Points will be awarded for Right answers
    Regards
    RAJU SARAVANAN

    I need to compare the price value and according the exception shoud work rather than giving constant exception values.
    Hence the higest price exception colour could be in GREEN and lowest price exception colour could be in RED.
    Any Idea from anybody....?
    Regards
    Raju Saravanan

  • Standard Report for Price Trend?

    Hello Friends,
    Is there any standard transaction for Price trends of major raw materials
    for last 6 months and Price Trends of  product  for last 1 year
    Points will be awarded.
    Thanks.

    Thanks for the reply,
    The transaction u provided to me solves the purpose but not fully. Still in the transaction MM60, i cannot enter the period of my choice, so is there any other chances or transaction. Or do we need to develop the report from the scratch. Can u also provide me any transaction if you know for the product price trend.
    Looking for the reply.
    Thanks.

  • Purchase Price comparicion Report

    Hi,
    If any standard Sap Purchase Price comparicion Report are there in Sap. plz give me t Code

    Hi,
    You can find the prices for various POs in T_code ME1P with variance.Also in T_code ME81.
    Hope this will help you.
    Regards,
    Goraksh.

  • No Daily Sales/Trend Report for today?

    Has anyone received your iTunes Connect Daily Sales/Trend Report for today (1/25/10)? I have not received mine yet. First time it hasn't been up at this hour.
    It usually arrives at 2:30am (it's 9:30am here now) or if it's delayed, usually in another region, there's a note in big red text on the reports page.

    As I recall (back when I only had a few apps just starting in the store), yes, no daily sales means no daily report. Wait for the weekly report to confirm.

  • AR Aging Trend report data through backend tables

    Hi,
    We have the AR Aging Trend report live and running. The report is optimized to the maximum but during the month end closing time the report generate a lot of timeout/proxy errors. Later we understood that the users are actually using the report to dump the data out to an excel. As this report is giving problem, there is a requirement which has come to give the AR Aging data from the back end tables. As per our current flow we have the 0FI_AR_4 data source giving data to a DSO called Customer Line Items. Now i need to generate the data from this DSO to another DSO with a particular company code and open items in filter and day should always point to last wednesday. That means, even with the AR aging trend report user is running the report using always last wednesday as the key date. Now if i want to load the data from the DSO to another DSO how can i load the data for last wednesday given any system date.
    Regards
    Vijay

    solved

  • Purchase order price change report

    Hello
    How to retieve the purchase order price change report ? do we have any standard report for it or any table which gives these data?
    kindl

    HI
    Have you activate version management at your end for PO,i think this will help you to track changes of PO for qty,price etc.
    [http://wiki.sdn.sap.com/wiki/display/ERPLO/Version+Management]
    Regards
    Kailas Ugale

  • PO Price History Report

    Hello.  I'm trying to develop a PO Price History Report for our compnay  based on ME1P. This is the format I want my report to look something like this:
    h5Material Code    Mat.Description   Vendor Code   Vendor Descrip.    Qty    Price/ea   PO Number    Date
         1111111111     abcaba                 11111               abc abc abc          1      KWD 195  1010001002   21/05/2010
                                                               11111               abc abc abc          2     KWD 196  1010001003   21/04/2010
                                                                                    21111               bcd bcd bcd          1      KWD 195  1010001006  21/05/2010
    Total Qty:
         2222222222    xyz xyz                  11111               abc abc abc          1      KWD 195  1010001002   21/05/2010
                                                               11111               abc abc abc          2     KWD 196  1010001003   21/04/2010
                                                                                    21111               bcd bcd bcd          1      KWD 195  1010001006  21/05/2010
    Total Qty:
    This is the coding I've done so far:
    REPORT  Z_MM_POHISTORY.
    TABLES: EKPO, EKKO, LFA1, MAKT.
    TYPES : BEGIN OF tw_ekpo.
            INCLUDE STRUCTURE EKPO.
    TYPES : END OF tw_ekpo.
    types : BEGIN OF tw_ekko.
            INCLUDE STRUCTURE EKKO.
    types : END OF tw_ekko.
    TYPES : BEGIN OF tw_LFA1.
            INCLUDE STRUCTURE LFA1.
    TYPES : END OF tw_LFA1.
    types : BEGIN OF tw_MAKT.
            INCLUDE STRUCTURE MAKT.
    types : END OF tw_MAKT.
    types : tt_ekpo type STANDARD TABLE OF tw_ekpo, tt_LFA1 type STANDARD TABLE OF tw_LFA1, tt_MAKT type STANDARD TABLE OF tw_MAKT,
            tt_ekko type STANDARD TABLE OF tw_ekko.
    data : lt_ekpo type tt_ekpo, t_LFA1 type tt_LFA1, t_MAKT type tt_MAKT,
           lt_ekko type tt_ekko.
    data :  begin of lt_mix OCCURS 0,
            bedat type ekko-bedat,
            matnr type ekpo-matnr,
            werks type ekpo-werks,
            lgort type ekpo-lgort,
            EBELN type ekpo-EBELN,
            menge type ekpo-menge,
            BUKRS type ekKO-BUKRS,
            EKORG type ekKo-EKORG,
            NETPR type ekPO-NETPR,
            STATUS type ekpo-STATUS,
            LIFNR type ekKo-LIFNR,
            Name1 type LFA1-Name1,
            MAKTX TYPE MAKT-MAKTX,
            SPRAS TYPE MAKT-SPRAS,
            end of lt_mix.
    data : begin of lt_final OCCURS 0,
            bedat type ekko-bedat,
            matnr type ekpo-matnr,
            werks type ekpo-werks,
            lgort type ekpo-lgort,
            EBELN type ekpo-EBELN,
            menge type ekpo-menge,
            BUKRS type ekKO-BUKRS,
            EKORG type ekKo-EKORG,
            NETPR type ekPO-NETPR,
            STATUS type ekpo-STATUS,
            LIFNR type ekKo-LIFNR,
            Name1 type LFA1-Name1,
            MAKTX TYPE MAKT-MAKTX,
            SPRAS TYPE MAKT-SPRAS,
            end of lt_final.
    selection-SCREEN : BEGIN OF BLOCK blk01 WITH FRAME TITLE text-001.
    select-options : P_ORG FOR EKKO-EKORG, C_CODE FOR EKKO-BUKRS OBLIGATORY, PLANT for ekpo-werks, MATNR for ekpo-matnr,
                     PDOC_NO FOR EKKO-EBELN, PDOCDATE FOR EKKO-BEDAT OBLIGATORY, STATUS FOR EKPO-STATUS, LANG FOR MAKT-SPRAS,
                     VENDOR for ekKO-LIFNR.
    selection-SCREEN : end OF BLOCK blk01.
    START-OF-SELECTION.
      select a~bedat A~EKORG B~STATUS b~matnr b~werks b~lgort b~EBELN b~menge a~bukrs d~spras d~maktx a~lifnr c~name1 b~netpr
       into CORRESPONDING FIELDS OF TABLE lt_mix
        from EKPO as b INNER JOIN ekko as a on b~EBELN = a~EBELN
       JOIN LFA1 AS c ON c~LIFNR = A~LIFNR
       JOIN MAKT AS d ON d~MATNR = b~MATNR
       WHERE
       A~BUKRS IN C_CODE AND A~BEDAT IN PDOCDATE AND a~ebeln IN PDOC_NO AND D~SPRAS IN LANG AND b~matnr IN MATNR
      SORT lt_mix by matnr LIFNR BEDAT ebeln.
      loop at lt_mix.
        lt_final = lt_mix.
        AT END OF menge.
          SUM.
          append lt_final.
        ENDAT.
      ENDLOOP.
      LOOP AT lt_final.
        write: / lt_final-MATNR, lt_final-MAKTx, lt_final-LIFNR, lt_final-NAME1, lt_final-MENGE, lt_final-NETPR, lt_final-EBELN, lt_final-bedat.
        at END OF matnr.
          sum.
          skip.
          ULINE.
          write: / 'Total qty', lt_final-menge, 'Total Price: ' , lt_final-netpr.
          ULINE.
          SKIP 2.
        ENDAT.
      ENDLOOP.
      IF sy-subrc ne 0.
        WRITE: 'No records found!'.
      endif.
    When I run the report, Materials with same PO date are grouped together but the same material with another date doesn't get added to that group.
    I would really appreciate if anyone could help out.

    REPORT  Z_MM_POHISTORY.
    TABLES: EKPO, EKKO, LFA1, MAKT.
    TYPES : BEGIN OF tw_ekpo.
            INCLUDE STRUCTURE EKPO.
    TYPES : END OF tw_ekpo.
    types : BEGIN OF tw_ekko.
            INCLUDE STRUCTURE EKKO.
    types : END OF tw_ekko.
    TYPES : BEGIN OF tw_LFA1.
            INCLUDE STRUCTURE LFA1.
    TYPES : END OF tw_LFA1.
    types : BEGIN OF tw_MAKT.
            INCLUDE STRUCTURE MAKT.
    types : END OF tw_MAKT.
    types : tt_ekpo type STANDARD TABLE OF tw_ekpo, tt_LFA1 type STANDARD TABLE OF tw_LFA1, tt_MAKT type STANDARD TABLE OF tw_MAKT,
            tt_ekko type STANDARD TABLE OF tw_ekko.
    data : lt_ekpo type tt_ekpo, t_LFA1 type tt_LFA1, t_MAKT type tt_MAKT,
           lt_ekko type tt_ekko.
    data :  begin of lt_mix OCCURS 0,
            matnr type ekpo-matnr,
            bedat type ekko-bedat,
            LIFNR type ekKo-LIFNR,
            werks type ekpo-werks,
            lgort type ekpo-lgort,
            EBELN type ekpo-EBELN,
            menge type ekpo-menge,
            BUKRS type ekKO-BUKRS,
            EKORG type ekKo-EKORG,
            STATU type ekKo-STATU,
            WAERS TYPE EKKO-WAERS,
            BPRME TYPE EKPO-BPRME,
            NETPR type ekPO-NETPR,
            Name1 type LFA1-Name1,
            MAKTX TYPE MAKT-MAKTX,
            SPRAS TYPE MAKT-SPRAS,
            end of lt_mix.
    data : begin of lt_final OCCURS 0,
            matnr type ekpo-matnr,
            bedat type ekko-bedat,
            LIFNR type ekKo-LIFNR,
            werks type ekpo-werks,
            lgort type ekpo-lgort,
            EBELN type ekpo-EBELN,
            menge type ekpo-menge,
            BUKRS type ekKO-BUKRS,
            EKORG type ekKo-EKORG,
            STATU type ekKo-STATU,
            WAERS TYPE EKKO-WAERS,
            BPRME TYPE EKPO-BPRME,
            NETPR type ekPO-NETPR,
            Name1 type LFA1-Name1,
            MAKTX TYPE MAKT-MAKTX,
            SPRAS TYPE MAKT-SPRAS,
            end of lt_final.
    selection-SCREEN : BEGIN OF BLOCK blk01 WITH FRAME TITLE text-001.
    select-options : P_ORG FOR EKKO-EKORG, C_CODE FOR EKKO-BUKRS OBLIGATORY, PLANT for ekpo-werks, MATNR for ekpo-matnr,
                     PDOC_NO FOR EKKO-EBELN, PDOCDATE FOR EKKO-BEDAT OBLIGATORY, LANG FOR MAKT-SPRAS, STATU FOR EKKO-STATU,
                     VENDOR for ekKO-LIFNR.
    selection-SCREEN : end OF BLOCK blk01.
    START-OF-SELECTION.
      select a~bedat A~EKORG B~STATUS b~matnr b~werks b~lgort b~EBELN b~menge a~bukrs d~spras d~maktx a~lifnr c~name1 b~netpr a~waers B~BPRME
       into CORRESPONDING FIELDS OF TABLE lt_mix
        from EKPO as b INNER JOIN ekko as a on b~EBELN = a~EBELN
       JOIN LFA1 AS c ON c~LIFNR = A~LIFNR
       JOIN MAKT AS d ON d~MATNR = b~MATNR
       WHERE
       A~BUKRS IN C_CODE AND A~BEDAT IN PDOCDATE AND a~ebeln IN PDOC_NO AND D~SPRAS IN LANG AND b~matnr IN MATNR AND a~lifnr in vendoR
        AND b~werks IN Plant AND a~ekorg IN P_Org AND A~STATU IN STATU
      SORT lt_mix by matnr bedat ebeln lifnr.
      loop at lt_mix.
        lt_final = lt_mix.
        AT END OF menge.
          SUM.
          append lt_final.
        ENDAT.
      ENDLOOP.
      LOOP AT lt_final.
        ON CHANGE OF LT_FINAL-MATNR.
          WRITE: lt_final-matnr, LT_FINAL-MAKTX.
        ENDON.
        write: /60 lt_final-LIFNR, lt_final-NAME1, LT_FINAL-BPRME, lt_final-MENGE, LT_FINAL-WAERS, lt_final-NETPR, lt_final-EBELN, lt_final-bedat.
        at END OF matnr.
          sum.
          ULINE.
          write: /'Total qty', lt_final-menge, 'Total Price: ' , lt_final-netpr.
          ULINE.
          SKIP 2.
        ENDAT.
      ENDLOOP.
      IF sy-subrc ne 0.
        WRITE: 'No records found!'.
      endif.

  • Purchase Price History Report/ OM Price report

    Oracle Gurus,
    Can I maintain a price history for any item-supplier combination, so that it defaults while I prepare a RFQ or enter a quotation in the system? If yes, where can I do this?If no, is there any workaround?
    In future based purchase price history report, will send RFQ to supplier?
    Pleae advise, where we have this option in application.
    Thanks
    AK

    Me1p give u details ie.
    1) A material Purchased at what Price - You can see Price details with Purchase Order wise.
    2) From a Vendor you have purchased which material @ what price
    By using me23n what Price history you want to see.

  • Purchase Price Variance Report completes with error status

    Dear Members,
    I am using R12.1.3 Vision Instance.
    When I ran the report Purchase Price Variance Report, it completed with an error.
    The error message is :-
    Enter Password:
    REP-1212: Object 'F_h_report_date' is not fully enclosed by its enclosing object 'Body'.
    REP-0069: Internal error
    REP-57054: In-process job terminated:Terminated with error:
    REP-1212: Object 'F_h_report_date' is not fully enclosed by its enclosing object 'Body'.
    Can any one please guide me in resolving this issue?
    Many thanks in advance.
    Regards.

    HI,
    Check the below references, it would address your issue
    Purchase Price Variance (Xml) Post Process Failed [ID 1341213.1]
    Report Error Rep-1212: Object 'F_report_date' [ID 567886.1]
    Regards,
    Ivruksha

  • How to get the Price variance report for PO's?

    Hi all,
    Please help me by giving the exact T Code which gives the price variance for the PO's,which must be
    showing the difference between the GR value and the price(std.price) maintained in the material master.
    Waiting for your suggestions.
    Regards
    Mangalraj.S

    Hi,
    Take an easy way, you can go to the PO with t-code ME23N, at tab page PO history of the item detail, you can find the price variance for the item.
    Or you can use t-code MB5S to display the multi-POs' price variance report!
    Cheers
    Tao

  • Formulation in a Price Variance Report

    Hi everyone,
    I had a quick question. Im currently working on a price variance report and and using cube 0BBP_C01 Global Spend Point to Point connection.
    The client wants the Unit of Measure on the PO to be consistent with the Unit of Measure on the Invoice.
    However the Standard price in the Master data is based on the USAGE unit of measure. (Not the Purchase unit of measure)
    I need to convert the USAGE unit of measure (master data) to the PURCHASE unit of measure so that the PO unit of measure is consistent with the INVOICE unit of measure.
    How can I do that? Is there an InfoObject that does that?
    Cheers

    BI 7.0, in transformation in the rule, you can select or define the conversion for the UNIT of measure quantity.
    refer:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/27/b65c42b4e05542e10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/1b/325d4217139041e10000000a1550b0/content.htm

  • Purchasing price variance report

    dear all,
    I have to generate the purchasing price variance report...
    Report to analyze and compare the following data elements from the invoice and standard cost:Period Actual average price per unit.YTD actual average price per unit o current year.YTD actual average price per unit o previous year.Current (actual) standard cost per unit.
    The tables to be used Ekko/ Ekpo/Ekbe.
    Best regards

            Setting of Chartrange and Labelrange (1)
    .ChartRange  = .Range(start, end)
    .ChartRange  = .Range(.Cells(row#,column#), .Cells(.Rows.Count row#, column#))
    .ChartRange  = .Range(.Cells(1,1), .Cells(.Rows.Count-1, 5))
    0
    1
    2
    3
    4
    5
    0
    Label Range
    ** Header names not to be exported to chart **
    1
    4
    3
    -8
    2
    4
    3
    -7
    3
    5
    2
    -6
    4
    7
    21
    -5
    5
    18
    35
    -4
    6
    15
    25
    -3
    7
    20
    16
    -2
    8
    0
    0
    32
    2.5
    5
    -1
    .ChartRange  = .Range(.Cells(2,1), .Cells(.Rows.Count-1, 5))
    0
    1
    2
    3
    4
    5
    0
    Label Range
    ** Header names not to be exported to chart **
    1
    ** data not to be exported to chart **
    -8
    2
    4
    3
    -7
    3
    5
    2
    -6
    4
    7
    21
    -5
    5
    18
    35
    -4
    6
    15
    25
    -3
    7
    20
    16
    -2
    8
    0
    0
    32
    2.5
    5
    -1

  • Sale and trend report is too late?

    Hello every body!
    I often get Apple's sale and trend report is often on the middle of the month (around 10th to 15th). My friend got sale and trend report for January of 2012 a week ago, it's on 9th. But now I still got nothing.
    This make me a little bit worry, is this normal and often happening to you?
    Sorry about my bad English

    The Monthly Financial Reports always show up around the same time....don't panic yet.
    It is best to be patient...always

  • Multiple lines for same app on daily trend report?

    Hey All,
    This is my first app and my first time reading the reports so pardon me if I am confused. I noticed that there are several lines (about 20) on my trend report all for the same App. From reading about the trend reports it seemed like each app was supposed to have only 1 line. Can anyone tell me whats going on? The only thing I can think of is that I switched my primary category so maybe while the app was transitioning strange things happened. Thanks.

    Typical behaviour is that it'll start to drop off a bit. You'll then probably get a boost at the first update assuming your release date gets bumped. Big boosts come from being featured but for most developers that remains a dream.
    Basically it's all about visibility. When you're on the first page of your category people are a lot more likely to buy than when you're on the 10th.

Maybe you are looking for

  • Change richtexteditor backgound-image

    Hi experts. I'm using jDeveloper 11.1.1.6.0. I have 2 richtexteditor in my jspx. The first rte must show img1.jpg (like watermark) in your panel editor (panel blank for edition on richinputtext) and the second rte must show img2.jpg. I want to change

  • Airport stopped working

    My airport express suddenly stopped working.  I've checked for s/w updates and have tried unplugging and re-plugging.  Any thoughts on how to fix? Thanks

  • Frozen Apple logo and Clicking noise

    I reset the Ipod (I believe 5 generation) to factory settings, It now wont show up In I tunes or on my computer for that matter, and Just shows the applue logo and makes a clicking noise.

  • Problem in Calling Subscreens

    Hi, my main screen number is 1001 and in that screen i have a tabstrip with subscreens 1002,1003,1004,1005,1006.Each tab has an ALV... When i click on excute button in my main screen 1001 then i need to call all the subscreens and all the ALV's shoul

  • Applescript can't find files

    Applescript cannot find any files. Whether using Finder's exists command or any other way of trying to access a file, alias or not, it says the file cannot be found. I just had iCal also not be able to find a script that ran just fine yesterday. Noth