Authorization for Create a Query

hi all!
I need that the users can have access to create queries but I don't have the authorization for this, could you tell me which object i need?
Thanks!

Hi Carlo,
adding to Venkat, there is an other object called:
<b>S_RS_FOLD</b>
Display authorization for folder. This object is new in SAP BW 3.0.
With this the reporting user should only be able to see their Favorites folder and their assigned roles. They cannot look at other InfoAreas to which they have not been granted access.
Hope it helps.
Please award points if it is useful.
Thanks & Regards,
Santosh

Similar Messages

  • No authorization for the component (query name)!

    Hello all,
    when i am publishing the query in web, the following error message is displayed!
    "No authorization for the component (query name)!"
    i had installed and configured everything here, so the person responsible for authorization is none other than me. what i shud do now? shud i add any other authorization profile to the username created? or still any configuartion is required?
    please let me know!
    Thanks,
    Ravi

    Hi ARK,
    thanks for the info.
    i had assigned SAP_ALL and SAP_NEW profiles to the user.
    let me say clearly that when i am executing the Query in the designer it is working fine,no issues in Bex browser too. but when i want to publish safely exexuted query in web (clicking the button publish the query in web) i am getting the above mentioned error!
    do suggest me what is the authorization profile that is needed to serve my purpose?
    hope this time i am clear!
    Ravi

  • *NO AUTHORIZATIONS FOR CREATING ACCOUNTS IN COMPANY CODE*

    HI
    NO AUTHORIZATIONS FOR CREATING ACCOUNTS IN COMPANY CODE
    SYSTEM MESSAGE:
    No authorization for creating accounts in company code 3333
    Message no. F2305
    System Response
    You cannot access the requested data.
    Procedure for System Administration
    If necessary, include an entry in the user's authorization profile for the authorization object and parameters specified below.
    Authorization object:
    F_KNA1_BUK
    Parameter:
    Company code: 3333
    Actions: 01
    KINDLY THROW UR IDEAS

    Hi,
    You have not been authorized for this transaction. Please speak with your BASIS guy he will give you the authorization.
    Regards,
    Abhee.

  • Steps for creating abap query

    hi sap gurus,
    can i steps for creating abap query
    plz help me on this.
    regards,
    balaji.t
    09990019711

    Hi
    Please check this link for a document on ABAP query. It explains the process step by step with screen shots..
    http://www.auditware.co.uk/downloads/SAPQuery_step_thru.pdf
    Thanks,
    Ravi

  • Authorization for Create Only - No change

    Hi,
    I need to give certain users authorization to Create an Infotype. Change will not be given to these users.
    In Authorization Level, I think we can only specify R (other variations of R like M etc.) or W.
    Please let me know on how this can be achieved.
    PS: I have looked into using BAPI HRPAD00AUTH_CHECK, but I am not sure on how to implement this for just one infotype.
    Thanks for all your help in advance.
    Regards,
    Ani

    Thanks Pavani and Anil for your answers.
    Pavani, the basis folks have told that they can give either R/M which are for read authorization or W which is for write. They cannot restrict to just change.
    Anil,  what is the authorization level? Does specifying that to 'T', allow for Creating an infotype and "Disallow changes".
    Our Authorizations are mostly,
    Authorization level - R, M
    InfoTtype - 0001,0007
    PersonnelArea - *
    Employee Group - *

  • How to give authorization for create and change particular Condition Type

    Hi...
       In my requirement is , Only one user can be authorized to create and change a particular condition type 'ZABC' in vk11 and vk12 .
    For remaining condition type can be used as in normal .
    How to do this ? How to give authorization for a particular user for particular condition type ?
    Plz guide me ..
    Thanks in advance .
    Deepa .

    Hi Deepa ,
    u can check A.Object V_KOND_VEA, in user profile u can assign condition type or tables.
    have a word with ur basis guy , so he can help u in better way.
    aand also ref FM SD_COND_AUTH_CHECK
    Regards
    Prabhu

  • Authorization for creating activity journal template

    I have log on with salespro role in CRM 7.0.When I try to click the link in UI for creating activity journal template.
    It said that I don't have authorization.
    Could I ask where to control this authorization?
    I thought this should include in the authorization for salespro.
    Thanks

    Hi Jiao,
    Just Check the PFCG role assigned to Salespro role is having authorization for object CRM_ACTJNL
    Regards,
    Dipesh.

  • Authorization for creating Jobs

    Hi everybody,
    which profile or role in su01 is necessary for creating jobs by a program? Until now i can only generate jobs with sap_all.
    regards,
    Sid

    You'll find them through SU03.
    Look at these Authorizations objects
    S_BTCH_ADM, S_BTCH_JOB and S_BTCH_NAM.

  • Authorization for a particular Query

    Hi,
    I have a query say "X".I want that query to be executed by an user say "Y".Now I want to restrict user "Y" to that particular query only.User Y should not be able to access/execute any othr queries except query "Y".
    Could you provide me the detailed approch for this.
    Thanks,
    Neetu

    Hi neetu,
    are you using which system BW 3.5 or BI 7.0?
    first create the role for with required authorization object then same to user.
    RSD1 - maintain the authorization
    PFCG- to create  and maintain roles
    RSECADMIN -To maintain analysis authorization and role assignment to user.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0b7acf2-6121-2e10-5591-eaec182d9315?quicklink=index&…
    Authorization in BI 7 - Part 1
    Thanks,
    Phani.

  • Best practices for creating and querying a history table?

    Suppose I have a table of name-value pairs, and I want to keep track of changes to them so that I can query the value of any pair at any point in time.
    A direct approach would be to use a schema like this:
    CREATE TABLE NAME_VALUE_HISTORY (
      NAME      VARCHAR2(...),
      VALUE     VARCHAR2(...),
      MODIFIED DATE
    );When a name-value pair is updated, a new row is added to this table with the date of the change.
    To determine the value associated with a name at a particular point in time, one uses a query like:
      SELECT * FROM NAME_VALUE_HISTORY
      WHERE NAME = :name
        AND MODIFIED IN (SELECT MAX(MODIFIED)
                        FROM NAME_VALUE_HISTORY
                        WHERE NAME = :name AND MODIFIED <= :time)My question is: is there a better way to accomplish this? What indexes/hints would you recommend?
    What about a two-table approach like this one? http://pratchev.blogspot.com/2007/05/keeping-history-data-in-sql-server.html
    Edited by: user10936714 on Aug 9, 2012 8:35 AM

    user10936714 wrote:
    There is one advantage... recording the change of a value is just one insert, and it is also atomic without the use of transactions.At the risk of being dumb, why is that an advantage? Oracle always and everywhere uses transactions so it's not like you're avoiding some overhead by not using transactions.
    If, for instance, the performance of reading the value of a name at a point in time is not important, then you can get by with just using one table - the history table.If you're not overly concerned with the performance implications of having the current data and the history data in the same table, rather than rolling your own solution, I'd be strongly tempted to use Workspace Manager to let Oracle keep track of the changes.
    You can create a table, enable versioning, and do whatever DML operations you'd like
    SQL> create table address(
      2    address_id number primary key,
      3    address    varchar2(100)
      4  );
    Table created.
    SQL> exec dbms_wm.enableVersioning( 'ADDRESS', 'VIEW_WO_OVERWRITE' );
    PL/SQL procedure successfully completed.
    SQL> insert into address values( 1, 'First Address' );
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> update address
      2     set address = 'Second Address'
      3   where address_id = 1;
    1 row updated.
    SQL> commit;
    Commit complete.Then you can either query the history view
    SQL> ed
    Wrote file afiedt.buf
      1  select address_id, address, wm_createtime
      2*   from address_hist
    SQL> /
    ADDRESS_ID ADDRESS                        WM_CREATETIME
             1 First Address                  09-AUG-12 01.48.58.566000 PM -04:00
             1 Second Address                 09-AUG-12 01.49.17.259000 PM -04:00Or, even cooler, you can go back to an arbitrary point in time, run a query, and see the historical information. I can go back to a point between the time that I committed the first change and the second change, query the ADDRESS view, and see the old data. This is invaluable if you want to take existing queries and/or reports and run them as of certain dates in the past when you're trying to debug a problem.
    SQL> select *
      2    from address;
    ADDRESS_ID ADDRESS
             1 First AddressYou can also do things like set savepoints which are basically named points in time that you can go back to. That lets you do things like create a savepoint for the data as soon as month-end processing is completed so you can easily go back to "July Month End" without needing to figure out exactly what time that occurred. And you can have multiple workspaces so different users can be working on completely different sets of changes simultaneously without interfering with each other. This was actually why Workspace Manager was originally created-- to allow users manipulating spatial data to have extremely long-running transactions that could span days or months-- and to be able to switch back and forth between the current live data and the data in each of these long-running scenarios.
    Justin

  • No authorization for creating mapping format

    Hello,
    I want to create a mapping format in the WebUI at the marketing profile (marketing u2013 create u2013 mapping format) and an external list (marketing u2013 create u2013 external list). But I canu2019t create a mapping format or a external list. There is an information u201CYou do not have authorization to createu201D
    Follow things I have done before:
    Tx SU01: I had the necessary roles and profiles
    Tx OOCU:
    - I activated in CRM-MKT-EAL the WF 14000129 (BUS20410  PROCESSWITHERROR and BUS20410  PROCESSWITHOUTERROR)
    - Then I assigned agents. I assigned my user to WS 14000029 and to WS 14000129.
    - Last I defined the WS 14000029 as general task.
    Does anybody know, what else I can do?
    Thank you in advance.
    Best regards, Jasmin

    Hello Jasmin,
    You can use ST01 to perform a system trace and list all the authorization you need to create a mapping format.
    1) Go to ST01 and select only Authorization check then click on Trace on button
    2) Launch the WEB UI and try to create a mapping format again.
    3) Once the message 'You do not have authorization to createu201D  is displayed again, go back to ST01.
    4) Click on Trace off Button and then on Analysis button.
    5) Enter your username and select only Authorization check in the Trace Records
    6) Change the From time to 5 min before you made your test and add 5 min to the Time to
    7) Execute, you will see the list of all actions you performed and the authorization objects required for these actions.
    8) Pay more attention to the lines where the RC code is different to 0. You will then find what authorization object is missing.
    Hope it helps.
    Best Regards.

  • Authorizations for creating change request in ALRTCATDEF

    Hi all,
    Can any one tell me, what are the roles I should have to create a transport request (change request or task) for saving alert category in ALRTCATDEF transaction in SAP XI?
    Thanks in advance.
    Regards,
    Prasad Babu.

    Hi Prasad,
                       If you have SAP_ALL authorization it will do.
    Regards,
    Vamshi

  • Authorization for creating Aggregation Level

    Hi Gurus,
    i cant create AL in the planning modeler, i was reading some notes and i got the next questions:
    1- I got in my profile the next auth objects, but still exist the problem, now appears something about Authorization templates for Integrated planning, where i can get this Auth objects? i do this or a Portal or basis Consultant?
    S_RS_PL_ADMIN
    S_RS_PL_PLANNER
    S_RS_PL_PLANMOD_D----
    > Planning modeler(Dev System)
    You need following auth objects
    S_RS_ALVL --> aggregation levels
    S_RS_PLSE -->planning functions
    S_RS_PLSQ-->planning sequences
    S_RS_PLST-->planning function types
    S_RS_PLENQ-->maintain and display lock settings
    A portal role is required to use the planning modeler.
    2- I read this note and said about import the support packages, this who can do it? me? a basis?
    IP: Content-transferring aggregation levels
    SAP Note Number: 913852
    Support Packages
    Add to Basket Software Component Release Package Name Download
      SAP_BW 700 SAPKW70007 
      SAP_BW 71 710 
      SAP_BW_VIRTUAL_COMP 700 SAPK-70007INVCBWTECH
    Solution
    Import the specified Support Package or implement the attached corrections into your system
    Support Packages
    Add to Basket Software Component Release Package Name Download
      SAP_BW 700 SAPKW70007 
      SAP_BW 71 710 
      SAP_BW_VIRTUAL_COMP 700 SAPK-70007INVCBWTECH
    3- i think applying these 2 solutions i can solve the problem, i asked because i want to be sure to open a case to the related groups to apply this corrections to continue working, thanks Gurus i will really appreciate it

    x

  • Restrict authorization for saving BI query bookmark on BEx Portfolio

    Hi experts,
    I would like to find a way to control the saving query bookmark  functionality on BEx Portfolio. The problem is that every BI user can save in the BEx Portfolio which is observable to every user at global level. Is there a functionality to restrict the authorization so that only Power users are allowed to save bookmarks under BEx portofolio and where as non power user are allowed to access them
    Thanks

    Hi All,
    i'm also having same requirement, please reply with solution if any one did it,
    http://scn.sap.com/message/13836154
    Thanks
    Naga

  • Authorizations for Publishing a Query in a Role

    Gurus,
    I have S_USER_AGR (activity as: 01, 02, 03 06, 78)  and S_RS_TOOLS as webpublish and Themes...but my users are not able to Publish a Query to a Role from Query Designer in a Edit mode, but they were able to add the Query to a Role using "Enter in Role" button from BEx pop up screen...what Authorizations I am missing in my role?
    And also in QA and Production how can the Power Users can publish a Query or a Wrk book to a Role without editing a Query or Work book?
    Can some one share their thoughts..
    Thanks,
    KK

    Hi,
    I also facing same issue in Query designer. Unable to publish the roles in query designer. It is showing no roles assigned to you error mesg. I have added this object and given the * values. Then the problem is solved.
    Please user s_user_agr object with activity * and values *. They will get access to publish to roles, portals and broadcasting in query designer.
    Regards
    anil.

Maybe you are looking for

  • CS6 Images saved not showing image in preview finder to upload or open.

    When saving images in CS6 I can see them as preview icons of the image in finder by itself, but if I open a file in photoshop to find an image, i only have titles and not the images. ALSO when I go to upload an image to blog or facebook, again I have

  • Pdf attachment through workflow

    Hi SDNers, I need to attach a PDF to send mail in my workflow. Workflow triggers whenever PO changed or release at ME22N or ME21N. Which PO has been changed, data PO details need to display in PDF. For this I created a smarform by passing PO number.

  • FB60  Line item User exit/BADI/BTE

    Hi Guys,    I need a user exit/ BADI/BTE to change the  Line item in FB60 transaction.  Please let me know ifyou know  any enhancment on this. Thanks Regards, Ganesh

  • Problem in calculating the Average Daily Requirement

    Hello all, I didn't understand how the system calculates the average daily requirement in Dynamic Safety Stock process. The following process flow in given in SAP notes to find how the system calculates the average daily requirement: 1. The system us

  • Cisco 5508 Wireless Controller with Splash Page Disclaimer

    How do one configure a splash disclaimer page on a Cisco Wireless Controller 5508 with no authentication? Jimmy