Is this report feasible either in Bex or web reporting?

I've following records in cube.
Material Date Qty
Mat1 04/30/08 400
Mat1 05/04/08 500
Mat1 05/05/08 650
Mat1 05/06/08 720
I'm looking for a report as follows. Is it possible?
rows----
Qty in columns restricted with date
Material----
          05/04/08  05/05/08  05/06/08
Mat1----
                100       250         320 
above derivation is based on  - "qty" in columns restricted with date but also "qty" up-to-date needs to be substracted from ( prior-month-end which in our case is 4/30/2008 qty).
Material------- 05/04/08  05/05/08  05/06/08
Mat1----
500-400  650-400    720-400 
so, for example, 05/05/08 Qty (650) column needs to be substracted from 4/30/08 Qty  (400) for the output of 05/05/08 column which is 650 - 400 = 250
I've created user exit variable on date to determine prior-month end date so, i'm getting 4/30/08 in our case into this date user exit variable.
but, my problem is, as long as i put date in columns which is restricted with user-input range as 5/4/08 to 5/6/08, I'm unable to get qty of 4/30/08 into the columns for substraction purpose.
Is there a workaround to get this? I'm trying either in BeX query or Web reporting (we don't want to use excel macros to achieve this)
Appreciate any help.
Hari Immadi
http://immadi.com
SEM BW Analyst

dear Bhuvana,
please take a look this 'how to hide column' doc,
using table interface (abap class se24)
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f0aca990-0201-0010-0380-f3aac4127a57
and search with 'more than 60 char' with 'sdn forum' may lead to some thread discuss this
Concatinating text char
60 Character Limitation - Dirk Herzog please help
Bypassing 60 char limit in an InfoObject
How to show character length > 60 ,If we split and distribute..??
hope this helps.

Similar Messages

  • Multiple Column Header in Report (BEx and Web Reporting)

    Hi All,
            I've a requirement where my reports is having multiple column header.
       To be precise the column header is further divided into many sub-columns (upto 4 levels).
    Structure cannot help in this case since we have more than 2 such columns and we are using web reporting as well.
    Here is how it looks
                             <b>Header-A</b>
    Header-B1   |   Header-B2   |   Header-B3    |  Header-Bn
    Hdr-C1 |Hdr-C2 |Hdr-D1 |Hdr-D2 |Hdr-E1 |Hdr-E2 |Hdr-Fn..
    The above is a sample header structure.
    This report will be a Web Based report and I need to know whether its possible to do it in BEx also.
    We are not using Crystal Reports.
    If there is any document related to this, please mail to
    [email protected]
    Thanks & Regards,
    Chandran Ganesan

    Hi Chandran,
    I hope i am getting your problem right.
    If your
    Header-B1 | Header-B2 | Header-B3 | Header-Bn
    Hdr-C1 |Hdr-C2 |Hdr-D1 |Hdr-D2 |Hdr-E1 |Hdr-E2 |Hdr-Fn..
    are a set of key figures, then there is an option.
    For example:
    You drag Header-B1,Hdr-C1 |Hdr-C2
    into column section.Right click on Hdr-C1, Hdr-C2 and select down under. So your Hdr-C1, Hdr-C2 will be under
    Header-B1.
    Like wise drag Header-B2,Hdr-D1,Hdr-D2
    Right click on Hdr-D1,Hdr-D2 and say Down under and these two will fit below Header-B2.
    You can repeat the above steps for Header-B3... Header-Bn
    The output will be same as the one you have specified above.
    Hope it helps,
    Regards,
    Parth.

  • BEX vs Web reporting

    Hi,
    I would like to know why the result of a query is quicker using web report than the BEX?.I'am looking for technical information on this topic.
    Thanks for your Help

    Hi Olivier there is a good document on front-end performance on SAPNET (alias /bi) under the <u>Performance</u> Heading entitled <b>Frontend Performance</b>
    Use following link to get there.
    https://websmp105.sap-ag.de/~sapidb/011000358700001394912002
    Regards Andrew.

  • Webi report on OLAP Bex query -  Cost element Hierarchy not working Drill down

    Hello,
    We have a BO report on Bex query, Not on universe, we have a Hierarchy for Cost Element Group, and we are expecting the Drill down functionality for that in BO report, but it does not.
    Webi report on OLAP Bex query -  Cost element Hierarchy not working Drill down
    Any pointers how to do it please
    Thanks
    Krishna

    Hi,
    WebI reports on BEx source don't use same Drill feature as other sources, it's replaced by expland/collapse of hierarchy nodes (documented in WebI user guide in § "24.1 Drill defined"). This means you have to create query which selects all hierarchy sub-tree you plan on exploring later in report, otherwise if no data is available under a node there will be no '+/-' sign to visit this part of tree.
    You could try first to select "All members" from hierarchy in QueryPanel and see if behavior in report suits your needs. Then you should restrict hierarchy member selection to what's really needed to avoid performance issues.
    Regards,
    Loic

  • Data Different in Web reports and Bex Report

    Dear Experts,
    We found that the data in web reports is not in line with BEx reports, The Infoprovider is same the query is same. But when we are executing reports with same varialbes in BEx and Web reports, they are showing different values.
    COuld you please let us know what could be the possible reasons for the above criteria, and how to overcome it?
    Regards,
    Rajni

    Hi Rajni,
    Clear the cache memory and run the web report agian.
    Hope it helps,
    Thanks ,
    Uday.

  • Want to schedule WebI report for End date of Prior Month

    Hello Experts,
    We have WebI report created on top of Bex Query, We have key date as prompt for the report. Can we schedule the webi report for key date as last date of prior month, so if current month is February, my key date should be Jan 30 2011. I am not sure if this is possible?
    Thanks,
    Ravi

    You need to apply two FM to get the end day of the month.
    First you need to apply FM MONTHS_PLUS_DETERMINE. This will give you the date after 3 months.
                CALL FUNCTION 'MONTH_PLUS_DETERMINE'
                  EXPORTING
                    MONTHS        = 3   " << for 3 months
                    OLDDATE       = l_start_Date   " << 12/01/2007
                 IMPORTING
                   NEWDATE       = l_3_Date. " << 02/01/2008
    Then call the FM RP_LAST_DAY_OF_MONTHS . this will give you the end date of the month
      CALL FUNCTION 'RP_LAST_DAY_OF_MONTHS'
        EXPORTING
          day_in            = l_3_Date  " << 02/01/2008
        IMPORTING
          last_day_of_month = l_3_Date  " < 02/29/2008
        EXCEPTIONS
          day_in_no_date    = 1
          OTHERS            = 2.
    Call both FMs again to get your another date(after 4 months).
    Regards,
    Naimesh Patel

  • Webi Report scheduling issue

    Dear Experts,
    I have webi reports which are running fine when i refresh the query from query panel. When i am scheduling the report it is failing.
    My webi reports are connected to the Bex Queries using OLAP Connections which is working fine for other reports.
    I am getting the following error message
    "Can not connect to the source olap com.sap.conn.jco.JCoException: (103) JCO_ERROR_LOGON_FAILURE: Access key access is no longer possible"
    Because of this BW Credentials are getting locked and user cannot able to access the BW System.
    Kindly help us getting this issue solved.
    Thanks in advance.
    THanks & Regards,
    Archit Sarwal

    Hi Archit,
    Try this...
    Logon to Central Management Console (CMC) with an Administrator user.
    Click on OLAP Connections.
    Right click on the connection and click User Security.
    Assign Full Control to the User on the connection.

  • Line graph issue in web report

    Hi
    I have a 3 queries/reports on one page in my web report. I have 3 line graph buttons, one for each query.
    My issue is, in the report result or table, I have characteristic "Product" in rows and Key figures in Columns.
    Product                          Month 1     Month2      
    XYZ          Demand
                 On hand stock
                 Ending Inventory
    But when I hit the line graph button, it shows Product in the X (horizontal) axis and number ranges like 15000, 20000, 25000 in the Y axis.
    I need to swap the axes. I tried the "swap display axis" in the web items tab, but it didn't work.
    I read other threads on the same topic here and someone had suggested creating a query view, switching the columns and rows there and running the report to display the line graph as required.
    If I do that, won't the report result in the table also swap the rows and columns? I want the table to show Product in the Rows and KFs in the column as it is now, but I want the line graph to show Product in the Y axis and the Key figures in the Y axis.
    Any ideas on how to do that? Any help will be greatly appreciated. Thanks!
    Pooja

    This is what I did:
    1) In BEX Analyzer, I opened the local view of the Query and swapped the Key figures and Characteristics. I put the key figures in the columns and Characteristics in the Rows
    2) I ran my report and save it as a View
    3) In WAD, I assigned the Chart to the View.
    When i ran the report from WAD, it still shows the key figures or number ranges in the Y axis and Characteristics on the X axis again.
    I checked the "swap display axes" option in Web Item tab, but the line graph still remains the same.
    Is there another way to do this? Or am I missing something?
    Thanks
    Pooja

  • Need Information on "Web Reporting in Portal"

    Hi Experts,
                    I want to gain more knowledge on the reporting side. Is there any   reporting strategy that talks about Portal, web reporting and the Business Explorer. What is the best practice for reporting in NW 04's in most corporations? Is there any case studies? If someone can provide me with that info. will be a great help for me. Forum points are guranteed. Thanks
    Padma K

    Hi Padma,
    Most of the Organizations are moving towards web reports due to the following advantages:
    1. The web query can be used without the GUI installed on the system. For Bex you need the SAP GUI installed.
    2. As per SAP the web queries run faster than the bex query.
    3. Bex uses excel which has a limitation of 65,536 rows where as your web query does not have that limitation.
    4. The web query can be accessed from any browsing cafe also which is not the case with Bex Query.
    Another important point is that you get EP(enterprise portal) by default installed with BI 7.0(ABAP+Java stack). So EP is used for publishing the web reports. The trend and the recommendation from SAP is to use EP for BI web reports. In most of the cases you would have a separate EP consultant apart from a BI consultant. The web report created by the BW consultant is published as an iview by an EP consultant.
    BW with EP - Check these docs:
    https://websmp101.sap-ag.de/~sapdownload/011000358700002894802003E/HowToBIPortal1.pdf
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/2482b090-0201-0010-d080-aec6c02ce8f9
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/dc1d9990-0201-0010-16aa-db3c4eb8b642
    Hope this helps.
    Bye
    Dinesh

  • Slow opening Webi reports

    We use BEX queries to supply our universes with data and use criteria at the BEX level. Usually when we open a report it takes about 5 seconds to open the report and present the BEX criteria screen, then run the report.
    We recently applied fix pac 2.7 (we use 3.1XI sp2) Webi Rich Client) and now the time to open the report to the BEX criteria screen is 160 seconds. Has any one encountered this type of performance issue?   Are there any confiuration changes that need to be done to avoid this issue.
    Thanks
    Barry

    Slow opening of Webi reports is generally due to slow java initialization process. You can stop the un-necessary Java processes and try increasing JVM.
    I hope it would speed up the process.
    --Kuldeep

  • Weird behaviour of WebI Report

    Hi All,
    I have created a Webi report on top of BEx Query. Report is working fine,but when we ran the first time it is throwing an error stating that  " No Data to be displayed", but if i ran again( with same prompt values) then it is showing me the data...after that i tried with changing the prompt values then it is displaying data..
    so for the first time i am getting this error
    Can anyone help me out why the report is behaving in such a way...
    Regards,
    Rajesh

    Thanks  Wavery,
    I tried that option also, But every first time  we run it is showing the same message.. second time if i click refresh it is displaying data.
    In Bex side there is no problem...
    but its strange... i created a new report then it is working fine....still unable to undertand why i am getting that message

  • WebI reports with BW Aggregates

    Can someone please explain how do WebI reports work with BW Aggregates? Let's say I create a BW aggregate and create a BeX query on the aggregate and then create a universe on this BeX query and then a WebI report on this universe, now when I run the WebI report, where will the data source from - the aggregate or the actual BW infocube?
    Thanks for your help.
    Ameya Kulkarni

    Thanks Amr for the promt response. I will be creating my universes on query so I think BW will fetch the data from appropriate aggregate when user executes the report in WebI.
    Do I have to create my queries on the aggregate for this to happen? Or will WebI know which aggregate to go to fetch data if I create my BeX query on the actual infocube instead of the aggregate?
    Please let me know.
    Ameya Kulkarni

  • SAP BW BEx query - WEBi MDX query

    Hi Experts, have we had some discussion on this?
    Does MDX query send by WEBi report to BW use the same program to extract data from BW database?
    One of the option for WEBi report source of data is to build Universe on top of BEx query. Could you share how this process actually happen.
    I think
    - WEBi query will pass parameters that is relevant for BEx query filter of the universe
    - the BEx query will then extract the data (following normal process if we run BEx query independently)
    - if WEBi has further filtering, it will then get the BEx result above and filter it further ..??
    So, how is MDX query come into the picture?
    Or is it:
    - WEBi query and the BEx query will determine what MDX query will be generated, and this MDX query will then fetch the data.
    But why BEx query extract data faster then MDX query?
    Sorry, i am new to this. hope someone could share some light here. In the meantime i continue to real those documentation and try to get some more ideas of what is actually happening.
    Thanks.

    Hi Thanks a lot for pointing this out.
    Did i understand it correctly that BEx query is using a different set of program (platform) to retrieve data compare to MDX query, and not MDX uses those program that is used by BEx to retrieve data from BW database and have extra steps on top of that?
    Can anyone share what is actually happen WEBi MDX query is executed (how the database is hit with SQL, and what are the tools to evaluate the efficiency of the WEBi (or the used BEx). As for BEx we have RSRT to analyze it right.
    And even to test the MDX query using MDXTEST and try to get the data from WEBi report, i found WEBi report still take considerably a lot longer. Why is this so? just because BO is a different system then BW?
    And as it's shared the BO 4.0 is using the same platform as BEx to retrieve data from BW database, does this mean we don't need to care about MDX usage in BW anymore as far as BO data extraction concern?
    Thank you very much.

  • Error while executing webi report

    Hello Experts,
    I created a universe using SAP BI query. Now I am using this query to create webi report. so while creating webi report i select 1 characteristics and 1 key figure from the universe and putting them on result objects pane.
    After putting these object when I execute the report i get following error:
    Database error: SOFA Driver : Catastrophic failure. Contact your Business Objects administrator or database supplier for more information. (Error: WIS 10901)
    Can anyone suggest me how to resolve this error?
    Regards,
    Nirav Shah

    yes, underlying queries work perfectly fine. Universe are created without any issue. However,in WebI, when I drag the any TWO objects under any class or even combination of one object and one measurement key, as soon as I refresh query, the error pops up. If there is JUST ONE object, no issue at all. I can see the data.
    Mean...if there is more than one object in any WebI report, the error is thrown by WebI report. And this happens only while running WebI against SAP BW/BI, query or against any InfoCube.
    Thanks

  • Hiding variables in WebI report

    Hi,
    We have generated an Universe based on a BW query which has 5 user entry variables with user exit logic coded for each one.
    Based on this Universe we wish to create 2 WebI reports.
    However, for the both the reports all the 5 variables are displayed.
    Is there a way to hide the variables, so that on the first report we see two variables and on the second WebI report we are able to see the remaining three variables.
    For all 5 variables, we have some logic on the BW user exits and hence we want to leaverage the BW variables and not opt for the WebI variables.
    Rgds

    Hi Free Will,
    How did you manage to hide the variable, we have a similar issue,  I have created a BW variable that is populated by Customer Exit. The problem is, for the query to be filtered in the Webi Report it the variable has to be defined as "input ready", and this allows the users to change the data in the variable which I don't want them to do. If I don't make it input ready the WebI Report is not filtered.
    If we could hide the variable it would solve our problem
    Thanks in advance
    Lucien

Maybe you are looking for