Query Edit Security Settings

I have a system in which some users are frequently creating and editing queries in BW production.  These queries were mostly transported from BWD --> BWP.
They seem to have the ability to copy and query and then edit and save those changes BUT when they then try to make further changes to the new query they are told that they dont have security authorization.  It also seems that they are unable to delete queries even if they created them.
Any ideas on what rights I need to give them or what transport settings I need to make?

Hi Will,
If your production system is closed for development (in SCC4), you should first allow the creation of queries. You do that in the transport connection, with the button 'object changeability'. Set ELEM (query element) to 'everything changeable'.
Then you have to make shure that the key-users that should be able to make the copy of the query's have a role with the right authorizations.
They need to have object S_RS_COMP with the sub-items:
ACTVT: 01, 02, 03, 06, 16
RSINFOAREA: authorized info-arease (or *)
RSINFOCUBE: authorized infoCubes (or *)
RSZCOMPID: SU_*  (in your case)
RSZCOMPTP: REP
Based on your system setting, it could also be that you need the autorization objects S_TRANSPRT, S_CTS_ADMI
and S_DATASEt. You can check that by performaing an authorization trace in trx. ST01.
Good luck!
Daniel

Similar Messages

  • Editing security settings in Dcom Configuration

    Hi
    Is there a way I can edit dcom Configuration objects via powershell
    I have to change an object in:
    Component services->Computers->This computer->Dcom-Configuration->{objectname}
    I haven't found much on this... 
    any help will be severely appreciated!
    Kindest regards, Martin

    DCOMPerm is just for changing permissions (ACLs). The authentication level setting appears to be a simple REG_DWORD value called "AuthenticationLevel" which exists under the class's HKEY_CLASSES_ROOT\AppID\{GUID} key. The data for this
    value corresponds to these
    Authentication Level Constants.
    "Configuration Permissions" appears to just correspond to the registry permissions on the HKEY_CLASSES_ROOT\AppID\{GUID} key for each class.  Those are easier to deal with in PowerShell (which is good, because DcomPerm.exe doesn't cover that
    part.)  For example:
    # Some random GUID from the AppID key on my computer
    $keyPath = 'Registry::HKEY_CLASSES_ROOT\AppID\{EE487F98-D1F7-49DD-965D-BFEBAFACBD66}'
    $acl = Get-Acl -Path $keyPath
    $everyone = New-Object System.Security.Principal.SecurityIdentifier(
    [System.Security.Principal.WellKnownSidType]::WorldSid,
    $null
    $rule = New-Object System.Security.AccessControl.RegistryAccessRule(
    $everyone,
    [System.Security.AccessControl.RegistryRights]::FullControl,
    [System.Security.AccessControl.AccessControlType]::Allow
    $acl.AddAccessRule($rule)
    Set-Acl -AclObject $acl -Path $keyPath

  • Query security settings for users

    Hi again.
    I'm looking for a way of querying security settings for a user.
    ie I understand that company/division etc security is implemented through responsibilities.
    In which case, is there a way to retrieve those exclusions per user?
    (eg User 1 cant see company 50)
    Thanks,
    g.

    Hi again.
    I'm looking for a way of querying security settings for a user.
    ie I understand that company/division etc security is implemented through responsibilities.
    In which case, is there a way to retrieve those exclusions per user?
    (eg User 1 cant see company 50)
    Thanks,
    g.

  • How to edit HSTS (HTTP Strict Transport Security) settings?

    I want the connections to some particular sites to be always using https, so I need to edit Firefox's HSTS settings, but I don't know where the HSTS setting file is. Can anyone tell me how to accomplish this task?
    I use both Ubuntu 14.04.1 and Windows 8. So solutions for Linux and Windows are both welcome and needed.
    (I know there is an add-on called "Force TLS," but I hope to do it without an add-on.)

    hello, please use the addon you already know about in order to edit these settings: https://addons.mozilla.org/firefox/addon/force-tls/
    the hsts settings would be stored within the permissions.sqlite database in your profile but manually editing it could do more harm than good...

  • The BEx Analyzer cannot generate VBA code due to the security settings

    Hello experts,
    when I try to open a query in BEx Analyser I get this error message for each Item of the Query:
    Diagnosis
    The BEx Analyzer cannot generate VBA code due to the security settings.
    System Response
    VBA code is not generated.
    Procedure
    Choose Tools -> Macro -> Security.
    On the Trusted Publishers tab page, select Trust access to Visual Basic project.
    Choose OK.
    Close the BEx Analyzer and continue working as before.
    Access to Visual Basic project is only needed when generating VBA code.
    This only takes place in design mode or when 3.x workbooks are upgraded.
    Of course I did exactly what was recommanded in the "procedure-section" of this error message. But BEx ist still not working!
    I use SAP NetWeaver 7.0 together with MS Excel 2007
    Thanks
    Axel

    Hello experts,
    I am an additional person interested in the way this issue was solved.
    I confirm that the issue is coming from the SP2 of Microsoft Office (I have another environnement without the SP2 and everything works well), and I am in a situation where I can't remove the update.
    Regards
    Guillaume P.
    EDIT :
    Solution found : I applied the bi710sp10p_1001-10004472.exe patch
    (downloaded via the download maanger : Support Packages and Patches - Entry by Application Group" SAP Frontend Components" BI ADDON FOR SAP GUI" BI 7.0 ADDON FOR SAP GUI 7.10)
    Edited by: GUILLAUME PETIAUX on Apr 13, 2010 10:29 AM

  • Problem with SQL Security Settings

    I've run into an odd problem since moving to ColdFusion 8
    Enterprise Edition. Any text string submitted to an action page
    through a form will return an error ("Executing the SQL statement
    is not allowed.") if it contains text that conforms to a disallowed
    SQL command. For example, I've turned off the "create" as an
    allowed SQL statement in my datasources. If I submit a form that
    includes the following text, "Go back to the beginning of the
    document; create a title," I get the error message. This occurs in
    richtext form fields as well as in standard input form fields. If I
    turn off the security setting so that "create" is an allowed SQL
    command, the error goes away and (fortunately) no table is created.
    It appears that ColdFusion is checking for the presence of
    illegal commands even in text strings that are delimited by single
    quotes in a query -- and even when those text strings wouldn't
    actually do anything to a database.
    Has anyone else run into this? Am I missing a setting on my
    Administrator? Or am I missing something obvious? I'm not pleased
    about the options I have at this point -- turning off some of my
    security settings or allowing errors to occur and telling people
    not to use semicolons as a workaround.
    Thanks for any help you might offer.
    Mike

    Mike Palmquist wrote:
    > Thanks for any help you might offer.
    >
    > Mike
    >
    Are you using <cfqueryparam...> tags? It sounds like
    you are directly
    passing the form text into the SQL statement. If this is what
    you are
    doing, then you are probably getting the expected, safest
    results. If
    you do not use the <cfqueryparam...> tag to tell
    ColdFusion and your
    database that this is a bound parameter then it is possible
    that the
    text is expected to contain SQL code and it will be parsed as
    such.
    To give clearer advice it would be helpful to see an example
    of your code.

  • Query Builder session settings as a solve to ORA-01843 (not a valid month)

    Hi All! I'm novice at Oracle and RDBMS, so sorry for a dummy question.
    I'm trying to make some queries to a tutorial database (10g XE) with Query Builder of Application Express 2.1000039.
    I'm requesting columns with id, date of order and status of order; in a column of ordering date as a "where" condition I've wrote:
    >= to_date('23-JUN-2006', 'DD-MON-RRRR') and got an error "ORA-01843: not a valid month".
    Then I've edited row filtering condition:
    >= to_date('23-JUN-2006', 'DD-MON-RRRR', 'NLS_DATE_LANGUAGE = american') and 've got a correct query result, BUT resulting table date format is DD-MM-RR.
    So, here is a couple of questions:
    1. Can I change a session settings (e.g. alter session set NLS_DATE_FORMAT = 'DD-MON-RRRR') such way, to use it in Query Builder, before building an application itself and not to write 'NLS_DATE_LANGUAGE = american' every time I'm inserting data to a date datatype field?
    2. I wonder why resulting table date format is 'DD-MM-RRRR'. How can I get a data exactly in a date format 'DD-MON-RRRR', how I'm specifying in a query?
    My operating system is Windows 7 Home Basic, NLS_DATE_FORMAT is DD-MON-YYYY in 2 cases in register and respectively in environment variable.
    SQL*Plus displays all mentionted query tables correctly, corresponding to an 'ALTER SESSION ..... SETTINGS'.
    Hope to your help, guys. Thanks for answers!

    Hi,
    you can run the following query so you will see the session parameter values, and any differences with database and instance values :
    SELECT
      a1.parameter as "Parameter",
      a1.value as "Database value",
      a2.value as "Instance value",
      a3.value as "Session value"
    FROM
      nls_database_parameters a1
      LEFT JOIN nls_instance_parameters a2 ON a1.parameter = a2.parameter
      LEFT JOIN nls_session_parameters a3 ON a1.parameter = a3.parameter
    ORDER BY
      a1.parameter ASC;What are the values for NLS_DATE_LANGUAGE and NLS_DATE_FORMAT ?
    1. Can I change a session settings such way, to use it in Query Builder, before building an application itself and not to write 'NLS_DATE_LANGUAGE = american' every time I'm inserting data to a date datatype field?In the application, It depends on the Application Primary Language and Application Date Format you have set in the application globalization attributes. But you can also alter the session every time the APEX engine connects to the database, by entering some PL/SQL code in the Initialization PL/SQL Code attribute of the application (Application Builder -> Application -> Edit Security Attributes) :
    BEGIN
       EXECUTE IMMEDIATE 'ALTER SESSION SET NLS_DATE_LANGUAGE = ''AMERICAN'' ';
    END;In all cases application level settings will only affect the application, not SQL Commands and Query Builder. I think you have to alter session manually each time for these two last tools :/

  • Security Settings in Robohelp 9 PDF files

    I think this is a Robohelp problem because it only happens when I launch a PDF from  a Robohelp-generated site. It does NOT happen in Adobe Acrobat. It may be a conflict with Windows 7 - we just loaded it yesterday - because before that everything worked.
    We created a PDF file with interactive fields, and NO security settings. The file has signature fields that populate with your digital ID when you click the red tag. It works just fine in Acrobat - you can type data into the fields, and the digital ID dialog launches when you click the red tag. If you click OK, the field displays your digital signature.
    However, when I launch the file from online help I created with Robohelp 9, I get an error message stating that the security settings on the document don't allow adding text or placing a signature on it. I double checked, and there is NO security. See the attached images. Is this a bug? Should I report it?
    Thanks

    Hi there
    I'm wondering if the following is happening to you.
    When in Acrobat, you are viewing the document differently and able to make edits. When you are opening the PDF from RoboHelp (or more accurately, the browser) you are presenting it from the PDF reader and not Acrobat. Thus you have different capabiities.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Command to set modify Advanced Security Settings (Audit Settings for folders) on windows 2008

    Hello,
    We have requirement to modify  Advanced Security Settings (Audit Settings for folders) on windows 2008. I am looking for a command which does this job.
    I know, using group policies I can do this; in fact I had done this using group policies. However, I need to do this on number of servers which are not in domain. There are around 15 folders on which I need to enable Auditing; manual editing folder advanced
    permissions is a cumbersome job. Hence, I am looking for a command line options.
    I need to know how command can be utilised to enable Audit option on a folder. Please share a command which can do this; once I get the command, I will create a batch file for other necessary folders. (BTW, this is not a scripting question, I just need to
    know the command hence, please do not re-direct me to scripting forum)
    Manually through GUI, I am setting following.. snaps are given below
    Thanks !

    You can try using Auditpol.exe: http://technet.microsoft.com/en-us/library/cc731451%28v=ws.10%29.aspx
    This
    posting is provided "AS IS" with no warranties or guarantees , and confers no rights.   
    Microsoft
    Student Partner 2010 / 2011
    Microsoft
    Certified Professional
    Microsoft
    Certified Systems Administrator: Security
    Microsoft
    Certified Systems Engineer: Security
    Microsoft
    Certified Technology Specialist: Windows Server 2008 Active Directory, Configuration
    Microsoft
    Certified Technology Specialist: Windows Server 2008 Network Infrastructure, Configuration
    Microsoft
    Certified Technology Specialist: Windows Server 2008 Applications Infrastructure, Configuration
    Microsoft
    Certified Technology Specialist: Windows 7, Configuring
    Microsoft
    Certified Technology Specialist: Designing and Providing Volume Licensing Solutions to Large Organizations
    Microsoft Certified IT Professional: Enterprise Administrator
    Microsoft Certified IT Professional: Server Administrator
    Microsoft Certified Trainer
    Thanks but I guess, auditpol ca be used only to manipulate system audit policies. how do I specify a folder and user in auditpol ? I could not find or understand how folder can be included with auditpol command line options.
    Thanks !

  • What are the security settings to lock down a form with fillable fields and yet allow someone with Reader to fill in the fields as will as save the form and print it?

    What are the security settings to lock down a form with fillable fields and yet allow someone with Reader to fill in the fields as will as save the form and print it?

    You want to allow someone to open your document and fill out the form (in the fields you have created), but not change or edit the form, right? Here's the answer - assuming you are using Acrobat Pro and someone will be opening the PDF using at least Acrobat Reader 9 and up:
    Tools > Protection > Encrypt < Encrypt with Password
    Answer YES to change the security.
    A new window opens:
         Do NOT select Document Open (or that will require a password to open the document.)
         Select: Permissions (Check the box next to "Restrict editing and printing of the document.")
         Change the following 2 settings from the drop-down box:
              Printing Allowed: Select High Resolution
              Changes Allowed: Select Commenting, filling in form fields, and signing signature fields
              Leave selected: "Enable text access for screen reader devices for the visually impaired"
              Change Permissions Password (insert a strong password)
              Leave all other settings alone in "Options"
              OK - OK
              Re-enter the Permissions Password (the one you entered above)
              OK - OK
              Save the PDF to apply the security [notice that (SECURED0 will appear after the document title]

  • SOAP : Receiver Adapter Security Settings in VA

    Hi,
    In the RFC to Webservice, synchronus scenario, I am getting HTTP 401 Unauthorized error.
    I would like to know, do I need any extra security settings for the receiver SOAP Adapter in the Visual Administartor?
    I configured proxy and comm channel, they are fine. Like the sender adapter, if I need any extra security settings please let me know.
    Thanks &
    Raj.

    Hi Raj,
    Check this SAP note-856597
    Verify the userid/password etc..
    HTTP_RESP_STATUS_CODE_NOT_OK 401 Unauthorized
    Regards,
    Moorthy
    Message was edited by: Krishna Moorthy P

  • Need Help on How to Change The Encryption Key and or Change security settings

    Hello, i just installed the wireless router and i would like to know how i can change the encryption key or change the security settings (i want it so you do not have to answer it with a password). Thank you in advance.
    Message Edited by DARK_MARIO on 01-06-200706:10 PM

    Hi…
    In order to change the wireless settings of your router you need to login into the router configuration page. Open your internet explorer browser…in the address bar type http://192.168.1.1 ( Default IP address). Leave the username field balnk……type admin as password (If you have not changed the router password). When the setup page loads fully…..click on the tab that says wireless. Just below the main tab wireless ….click on the sub tab that says wireless security. You can Change the wireless security settings here. After the changes are made click on save settings.

  • Security Settings

    Does anyone know how I can configure client's security settings in Acrobat via a centrally managed location?
    I need to be able to set security settings so when users print to pdf the document has the security applied and the user didn't need to do anything.
    Settings I'd like to configure on clients:
    Adobe PDF - Security:
    Restrict editing and printing of the document. A password will be required in order to change these permission setings.
    pre-set the password
    Prinint allowed: high resolution
    Changes allowed: none
    uncheck, enable copying of text, images and other content.
    check, enable text access for screen reader devices andthe visually impaired
    I would also like to set their printer preferences:
    Default settings: standard
    Adobe PDF Security: Use the last known security settings (which would be the above)
    Adobe PDF output folder: prompt for adobe pdf filename
    Adobe PDF page size: A4
    check. view adobe pdf results
    check, add document information
    uncheck, rely on system fonts only; do not use document fonts
    check, delete log files for successful jobs
    check, ask to replace existing pdf file
    Thank you

    You're an Adobe staff correct?
    Capturing reg keys manually is usually not required unless you're doing something odd.
    This was your first suggestion.
    Start with the ETK to learn about preferences generally: www.adobe.com/go/acrobatetk.
    Then (since all those settings aren't documented), do the following:
    Your above post is genralizing, you stated yourself that those options are not documented. I don't want general information, provide me links to the information I need, I stated very clearly what I would like to acheive and what my objective was. Don't tell me that all the settings I want are not documented and then tell me that they are.

  • Security settings on pdf files

    I have created a form in Word and then added fillable fields under a trial Acrobat Pro.  In beta testing (basically e-mails to myself and my staff), I find the form can't be saved by the recipient.  I have gone into security settings and have "no security" set.  I am thinking this is purely a function of the fact I am using Acrobat Pro as a trial user and that when I buy the software, I will be able to solve this security issue, but I would like confirmation of my belief.  Any thoughts would be appreciated.

    In order for Reader users to save a filled-in form, the document has to be Reader-enabled unless they're using Reader 11. To Reader-enable a document in Acrobat 11, select: File > Save as Other > Reader Extended PDF > Enable More Tools
    but exit form editing mode first.

  • Help w/ Security Settings for Mobile Hotspot w/ 2.2

    I posted this over on moto's forum yesterday, but so far I've gotten no response. I figured I go ahead & post it here also, to see if some(1) may be able to help me w/ it:
    I've searched far & wide, & haven't been able to come up w/ an answer to this. I would very much appreciate any info, advice, or education on this.
    When I travel, I use the X to connect my laptop (HP notebook w/ Vista home prem) to the net, thru the hotspot. I've only been able to connect thru the hotspot using the WEP security setting. Since updtg. to (2.2), still can only connect using WEP setting. Now the only post I've been able to find w/ anything @ all about the hotspot & the security settings, was just a post about the steps to initially set it up. That was here on this forum & there were screen shots of pages frm the vzw site that (1) of the vzw employees had posted to answer that question. It showed WAP - 2 being used.
    Now frm what I've read & understand, from searching for info on the diff. between the (2) settings, is that WAP / WAP - 2 is a much more secure setting than WEP. Also, I try to read-up on this kind of stuff to learn it, however, I'm still doing just that, learning & don't completely understand the diff. frm a tech. standpnt. I do sometimes do banking & paying bills online while traveling, so this is a major concern for me.
    Is the diff. between the security of the (2) settings enough to worry about, as far as the fact that I'm dealing w/ personal info? Obviously, I don't need somebody in next hotel rm., etc., being able to get into my connection & see my info on my laptop. Also, has any(1) had any luck connecting thru the hotspot w/ WAP or WAP - 2 on their laptop? If so, is the problem poss. settings on my laptop? Thank u in advance any help ya'll can offer.
    pcw67427

    Ahh, okay, P.C., I see what you are talking about.
    Network security is something that I've thrown myself into pretty heavily this year as we are more and more deploying networks within our audio and lighting systems for shows and concerts. In one instance, we have digital mixing consoles that can be controlled via that console's editing software running on a PC (or Mac, if you will). There are times where, instead of having the typical huge mixing console, 3 or 4 racks of power supplies, processing and effects units, and other supplies, I have a nice, comfortable chair and my X200 tablet PC mixing the entire show. I use the basic Linksys router connected to my Gateway notebook, the console, or consoles, and the speaker systems' processors. Then I use the X200 and Remote Desktop to, well, remotely control all of that.  One of my purchases later this year will be a real enterprise router, hopefully for more range and speed.
    Naturally, it would suck to no end if someone were to hack into my WLAN network, thinking they were logging onto someone's network to steal some internet time. The havoc that this could cause could potentially be a show-stopper. Or in extreme cases, cause some damage from accidental overdriving something. 
    Unfortunately, I've only been able to learn some very basic things because of my work load, shows, and just time in general. But I have learned that WEP is fairly easy to crack, while WPA is much, much harder, and WPA-2 being even more secure. What I would learn to know is WHY this is the case. I have enabled the WPA-2 security features in all of my routers. I also use the MAC address filters, although, yes, MAC addresses can be spoofed without too much trouble. But it's another layer of protection.
    As I mentioned in the PM, I plan to enable the hotspot feature on my account this week and play with the X's hotspot capability during our upcoming state fair. I'll be looking at the security settings pretty closely since I know how those road guys are (since I AM one, LOL), constantly hunting for a connection to log onto, LOL.
    As I said, I'm woefully lacking in thorough knowledge about network security. I'll bet there are some real wizs (wizi?) around here that can be more help than I can. I have heard a couple of IT guys say that they never, ever do banking and financial business on ANY wifi connection, regardless of the security method used. One of these guys has said that he'd rather do banking over a good 3G connection that he would any kind of WLAN. Whether there's anything one way or the other to these claims, I simply don't know, but I'd love to find out.
    One thing is for certain...Hotels are FULL of folks hunting for internet connections and logging onto anything they can, err, get their hands on. So it goes without saying that you need better encryption than WEP if you plan to do financial stuff online. I haven't looked, but can you turn off the SSID on the X's hotspot feature? That would at least, not tell the world about the network you have, LOL
    Hopefully, I'll learn some more next week. In the meantime, I hope some IT types can comment on this subject, And thanx in advance,
    Take care, 
    Geri O

Maybe you are looking for