Authorization issue while opening the query in Bex Analyzer

Hi All,
I get the below error mesage while executing a report.I have executed the same query in RSRT and i get the below message.
I have created some roles and added to a test user for testing purpose and when i log in as a tets user i get the below meesage.
I am not sure what i am missing in the roles.When i tried executing the query in my id then no issues.
No authority for the node from characteristic 0EMPLOYEE__0MAST_CCTR, hier
Your user master record is not sufficiently maintained for object Authori
Kindly let me how to overcome this.
Thanks in advance.
Regards,
Kumar

Hi Harish,
Just check this query by this way:
Use Tcode RSECADMIN -> Analysis ->Execution as -> In Execute as user: Put your Test user Id also tick With log and select RSRT. Now use Start Transaction.
Might be the chance to get more details about this issue for resolution.
Also ensure, Have you did the User Comparison while assigning test user id in role?
Regards,
Abdullah

Similar Messages

  • RFC_ERROR_COMMUNICATION error while opening the query in BEx

    I am able to open the query through rsrt tcode. But If I try opening the query or create a new query from BEx analyser, I get the
    below error.Please help.
    Error Group
    RFC_ERROR_COMMUNICATION
    Message
    SAP_CMINIT3 : rc=20 > Connect to SAP gateway failed
    Connect_PM  GWHOST=/H/sapgate1.wdf.sap.corp/S/3299/H/iwdf1081, GWSERV=sapgw00, SYSNR=00
    LOCATION    SapRouter on sapgate1
    ERROR       sapgate1: route permission denied (172.16.25.105 to iwdf1081,
                3300)
    TIME        Tue Sep  8 12:46:54 2009
    RELEASE     46D
    COMPONENT   NI (network interface)
    VERSION     34
    RC          -94
    COUNTER     134420

    http://www.sdn.sap.com/irj/scn/index;jsessionid=(J2EE3417700)ID0639339950DB00540967214800578770End?rid=/library/uuid/4e515a43-0e01-0010-2da1-9bcc452c280b&overridelayout=true
    please go through the PDF doc. it would be more helpful to you.

  • CL_RSR_REQUEST eror while running the Query in Bex Analyzer

    Hi All,
    I have created the Query and assigned it to the role by using PFCG and also by Query Designer. when the user executing this query using the Bex Analyzer he is getting this error.
    CL_RSR_REQUEST and Form TEXT_ELEMENTS_GET:Variabl"
    Your input is appreciated
    Thanks in Advance
    Regards

    Hi all,
    I had assigned the query only to the role. when i checked with user id i found error.
    You do not have the authorization for component ZMM_PO_Q1_2
        Message no. BRAIN800
    Diagnosis
         You do not have the authorization for the selected component.
    System response
         The selected component cannot be edited.
    Procedure
         lease speak to the person responsible for authorization, if you
         authorization for the editing of this component. The function is
         protected by the object "Business Explorer - components" with th
         following fields:
             -  InfoCube                ZMM_POD
    Type of a component     REP
    Component               ZMM_PO_Q1_2
    Activity                16
    for this what i have to do .. i had also checked in the su 53 t code.i showing the previous authorization is successfulll..
    regards

  • Bex Mihration Issue while comparing the results of Bex analyzer

    Dear Experts,
    Currenlty i am working on a Bex migration project and we are still in the research and analysis phase. We have been migrating some queries and workbooks in sandbox for analysing the final approach we would be following eventually. For migration we first make a copy of the query and then migrate the copy to the 7.0 version. So after migration the formats in the report generated by Bex analyzer 7.0 of the migrated query and the one generated  by Bex analyzer 3.x of the orignal query are quite different.
    Can you help me figure out the reason behind this difference in the formats and how to go about it.
    regards,
    Anupam

    Hi Anupam,
    Go through the below link
    [Migration of 3.x BEx Queries to BI7.0 - Useful Tips |http://wiki.sdn.sap.com/wiki/display/BI/Migrationof3.xBExQueriestoBI7.0-Useful+Tips]
    [Queries or Workbooks Migration - Errors and Fixes|https://wiki.sdn.sap.com/wiki/display/BI/QueriesorWorkbooksMigration-ErrorsandFixes]
    Regards
    KP

  • Performance issue while opening the report

    HI,
    I am working BO XI R3.1.there is performance issue while opening the report in BO Solris Server but  on window server it is compratively fast.
    we have few reports which contains 5 fixed prompt 7 optional prompt.
    out of 5 fixed prompt 3 prompt is static (it contains 3 -4 record only )which is coming from materlied view.
    we have already use many thing for improve performance in report like-
    1) Index Awareness
    2) Aggregate Awareness
    3) Array fatch size-250
    3) Aray bind time -32767
    4) Login time out -600
    the issue is that before refresh opening the report iteslf taking time 1.30 min on BO solris server but same report taking time in BO window server 45 sec. even we  import on others BO solris server it is taking same time as per old solris server(1.30 min).
    when we close the trace in solris server than it is taking 1.15  sec time.it should not be intial phase it is not hitting more on database.so why it is taking that much time while opening the report.
    could you please guide us where exectly problem is there and how we can improve performance for opening the report.In case the problem related to solris server so what would be and how can we rectify.
    Incase any further input require for the same feel free to ask me.

    Hi Kumar,
    If this is happening with all the reports then this issue seems to be due to firewall or security settings of Solaris OS.
    Please try to lower down the security level in solaris and test for the issue.
    Regards,
    Chaitanya Deshpande

  • Issue While executing the Query for Pagination using ROWNUM with like

    Issue While executing the Query for Pagination using ROWNUM with like.
    Database is Oracle11G.
    Oracle Database Table contains 8-9 lakh records
    1) SQL equal (=)
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE A.REFERENCE = 'KMF22600920'
    Execution Time:- 0.00869245 seconds
    Returns 2 resultsets
    2) SQL like (one %)
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE A.REFERENCE = 'KMF22600920%'
    Execution Time:- 0.01094301 seconds
    Returns 2 resultsets
    3) SQL like (two%)
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE A.REFERENCE like '%KMF22600920%'
    Execution Time:- 6.43989658 seconds
    Returns 2 resultsets
    In Pagination, we are using Modified version of SQL Query 3) with ROWNUM as mentioned below :-
    4) SELECT * FROM (
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE REFERENCE like '%KMF22600920%' AND ROWNUM <= 20 ) WHERE RNUM > 0
    Execution Time:- Infinite
    ResultSets:- No as execution time is infinite
    a) Instead of like if we use = in the above query it is returning the 2 resultsets (execution time 0.02699282 seconds)
    b) Instead of two % in the above query, if use one example REFERENCE like 'KMF22600920%' it is returning the 2 resultsets (execution time 0.03313019 seconds)
    Issue:- When using two % in like in the above query i.e. REFERENCE like '%KMF22600920%' AND ROWNUM <= 20 ) , it is going to infinite.
    Could you please let us know what is the issue with two % used in like and rownum
    5) Modified version of Option1 query (move out the RNUM condition AND RNUM <= 20)
    SELECT * FROM (
    SELECT /*+ FIRST_ROWS(n) */ ROWNUM RNUM, A.* FROM LINE A
    WHERE REFERENCE like '%KMF22600920%' ) WHERE RNUM > 0 AND RNUM <= 20
    Execution Time:- 7.41368914 seconds
    Returns 2 resultsets
    Is the above query is best optimized query which should be used for the Pagination or still can improve on this ?

    This would be easier to diagnose if there was an explain plan posted for the 'good' and 'bad' queries. Generally speaking using '%' on both sides precludes the use of any indexes.

  • Error while opening the query

    Hi,
    I have created a query and i am getting error messeges while opening query in query and designer and failing to open the query.
    Error messeges:
    Terminate: Unexpected Error: RFC_ERROR_SYSTEM_FAILURE-Exception condition "INCONSISTENCY" raised.
    Pl let me know if i can do something so as to open this query.
    Thanks & Regards,
    VJ

    Hi,
    Please run the report  ANALYZE_RSZ_TABLES as mentioned in Note 792779.
    This will help you in detecting and repairing the inconsistent elements in the query.
    Please also see the note 1020826.
    Hope it helps.
    Regards,
    Nitin

  • Sales report issue while saving the query

    Hi,
    I am working on Sales reports and that i came across a senario and facing a problem, can anyone help me over this
    Senario:
    I created a structure in Rows and added few keyfigures to the New structure which is in Rows.
    After that i added 2 charcteristics.
    Now the problem is that when i save the query i am getting the Keyfigure structure first and then characteristics
    But, i need the 2 charcteristics first and then i need the Keyfigures
    I changed the query as i want it like i placed 2 charcteristics first and then the keyfigure (structure) and the query saved sucessfully.
    The problem is that when i open the query again i found that the Keyfigure (structure) first and then the 2 charcteristics
    I did it all my possible ways still the problem perstists
    Edited by: MAHESH MUMAR on Oct 6, 2008 2:22 PM
    Edited by: MAHESH MUMAR on Oct 6, 2008 2:32 PM

    mahesh,,,
    can u xplain more what xactly is ur need.
    "After that i added 2 charcteristics."
    so do u want chars & keyfig in Rows only.
    this way i dont think u will have report output ..
    Take simple e.g. below:
    $----
    Quantity
    Material
    Channel112--
    1
    Channel223--
    34
    Is this how u want ur report to display?
    that means u will need material and channel in rows and keyfigures ($ & quantity ) in Columns.
    if this is not what u seek what else is your rek.
    sometimes such display helps to understand.
    Yes u can add chars in Rows and then add structure of keyfigure.
    Yes you can change the sequence of display in Rows among different structure.
    But do u still have something in columns.
    It is intersection of Rows & Columns that displays result data set...
    let us know in more detailed e.g.

  • Problem in opening a query in BEX analyzer..

    i am using front end sap gui 7.20 with patch 9..
    my issue is that when i tried to open a query in bex analayzer. i get following error stating that
    you donot have suffiecent authorizations for the infoprovider XXXXXX
    function module /SDF/AL_MAP_TRANSID_LOGH does not exist
    and i tried to open a query from bex query designer ..i am not able execute it
    and i get strange error while executing tcode rrmx..the status error states that microsoft excel is not installed, install microsoft excel viewer
    after installing microsoft excel viewer also..i get the same error...
    pls suggest asap guys

    Hi Satish,
    You can ask yur tech support team to install sap gui and in specify them to tick "SAP BW add ons".
    also Enable the macros for the analyser.
    Regards
    Rahul

  • Issue while opening the web analysis reports

    Hi,
    One of our user is not able to open a web analysis report with an error messages saying
    "Java.Lang.Exception: Unexpected HTTP status code of 500 received from server"
    "Document does not exist or no authorization to open the document"
    Other users with the same level of access are able to open the report fine and also the same user is able to access the report fine with a test id from his machine.
    What could be wrong? Any suggestions please.
    The only thing I see here, something wrong with userd ID or password.
    Thanks
    Prasad

    Hi,
    I had also faced this problem earlier. I was using HFM as data source for WA reports. After searching I found that there was some change at HFM level. Some dimensions/members had been deleted or added in HFM. And I was using those missing members in WA Grid.
    I had to recreate my reports again as I didn't get any other way to deal with this problem.
    Please shared any other alternative option, if you found while working on this issue.
    Thanks & Regards,
    Mohit Jain

  • Error at report designer while opening the query

    Hi
    in report designer i am trying to open query
    i am getting error like
    error while loading query meta data
    check the query and portal settings
    i am getting this error only this report only
    Diagnosis
    An error occurred in the BI components on the SAP J2EE Engine.
    System Response
    Procedure
    Contact your system administrator to have the error analyzed in detail.
    Procedure for System Administration
    Start the Visual Administrator, log on to the SAP J2EE Engine and choose "<J2EE_SID>" ->"Server" -> "Services" -> "Log Viewer".
    The file "defaultTrace.trc" includes detailed information about the error that occurred. In Windows, you can find this file in the Log Viewer under "Cluster <computer name>" -> "Server <server number>" -> "<drive>:\usr\sap\<SID>\JC<INSTANCE>\j2ee\cluster\server<NUMBER>\log". ". In Unix, the file is located under "/usr/sap/<SID>/JC<INSTANCE>/j2ee/cluster/server<NUMBER>/log".
    If the file does not include enough detail about the error, you can increase the log level to obtain more information. To do this, choose "<J2EE_SID>" -> "Server" -> "Services" -> "Log Configurator". On the "Locations" tab page, choose "com" -> "sap" -> "ip" -> "bi" -> "webapplications". Using the selection list on the right side of the screen, you can increase the log level, whereby "DEBUG" represents the log level with the most information. You can save your settings by choosing the "Save" icon. The change to the log level is active immediately. Once you have successfully analyzed the error, you should set the log level back to its default value using the appropriate pushbutton; continuous writing to the log file negatively affects the overall performance of the system.

    Hi Suneel,
    If you are using any JAVA based applications or objects in the Report designer this error is thrown.
    It's better to install Java engine to correct this error.
    You must contact Basis people in order to solve this issue.
    With Regards,
    Ravi Kanth

  • Issue while saving the Query Urgent

    Hi all,
    I had created the query and also transport it toht QA . but due to some problem i need to change query. when i am trying to make the changes i am unable to do it bcoz the whole query is in display mode only and i am getting a message that the query request is not available as it is released in to the QA .
    I am working on BI 7. plz let me know how can i make the change i also tried it by copying the query still i am unable to do it.
    Whats d steps that need to follow i know i am missing some where
    Regards

    Hi
    Go to RSA1-> Transport connection-> here click on Bex icon (Red truck icon) and in the next screen assign/create new transport request and then assign this request to your Bex package. Once you complete this, you will be able to make & save changes to Bex query.
    Hope this helps.
    Pradip

  • Problem opening a query in BEx Analyzer 7.10

    Hello,
    we have problems with the BEx Analyzer, an empty screen is
    displayed when we open a query.
    I'm going to explain the steps:
    We open Analyzer, goto open query, logon into BW window appears and then, before the screen to select query from an Infoarea, roles, etc is load, the Analyzer seems to open the SAP Logon and an empty screen from R/3 appears.
    We can not close this R/3 empty window, only when we close the Analyzer this windows is closed.
    The problem happens with the SAP GUI 6.40, so we updated to
    SAP GUI 7.10, installed patches, addons and windows/ office
    patches but the problem persists.
    How can we solve this issue?
    Thanks in advanced.
    Best regards,

    Yes, I have done all the installations that the notes said and the pre-requisites:
    - Microsoft .NET Framework 1.1 + .NET Framework 1.1 SP1 + Hotfixes and windows update + Microsoft Visual J# .NET Framework 1.1.
    - Microsoft .NET Framework 2.0 + .NET Framework 2.0 SP1 + Hotfixes and windows update + Microsoft Visual J# .NET Framework 2.0.
    - Microsoft Officce 2003 patches (KB907417, KB945185) + Office 2003 SP3
    - bi710sp03_300 and bi710sp04_400
    - gui710_6-10002995.exe and kw710_1-10004321.exe
    But the problem persist.
    I have executed BI Frontend installation check tool (sapbexc710.xla) and seems everything is OK.
    Regards,

  • Authorization error while opening a query

    Hi All,
    We have a new installation of BW NW2004s up and running. We are on Patch 7 on the back-end and patch 2 on the front-end. We can develop almost all objects on the back-end (with dumps here and there) but we can not execute any queries (both content and custom queries) the error message we get is "error occurred in the communication with the BW server, could not determine a value for variable 0DAT from the authorizations". This is in the sandbox so we all have "SAP ALL" authorization.
    Has anybody come across this issue? What could be the cause/solution?
    Thanks,
    Paul.

    Hi,
    Do you have 0DAT variable installed from a business content?
    If not, install it.
    Best regards,
    Eugene

  • How to opened the Query in WEB

    Hello:
       Now the <b>IGS</b> has ready, I can click the query in favority when login on bw by GUID. But I can not find the fuction to open the query in WEB. Is there other thing I didn't do? Hope someone can give me some advice.
    Regards&Thanks!
    zagory

    hi Zagory,
    not sure understand your question correctly...
    you can open the query with bex analyzer,
    with display/change the query, and there is button 'display query on the web' (after V and X button).
    or you can create a web template and add web item 'table' or 'chart' and choose the query as data provider.
    for web template that exist in favorite, when you click from sapgui after login, it will be executed on browser.
    http://help.sap.com/saphelp_nw04/helpdata/en/1a/456a3badc1b315e10000000a114084/frameset.htm
    hope this helps.

Maybe you are looking for