Variance Scaling in Query and Web Template Showing Different Results

Hi experts,
I have the following problem - variance scaling in my query and web template are showing different results.
My variance in column is set as follows:
Formula: NODIM(A % B)
Scaling Factor: 1
I have a structure in row that uses Scaling Factor of 1,000.
Let say the value of Column A is 120 and Column B is 100.
When I execute the query, it will show 0.02
However, when I execute the web template it will show the correct scaling i.e. 20.
May I know what can I do to correct above scaling error?
Thank you!

You can not remove the scalling factor, but once you check the checkbox below the dropdown menu, the scalling factor will go away.
I checked at my end and when I set the scalling fact as 1, I was getting 9.9% while I was expecting 9900%. When I removed the scalling factor I started getting 9900%.
I would let you know if I came across anything else.
What about the unit of Column A and B. Are they same or different?
- Danny
Edited by: Danny Matt on Jun 22, 2009 1:54 PM

Similar Messages

  • Authorization to query and web template in BI 3.5

    Hello
    I need to grant users athorizatio to the WEB template and its query. Query is based on Multiprovider.
    Should I save query and WEB template to existing role and grant authorizaion to tis role or I also need to grant authorization to multicube and all cubes underneath?
    Thanks

    Hi,
    You need to assign two objects for authorizing web templates and query..
    S_RS_COMP AND S_RS_COMP1... in both these object you need to assign appropriate roles and activities.
    S_RS_MPRO object to assign authorization to MP.
    Regards,
    Anup
    Edited by: Anup Chaudhari on Dec 3, 2009 8:42 AM

  • Filters Query and Web Template

    Dear All,
    Many reports use filters in both the query and the web template. What
    is the difference?
    Regards,
    KS

    the filter used in query and web templates are same
    there is no difference between filters used.
    as webtemplate uses the same query as its data provider so it is going to run the same filters.
    for e.g. if u have query x then if there are filters in it .
    if u have webtemplate y , and u have to assign a data provider to webtemplate which is nothing but query itself....
    so if u run webtemplate u will at the end execute query x only...
    now wat is filter.
    filter means it will filter out that data.
    for e.g. if u created a variable for calendar month and u restrict it so that user can enter the calendar month value range when they execute query x....
    then if u execute query x
    then upon its execution the variable will pop u p and it will ask u to enter range of calendar months
    lets say u enter 1/2007-12/2007
    so u r query executes and it will only bring data for year 2007.
    now if u wish to see the data of 2006 and try to restrict it in Context menu or Restric screen, then it will display as NO DATA.
    this means it will filter the data for particular year.
    so if u wish to see the data for all years
    then dont create variable and dont restrict Calendar month
    Instead bring calendar month in Free characteristics
    so later u can run the query for different years.
    i hope u understand

  • IE error of query and web template

    Hello experts,
    We had completed the configuration of " Integration into Portal"
    successfully.
    Query and web template can execute successfully via "Execute" button.
    After click "Execute" button, query or web template display the result
    in IE.
    And we can use right-click menu to do all of operation at beginning.
    But after we click the right menu a few times, it will occure error.
    The error information as follow:
    Line : 8914
    Char : 2
    Error: 'initMenus[...].windowHeight' is null or not an object
    Code : 0
    URL : http://jt-
    pldev.gnpjv.cgnpc.com.cn:50000/irj/servlet/prt/portal/prtroot/com.sap.ip.bi.web.portal.integration.launcher
    Is there any solution? Thank you.
    Best Regards,
    Chen Jianguo

    same here.
    Internet Explorer 7, web templates or web analyzer:
    1. open context menu with right mouse key
    2. click on a free area outside the menu, to close the menu
    3. opening the menu do not work anymore. buttons do not work anymore either.
    searched notes, sdn, ... patched all to the newest level...
    still the same error.

  • Query related to BEx query and web template migration

    Hi,
    We are upgrading our BW system from BW 3.5 to 7.3 and also planning to migrate the existing BEx 3.X queries and web templates to BEx 7.x version.
    We have BEx queries and web templates published on enterprise portal in roles.
    My query is that after we migrate BEx 3.5 queries and web templates to new version, do we need to re-publish these (migrated) queries and web templates on the portal or users will be able to access the reports without any issues.
    or are there any post migration steps that we need to follow so that reports (with migrated version) are available to the end users through portal as before.
    Thanks,
    Tarun.

    Hi,
    We are upgrading our BW system from BW 3.5 to 7.3 and also planning to migrate the existing BEx 3.X queries and web templates to BEx 7.x version.
    We have BEx queries and web templates published on enterprise portal in roles.
    My query is that after we migrate BEx 3.5 queries and web templates to new version, do we need to re-publish these (migrated) queries and web templates on the portal or users will be able to access the reports without any issues.
    or are there any post migration steps that we need to follow so that reports (with migrated version) are available to the end users through portal as before.
    Thanks,
    Tarun.

  • Web Part showing different result in different regions

    Hi All,
            We have a
    stock  web-part which is integrated into our SharePoint site . And this stock web-part is showing different result in different regions .As the output of the web-part is perfect in India,US,UK and working quite opposite in Singapore,china and Malaysia.Can
    any one help me how can I solve the issue
    Samar

    Hi Samar,
    As the stock web part is a custom web part, we cannot know how it works. For this issue, I suggest you ask the web part developers or support for help.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Checking Query and Web Template Authorizations

    Hi,  I have some code that does an authority-check to determine if a user has access to a specific query. 
      AUTHORITY-CHECK OBJECT 'S_RS_COMP'
               ID 'RSZCOMPID' FIELD '__________'.
    I need to be able to test to see if a user has access to a specific Web Template.
    Any ideas how to do this?
    Thanks!

    Kenneth,
    1. Find the roles a template is assigned to : Yes, use AGR_1251 table.
    2. Find the roles a user is assigned to : Yes, use AGR_USERS.
    3. check if the user has the role the template is assigned to? by joining both the tables.
    By using these tables, programatically you can check it.
    You cannot check this using C-Command AUTHORITY-CHECK OBJECT. As this checks only the authorizations for the user who is executing it. This command is more useful in the following scenario.
    Eg.In BW if you have written a program for some reasons to read the values of an ODS active table. On this ODS you have authorization relevant infoobject. Lets say profit center. In order to check the profit center that the user is assigned to and populate the data for only profit centers for which he is eligible to view the data.
    Hope this helps,
    GSM.

  • YTD Query and web template

    Hi,
    i have created a query on YTD sales query and comparison with the previous year. i have created a structure using 0calmonth2 info object and restricted it for each month starting from July to June. In the key figures i have used sales values key figure and restricted one with variable  0I_PRFYE for all fiscal year periods of previous year and for the current year i used a value range from 001.YYYY to the current fiscal year period. where YYYY is the same fiscal year as in current fiscal year period.
    After executing the query for sales values in previous year i have a value against every fiscal year period  in the previous year. For the current year i have the value only for the first month as we are in the first month.
    example:
                           jul  aug  sep  oct  nov  dec  jan  feb  mar  apr  may  jun
    Current year   17     0      0     0     0     0     0    0      0     0      0     0 
    Previous Year12   13    18   34    23   67    20  10    83   34     25   27
    When i creating a line chart based on this data, for the current year the line drops from jul to aug and continues to be zero through out the year. what i am expecting is it should not drop to zero as we have not yet come to aug in the current year. What i am expecting is that the line should be showing as a dot in the current month jun, when the current fiscal year period is aug i will have some value in the aug so the chart should show a line from jul to aug.
    I tried to change the display of zero's as blank & even tried replacing zeros with some characters but could not achieve the desired result.
    can some body help me achieve this. Correct responses will be awarded appropriately.
    Regards,
    Ravi.

    Hi,
    The line chart shows the two series one for previous year and one for current year.
    the issue is with current year. as the value for aug is blank the line chart drops to zero on the y axis. What i want to achieve is that as i am not yet in aug and my current fiscal yera period is jul i dont want the line to drop to zero. in this case i want it to be just a dot on y axis depending on the value. Once my current fiscal year period is aug i want a line from jul to aug only. In the current senario if my current fiscal year period is aug i will have the line from jul to aug but then drops to zero on y axis for sep. I dont want that to happen.
    Hope iyou understand what i am trying to explain.
    Thanks for your reply.
    Ravi.

  • Query designer report and Web Templates

    Dear All,
    I have a very basic/stup doubt.
    Are reports made through Bex Query Designer and Web Templates the same?
    Actually there is a following requirement:-
    "Navigate from a BW Web template to a PCUI application". I have a document related to it but it gives me step on how can i modify my web templates to achieve this functionality. But all my reports are made through query designer and it available to user through Web Dynpro portal.
    So i just wanted to know is Web Template and Reports made through query designer the same? So that i can implement the changes in my report.
    Thanks.

    Hi Anup,
    by using web templates we can use N number of data providers (Queries) for a single analysis view with various available options. - N number of Queries can be assigned to Web template to create a web report
    but by using the Query designer ,you can create a single report which may not provide sufficient information to the client and the number of features are less compared to web template.
    as you mentioned that you are using the web dynpro.
    i think the web dynpro requires the web reports as an iview and ths iview can be created by using the Query designer and or web app designer.
    so the most clear view can be given to client using the WAD reports

  • Migrating queires and web templates

    Hi All
    We have just upgraded our front end and are now thinking about converting/migrating the queries and web templates etc.
    1: We havent done our dataflows yet as we will do these later. Does anyone know of  any possible problmes of dojng the queries/templates but not the datalows?
    2: Does anyone have a 'best way of doing the queires and templates...eg. what order?...All at once? ...One by One?
    3: What are the tools to convert them all in one go for web templates and queries
    Any other useful info would be helpful
    Goawatson

    Go though these links it would be of help.
    Upgrading Bex Queries from BW3.5 to BI7
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/54e487c277321ae10000000a422035/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/54e487c277321ae10000000a422035/frameset.htm
    Process of Migration
    �� Save Query with SAP NetWeaver 7.0 BEx Query Designer
    �� Query object itself will always get new version
    �� Reusable Query components (structures, key figures, variables) will get
    new version only if required

  • How to assign a query and a template to a role

    Hi gurus
    Considering my little knowledge that i have of BI 7, I just want to confirm is this the way to assign a query to a role.
    On the main menu of the query designer at the top left we have query-->Publish--->to Role and subsequently assigning the query to the specific role required and similar steps are followed to assign the template to the same role as well...kindly confirm this.........as i guess it is important to assign the query and the template to a the correct role so as to get the correct data.As our query is created for the manager role....points will be given

    Hi Anurag,
    Check this:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a249a990-0201-0010-e18e-b2f5ed135497
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a101b894-0b01-0010-6c90-e70766b33256
    Roles assigned to a BI 7.0 Consultant
    Role  assigning to a Query in BEX report
    Assign points if this is helpful...........
    Rgs,
    I.R.K

  • BEx Web Template (BTMP) and Web Template (TMPL)

    Hi,
    I found in BI7 Objects, there are BEx Web Template (BTMP) and Web Template (TMPL). what's the different between them? For the BEx Web Template (BTMP), i can find in Web Application designer.
    But for Web Template (TMPL), I cannot find them in Web Application designer. How can I edit them?
    for example, there is a standard Web Template (TMPL)  0tpli_0tct_mc01_q0111, where can I change it?
    Many Thanks
    Jonathan

    hello,
    TMPL is for 3.5 template and BTMP is for BI 7.0 templates. For opening 7.0 template you need to use BI 7.0 WAD not 3.5 WAD.
    you can open the standard template 0tpli_0tct_mc01_q0111 in WAD and then do save as to save it custom template.
    Then you can edit the custom template and make the changes.
    Make sure that the std. template is installed correctly.
    Regards,
    Dhanya

  • Dba_index_name and dba_ind_columns showing different results

    Hi All,
    I am confused why it is showing different results:
    [email protected]#>select index_name from dba_indexes where table_name='CRBTPROV_FINAL';
    INDEX_NAME
    CRBTPROV_INDX1
    [email protected]#>select index_name from dba_IND_COLUMNS where table_name='CRBTPROV_FINAL';
    INDEX_NAME
    CRBTPROV_INDX1
    MSISDN_IDX
    When trying to drop index MSISDN_IDX it gives error:
    ERROR at line 1:
    ORA-00054: resource busy and acquire with NOWAIT specified
    But when trying to check where all the index is used using v$access:
    select * from v$access where object='MSISDN_IDX';
    no rows selected
    Regards,
    Kirti

    If I run the following query on a 9.2.0.6 database, no index is listed:
    select type, count(*) from v$access group by type;CURSOR
    FUNCTION
    NON-EXISTENT
    PACKAGE
    SEQUENCE
    SYNONYM
    TABLE
    TRIGGER
    VIEW
    It seems that index is not taken into account by v$access ?

  • CJR2 entries in version 0 (original) and EFC (copy) show different ? amount

    HI Team,
    Recently we copied data from Version O to Version EFC using T code CJ9F , When running CJ9F to copy V0 to EFC, the work centre rate has updated in Version EFC with the latest from Version  0 , Therefore, the CJR2 entries in version 0 (original) and EFC (copy) show different ? amounts: is this correct?
    My Analysis  on the above  incident between two Versions
    Version EFC
    1.     Version EFC consist  checkedu201D Integrated planningu201D check box 
    2.     Exchange Rate type u201CMu201D ,
    3.     It doesnu2019t consist any u201Cvalue date  u201C 
    4.     checked   u201C integrated planning with cost center / bus. Process.
    Version u201C 0u201D
    Version u201C Ou201D doesnu2019t checked  u201C integrate planning  check box from 2003 fiscal year
    2 . Exchange rate type u201C Pu201D  u201C
    3 .value date u201C 01.04.2003
    4 . unchecked u201Cintegrated planning with cost center / bus. Process
    where is the data corrected can any one guide me and let me know if any steps are missing
    thanks
    Ranamka

    Hi kim standley,
    Thanks for using Apple Support Communities.  I would first try resetting SyncServices as described here:
    Mac OS X: Resetting the SyncServices folder
    http://support.apple.com/kb/TS1627
    If the issue persists after that, I'd move on to this article:
    Sync Services: Advanced troubleshooting for contact and calendar syncing
    http://support.apple.com/kb/ts2481
    Cheers,
    - Ari

  • ODS and Infocube showing different results

    Hi,
    I loaded same data to Infocube and ODS but they are both showing different result in BEX.
    ODS
    ODS report is showing summarised values e.g
    vendor               order value                   invoice value        date
    00001                    20                               20                 01.01.2007
    Infocube
    result is showing not summarised values
    vendor               order value                   invoice value        date
    00001                    20                                 0                      0
                                  0                                20                  01.01.2007
    I would like to make the infocube result same as the ODS because I am remodelling so that we start reporting from Infocube rather than ODS.
    thanks

    Hi,
    this is the scenario
    currently we are reporting from ODS object which fetch data from 3 ODSes. now I am asked to remodel so that we can report from infocube not ODS.
    steps I have taken so far.
    - created new infocube
    - created 3 update rules ( same Update rules that gives the reporting ODS data).
    my target is to make sure that the current ODS  report is the same as the infocube report but so far the report is not consistent
    I compared the data in the ODS and infocube and they are exactly the same but the report is showing differently

Maybe you are looking for