Find Role of a BW Query

Hi,
How can I know the role to which a BW query is assigned.
Many Thanks
Gaurav

Check in Table AGR_HIER.
Field AGR_NAME = Role Name
SAP_GUID = Query Technical Name
YOu can check query technical name in RSRREPDIR.
Pravender

Similar Messages

  • To find Role Name for a Query

    Hi,
    I want to find the Role Name associated with a given query. Can you please help me out, how can i find it?
    Best Regards,
    Venkata C

    Hi,
    in the QueryDesigner, press the "Where used button" (a little square with three arrows - or: seventh button from the right.) This should provide (among others) the roles.
    Hi
    sorry,
    I checked it myself. Doesn't work. Sorry again, no other idea
    cheers
    sven
    hth
    sven
    Message was edited by: Sven Muntermann

  • Find Role: Approvers is one of ('myapprover')

    Thru the Admin user interface it is possible to find roles where
    - Approver is one of a list of selected approvers or
    - Owners is one of a list of selected owners
    In a workflow I need to query for roles given the name of an approver or name of an owner. I tried the definition of various AttributeConditions for the Query Objects work flow service but neither of these has worked:
    Query 1:
    <Action application='com.waveset.session.WorkflowServices'>
        <Argument name='op' value='queryObjects'/>
        <Argument name='type' value='Role'/>
        <Argument name='attributes'>
            <list>
                <new class='com.waveset.object.AttributeCondition'>
                    <s>Approvers</s>
                    <s>isOneOf</s>
                    <list>
                        <s>myapprover</s>
                    </list>
                </new>
            </list>
        </Argument>
        <Return from='queryResult' to='queryResult'/>
    </Action>Query 2:
    <Action application='com.waveset.session.WorkflowServices'>
        <Argument name='op' value='queryObjects'/>
        <Argument name='type' value='Role'/>
        <Argument name='attributes'>
            <list>
                <new class='com.waveset.object.AttributeCondition'>
                    <s>Approvers</s>
                    <s>is one of</s>
                    <list>
                        <s>myapprover</s>
                    </list>
                </new>
            </list>
        </Argument>
        <Return from='queryResult' to='queryResult'/>
    </Action>Does anyone know how to formulate a the AttributeCondition?
    Thanks.
    Edited by: engelan on May 6, 2009 9:51 AM

    Hi,
    You can use the admin interface to find the roles for a given appover/owner.
    Roles > Find Roles > Where "Approvers" "Is one of" ...
    Hope this helps

  • Unable to find the universes in the Query Browser Panel of Dashboard Design

    Hi Experts,
    Can any one please help me out, as I am Unable to find the universes in the Query Browser Panel of Dashboard Design Tool.
    Thanks & Regards,
    Shivani
    Edited by: Shivani Yemula on Jul 19, 2011 4:40 PM

    Hi,
    I got the same problem recently in BI 4.1 Platform and all the permissions were already set, I mean on the universe and all others which are required but I found there was some problem in Dashboard Cache server, when I restarted that it worked fine ...
    I was able to see the universe once I restarted it. I was getting a Java unable to invoke object Error..
    Thanks,
    Vamshi

  • How to find Tables behind a Custom Query in SAP

    Hi Gurus,
    Can anyone please help me find tables behind a custom query in SAP.
    Regards
    As

    Hi
    Check the name of the programm assigned to transaction, it should be like this:
    AQZZ<user group>=======<query name>======
    or
    AQIC<user group>=======<query name>======
    It depends of the query area is global or cross-client
    So run SQ01, select the quey area, select the quey group and so your query: now you can see the infoset and then you see it by SQ02 transaction
    Max

  • How to find who has deleted the query in Production system

    I Experts,
    I have an issue. Someone has deleted one query in Production system.
    How can i find who has deleted the query??
    I searched the ans for the same i the below threads :-
    Query deleted in production
    How to find out who has deleted the production Query
    But it didn't help me as i couldn't understand how to use the transaction SLG1.. Can Someone please explain me how can i find out who has deleted the Query..
    Regards,
    Pavan Raj

    Hello,
    Please, remember the date on which date the query has seen last time  in the production server. You can use the last date in the From date and To date would be current  date and execute the SLG1 tcode. It would list you all the logs in the Object text you can search for BEX Query designer and sub object text column you can check for delete logs options.
    Double click on the object will list you the query and name. From the user column you can find who has deleted the query.
    Might be this can help you for analysis.
    Thanks
    Geeta Sharma

  • Finding The statistics of a Query

    I would like to find the statistics of a query.
    we can obtain the stats when we do "set autotrace on" in SQL PLUS.
    and when we run a query it gives the reads, recursive calls etc.
    where are these stats stored? where can i get them from?
    to add more to it;
    we can select the Plan from of a query after explaining the plan and running this query - select * from table(DBMS_XPLAN.display);
    Is there a similar way to select the statistics of the query?
    Thanks.

    can you please explain what does the staistic refer to?Have a look at Statistics Descriptions

  • "RUN-TIME ERROR '3078': The Microsoft Access database engine cannot find the input table or query 'name'. Make sure it exists and that its name is spelled correctly.

     When I run the code below I get the following error:"RUN-TIME ERROR '3078': The Microsoft Access database engine cannot find the input table or query 'False'. Make sure it exists and that its name is spelled correctly. Note that I do not call
    anything by the name of "false" anywhere in this code.
    The subject code (the underscored line of code is highlighted in the debugger when the error occurs):
    Option Compare Database
    Private Sub JobAssign_Click()
    MatLotListAvail_openform
    End Sub
    Function MatLotListAvail_openform()
    Dim dbsAPIShopManager2010 As DAO.Database
    Dim rstMaterialLotJobJoint As DAO.Recordset
    Dim strSQL As String
    Set dbsAPIShopManager2010 = CurrentDb
    strSQL = "SELECT * FROM MaterialLotJobJoint WHERE JobID" = "tempvars!JobID" And "MatLotID" = "tempvars!MatLotID"
    Set rstMaterialLotJobJoint = dbsAPIShopManager2010.OpenRecordset(strSQL, dbOpenDynaset)
    If rstMaterialLotJobJoint.EOF Then
    DoCmd.OpenForm "JobAssignMatConf", acNormal, "", "", acEdit, acNormal
    Forms!JobAssignMatConf!PartapiIDVH = TempVars!PartapiID
    Forms!JobAssignMatConf!JobapiIDVH = TempVars!JobapiID
    Forms!JobAssignMatConf!JobIDVH = TempVars!JobID
    Forms!JobAssignMatConf!MaterialLotIDVH = TempVars!MatLotID
    Forms!JobAssignMatConf!Desc = TempVars!MatDesc
    Forms!JobAssignMatConf!recdate = TempVars!recdate
    DoCmd.Close acForm, "MaterialLotListAvailable"
    Else: MsgBox "This material lot has already been assigned to this job."
    DoCmd.Close acForm, "MaterialLotListAvailable"
    End If
    End Function

    I think the SQL statement should be
    strSQL = "SELECT * FROM MaterialLotJobJoint WHERE JobID=" & _
    tempvars!JobID & " AND MatLotID=" & tempvars!MatLotID
    This assumes thatJobID and MatLotID are number fields.
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Roles that have a query

    Hello,
    Is there any way (report/transaction/table) to know in which authorization roles a specific query is assigned?
    Thanks in advance,
    Cris.

    Hi,
    Go to Table 'RSRREPDIR' and give your Query Name in 'COMPID' and execute.
    Then take the 'GENUNID' from that and Go to Table 'AGR_HIER' and execute it with
    the above 'GENUNID' in 'SAP_GUID'. From that you can get Role Name for your Query.
    Regards,
    Jackie.

  • How to find the queryid of a query

    Hi,
    Can someone suggest how to find the queryid of a query?
    Many thanks,
    Xibi

    hi xibi
    please follow my simple way to find the queryid of the query.
    Go to open qeury from BEx, select the query for which you wish to see the queryid, copy the query using CtrlC and paste the same to notepad CtrlP.
    There you can see the queryid with all the other details also.
    The result you find with this method is the easiest i hope.
    hope this helps
    regards
    vijaykumar

  • How to find roles with open field values

    Hello SAP gurus,
    I need to find a way to find roles with open field values. Some kind of report that returns me a list of all roles that, despite having a generated profile, it still contains empty field values in it.
    Is there anything like it available on SAP?
    Thanks
    Antonio

    Some kind of report that returns me a list of all roles that, despite having a generated profile, it still contains empty field values in it
    Hey I am not sure, but seems I might have seen some report like that. Can you try search report named PFCG* / PFUD*
    Again this is either report (SE38/SA38) or may be FM (SE37). I am away from system a bit while and can't recall.
    Regards,
    Arpan Paik

  • How to find the cpu usage per query for a time period

    Hi All,
    Is there a way to find the cpu used per query for a given time period?
    DB:10.2.0.5
    OS:AIX
    Thanks

    user13364377 wrote:
    if there are multiple queries starting at the same time, then what to do?Handle:      user13364377
    Status Level:      Newbie (10)
    Registered:      Jul 5, 2010
    Total Posts:      264
    Total Questions:      113 (84 unresolved)
    why so many unanswered questions?
    clarify your question
    same SQL multiple times from different sessions?
    or
    different SQLs from different sessions?

  • Can not find role for some transection code

    Dear Gurus,
    EWA  alert with security issue.
    Many user grant access some t-code etc. SE16,SM59,SE17,SE16 and I found users at SUIM t-code can access. 
    But , when I find role for t-code that I should remove.
    Not found,
    Please advise.
    Thank .

    Hi,
    can you please try this
    SUIM > Roles by complex criteria or RSUSR070 to find out this.
                Go to the Selection by Authorization Value.
                In Object 1 put S_TCODE and hit enter.
                And put SU01 in Transaction code and hit execute (clock with check) button.
                I use authorization object, as you can use this to test any object.
    You can also get this information directly from table, if you have access to SE16 or SE16N. Execute SE16N
                Table                AGR_1251
                Object              S_TCODE
                VALUE (low)  SU01
    Regards,
    Srinu

  • HI,how to find roles for user based on userid?

    hi,
    i need to find roles for each user based on user id.
    can i know any one knows this how to get roles for user?
    thanks,
    jpullareddy

    hi,
    i solve my self.
    i am getting values
    jpullareddy

  • Cannot see BEx Query in user role profile in BEx query designer

    I assigned several BEx query objects into user profile menu via t-code PFCG first.
    Then expected - when I need and open them in BEx query designer I could find them after clicking "Role" button in  "Open" window. But unfortuantely I'm not able to do that.
    Do I miss anything to archive that? Is other customizing activity else neccessary?
    Thank you for any suggestion.

    Hi Brad.Ma,
    If you can open query from Area "button", after that, you publish it to roles you want assign.
    You try generate Authoriation in Role in Tcode PFCG.
    Hope help you to solve the problem.
    Dao
    Edited by: xuandao_sap on Sep 20, 2011 3:33 AM

Maybe you are looking for

  • Invoking BPEL process from ADF...

    All, I have deployed one BPEL process and invoking the same process from ADF test page. I created one Webservice Data Control for this process and did drag and drop to ADF page. It is working fine as expected. When I created data control, I gave the

  • What happens if I add an Airport Extreme to the Time Capsule network?

    It is difficult to get a signal at one end of our house. We are using TC as the network router. If I set up my older Airport Extreme to relay signals will it slow down transmission speed? I think the AE is operating at "g" frequency while TC is at "n

  • Combination of TAX & Sevice TAX in a Purchase Order

    Hi, Can any body tell s how to crate a PO with below taxes: Base Price :104280inr 75% of the Base Price is 12.5%.Tax 4% Tax  on Base Price. In our Company CIN is not configured. Thanks in ADVANCE. Balu

  • How to handle unsaved data in portal through webdynpro ABAP ?

    Hi Experts ,      I  need to handle unsaved data in SAP Enterprise Portal through webdynpro for ABAP . I got a sdn link which explained some code for this.. http://help.sap.com/saphelp_nw70/helpdata/EN/45/b76f4169e25858e10000000a1550b0/frameset.htm I

  • Why can't I view ALL my folders when I save a document?

    Here's the skinny. I work with dozens of documents and sub folders every day. When I save a document, the list of locations I am given to choose from is incomplete. I can choose a folder, but not the correct subfolder. Is there a way I can select the