Restricting changes to reports in "READ-ONLY" folders

Hi,
We are using Oracle Business Intelligence Enterprise Edition v10.1.3.4. We have created our own custom folder under the "Shared Folders" item in OBIEE Answers module; and have added some reports to it. The custom folder has been given "READ" access for all the users of the application.
With this setup in place we see that the users can modify the criteria of the reports in the custom shared folder but they cannot save any changes to the report. Is there any way we can limit the users from not being able to change even the criteria for the "read-only" reports?
Any help is much appreciated.
Thanks and Regards,
Piyush

I agree. If the users don't need to have any access to Answers, then that privilege should be removed. Not knowing your business rules and the privileges granted to users, I would suggest just allowing the users to just view the reports on the dashboard.
If you have other questions, I would suggest checking out the following website: http://www.biconsultinggroup.com and click on the Education tab. The BICG University courses that BICG offers are quite extensive.
Good Luck.

Similar Messages

  • How to change read only folders into normal ones...i can't get any filed from my harddrive

    how to change read only folders into normal ones...i can't get any filed from my hard drive..it shows read only

    Which HDD are you referring to, an external one, or the internal SSD?
    If external, which format is it in?

  • Safety issue: Another user can access some read only folders of mine

    Hi,
    big, serious problem: I had created a simple account user for guest access on my 10.5.7 system. Now i logged into this account, opened the finder and browsed my supervisor's home directory. Some folders i had created in there were readable (including the websites folder). Okay, they were set to readable (read only, not read write) according to the Information Window (CMD-I).
    But when i browsed them i decided to delete a file. I selected the file, hit the delete button and wooosh away it was. What the f..? I wasn't even asked for my supervisor' s password. It just had deleted the file.
    Crosschecking by creating a new folder and moving it into the very same directory revealed i had write access. NOT GOOD! (scream!)
    Anyone had the same shocking experience of OS X being not safe?
    However, after i changed the permissions of the respective folders to "no permissions" and then changed them back to "read only", they at least were read only.
    But hey - how can I tell which folders of mine are really safe? I can't check up every folder if another user on my system has "by accident" write permissions to a folder which reads "read only" in the Information Window.
    Help!
    Fox

    Foxboy71 wrote:
    Hi,
    I've created the first folder as a "Data" Folder *inside my home directory* to archive Downloads of different kinds (Programs / Utils / all this stuff). i wanted to have these Downloads accessible for all Users so that they can get the Data out of this folder. So the path is /Users/(me)/Data.
    The other folder is my "Website" folder, standard OS X.
    The exact Information of the Info Window:
    (Me) read&write
    admin read&write
    everyone read only
    the User account in question is not an admin account.
    now I'm completely confused. are you saying that you can write to this folder from a different account which is not an admin account?? that should not be possible based on these permissions. please double-check and make sure that the other account is not listed as admin in system preferences->accounts.
    also, these permissions are wrong anyway. did you change them yourself? the default permissions on a newly created folder in your home directory should look quite different. log in as your main user and make a folder at the top level of your home directory. what are the permissions there?
    P.S. the unknown user you see is quite normal if you upgraded to leopard from Tiger.
    My account is an admin account.
    Thanks for the reply,
    Fox

  • Restricting certain users groups to read only for certain folders

    Hi
    I'm not sure if this is the correct forum, but hey, hopefully someone might now the answer or direct me to the correct one.
    I'm writing a VB program to amend ACLs for specific user groups.
    Effectively, I make all prior year folders read only, whereas the default for the group is Modify, Delete etc.  This means they can continue to work in the "new year folders", but historic years is List/read only.
    I've got to the point the program does everything I want, i.e. stops folder creation7deletion, file & folder name changes, copying for the historic years, but does not prevent deletion of files in the folder.  Effectively I set Deny access on the
    historic folders.
    Testing using the Windows GUI would appear to resolve the problem is I change the Deny Special Permission (for the group) from "This folder only" to "This folder & files".
    Question then is how to I set this in VB, the default appearing to be "This folder only"
    Here's extract of my code
    Thanks
    IfvarDirectoryName.IndexOf("\"&
    Date.Now.Year) = -1
    Then
                FileAcl3.AddAccessRule(
    NewFileSystemAccessRule(GroupAdmin(0),
    FileSystemRights.Modify,
    AccessControlType.Deny))
                FileAcl3.AddAccessRule(
    NewFileSystemAccessRule(GroupAdmin(0),
    FileSystemRights.DeleteSubdirectoriesAndFiles,
    AccessControlType.Deny))
                FileAcl3.RemoveAccessRule(
    NewFileSystemAccessRule(GroupAdmin(0),
    FileSystemRights.ReadAndExecute,
    AccessControlType.Deny))
                FileAcl3.RemoveAccessRule(
    NewFileSystemAccessRule(GroupAdmin(0),
    FileSystemRights.ListDirectory,
    AccessControlType.Deny))
    Dim FileInfo3 As IO.FileInfo = New IO.FileInfo(varDirectoryName)
    Dim FileAcl3 As New FileSecurity
    If varDirectoryName.IndexOf("\" & Date.Now.Year) = -1 Then
    FileAcl3.AddAccessRule(New FileSystemAccessRule(GroupAdmin(0), FileSystemRights.Modify, AccessControlType.Deny))
    FileAcl3.AddAccessRule(New FileSystemAccessRule(GroupAdmin(0), FileSystemRights.DeleteSubdirectoriesAndFiles, AccessControlType.Deny))
    FileAcl3.RemoveAccessRule(New FileSystemAccessRule(GroupAdmin(0), FileSystemRights.ReadAndExecute, AccessControlType.Deny))
    FileAcl3.RemoveAccessRule(New FileSystemAccessRule(GroupAdmin(0), FileSystemRights.ListDirectory, AccessControlType.Deny))
    FileInfo3.SetAccessControl(FileAcl3)
    End If

    Ho Rohn
    Your right, when I added the flags I got the following error at execution
    {"No flags can be set. Parameter name: inheritanceFlags"}
    I've developed a work around, which gives me exactly - subject to further testing - what I want.  I simply mark each file in the relevant folders with a Deny Delete option.
    I will however explore the DirectorySecurity class option, but initial review of the www seems a little shy on VB examples.
    Thanks
    Perry
    You should be able to use FileSecurity and DirectorySecurity the same way (they have identical methods). Since this is a scripting forum, I'll provide a PowerShell example (which is fairly close to C# and VB; they all use the exact same classes):
    $varDirectoryName = "c:\folder"
    $GroupAdmin = "Admin Group"
    $FileInfo3 = New-Object System.IO.DirectoryInfo $varDirectoryName
    $FileAcl3 = $FileInfo3.GetAccessControl()
    $FileAcl3.AddAccessRule((New-Object System.Security.AccessControl.FileSystemAccessRule (
    $GroupAdmin,
    [System.Security.AccessControl.FileSystemRights]::Modify,
    ([System.Security.AccessControl.InheritanceFlags]::ContainerInherit -bor [System.Security.AccessControl.InheritanceFlags]::ObjectInherit),
    [System.Security.AccessControl.PropagationFlags]::None,
    [System.Security.AccessControl.AccessControlType]::Allow
    $FileInfo3.SetAccessControl($FileAcl3)
    I could have taken a lot of shortcuts when using the enumerations, but I think keeping it verbose helps show how similar the code can be.
    Does that make sense?

  • Changing multiple Read Only folders to Read/Write

    I have a rather large group of folders that are currently locked as Read Only which I need to change the names...I can do this on a one by one basis, but every single time I have to Get Info, Unlock, Enter Admin Password, Change Permission, Lock - then finally get to the task at hand.
    This is very tedious - is there any way to do the whole group of folders at once?

    Thank you, helpful but I get "You Have Mixed Access"....so I must still have to change them individually - or move all the locked/read only ones into a folder/directory of their own and try again...

  • JFileChooser and Read Only Folders in XP

    The following question concerns a Java application, not a applet or web service.
    If you are browsing a folder with JFileChooser the button to create a new folder is disabled if the parent folder is read-only. Under XP folders often show up as read only and cannot be easily changed by the user. Even if Windows reports that the parent folder is read only, it does not block the creation of sub-folders in it. I'd like to always make the create folder button active regardless of whether the parent folder is read only or not; that more truely reflects the folder creation permissions anyway and mimics the behaviour of an MFC file browser. How would I do this?
    I've even tried to add a listener to the file chooser so that as the user browses to a new directory I automatically change the write permissions of folder, but short of a system command, there's no way to change the write permissions from JAVA so I don't consider this a neat solution.
    I'm surprised that I haven't found similar complaints on the net. If you use a MFC file browser the create folder button is active, but a Java file chooser has it disabled for the same folder.
    Please help.

    What would you say to a new FileChooser? I love java but I'm no fan of Sun's choosers. (See www.MartinRinehart.com, Examples, ColorChooser.)
    Email me if you're interested in doing one.

  • Read Only Folders

    It may have been discussed before but I haven't found it. I from when I found out about mp3s have always saved Artist-track title release year. It works for me. So why when I rip from Itunes am I stuck with their format. I recently found out that WMP would change the file to what I wanted as said above. Now I find Folders Are Read Only, I went to Properties and changed it. 2 secs later "Read Only" Add to that It got album art from another album, so I deleted jpg's only to have them reappear. I then took files out into "My Music" Directory but they still won't change. Help, This is one of the reasons I won't have i in front of my music devices. Why I got it? It was the only place I could get some music videos that I wanted. Other than that, It's got info that the others hadn't and gave me info that the other's couldn't or wouldn't.

    Sorry New to this forum, I have Windows XP. I went to Microsoft Support to see if I could over-ride the command on the folders. I opened the CMD box typed in what they said, only when I tried to put in the path that's where I got lost, it didn't recognise my commands. Thanks for the quick reply. Hope you can help I have started to rip the albums again, only this time I have to copy paste the info and change dates. I just checked, other folders are showing faded read only as well, but info is being changed by media player except the itunes files.

  • Random change whole folder to read only

    I had a problem renaming some files a few days ago and it turns out the whole folder was set as read only. Seams I have random folders that I are suddenly being set as read only. Not sure if this is LR or not. But I have only ever experienced it since using LR V1.0. So I am assuming some connection.
    Any body else?
    Any ideas to stop this form happening? It is not a huge deal, but it is very frustrating to have to change the folder properties in the middle of a flow...

    Same experience here.
    Maps get set to read-only.
    OS: Windows 7 64
    Adobe Photoshop Extended 12 CS5
    and many more Adobe products...

  • Lenovo G510 Windows 8 Read Only Folders

    Hello everyone,
    I just bought a new Lenovo G510, and I installed the Windows 8 that was on the partition.
    The installation went fine, and everything is in order.
    The only problem is that ALL my folders are Set to READ ONLY. Is this something normal for Windows 8 and how can I set it to a different state, since I know that in future that will be a problem?

    hi francis17583,
    If the G510 system came preloaded with Windows 8, there are two ways on how you can restore the system to factory settings:
    Option 1:
    - Turn off the machine and press the OneKey Recovery Button
    - On the Novo Menu, select System Recovery and follow the screen prompts.
        - Link to picture
    Option 2:
     - Follow this guide on how to create a recovery drive
     - Boot from the recovery drive and follow this guide on how to reset the PC.
    I recommend Option 1 in case you don't have a flashdrive (8GB or above) but ensure that you have a backup of your important files as the above procedure will wipe the OS drive.
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Copying Read Only folders when original "owner" has been deleted?

    I am considering creating a Read Only folder on an external disk to download my raw images to. PhotoMechanic allows you to "ingest" to 2 diferent locations when downloading off a card, so one of these locations could be Read Only for safe keeping of the originals.
    Thinking ahead though - if the startup disk fails some time in the future and the administrator account is lost will I be able to change the rights to this folder from a newly created user?
    G5 PM dc2Ghz, G4 12" PBk   Mac OS X (10.4.6)  

    If it's on an external, non-booting disk you can check the "Ignore ownership on this volume" at the bottom of the GetInfo window for the disk. Anyone can read them then. If you have an admin account you can do anything, include poke around in another user's stuff. And, of course, should you install a fresh system on a new drive, just be the first admin user with the same user name (assuming that's what you are now) and the stuff will still be yours.
    Francine
    Francine
    Schwieder

  • When trying to save a file under Excel 2008, ver 12.3.3, with extension .xlsx or .xlx, I am told it can't be saved because it is "read only." How do I change the file from read only?

    When I try to save a file using Excel 2008, ver 12.3.3, with extension either .xlsx or .xls, I get a message saying it cannot be saved because it is "read only." How do I change it from read only? (And how did it ever get to be read only?)

    Save the file as a new name. Close and Open the new file.
    Most likely when a file transfer happens, Office makes the file 'Read Only'.
    If you have two opened files with the same name, the last opened file will be 'Read Only'.

  • Changing a Record to Read-Only after an event.

    I have a Developer application that needs to be modified. This
    application includes several fields as well as a comments
    field. I'd like to change all updatable fields (not to included
    the comments field) to READ-ONLY after a certain event. Then
    after a certain date, I'd like to make the comments field READ-
    ONLY.
    Do you have any suggestions?
    Regina Grimes
    919/874-3140
    null

    Dear Regina,
    Have you tried to set_block_property in pre-record trigger to update allowed/not allowed depending on the event. And in post-record update not allowed. These triggers must be on block level. Also on item level to the item 'Comment' define pre-item trigger where take a new decision whether you want to open the entire block or not, the same way as on block level triggers. But in post-item trigger always make the entire block read-only again.
    Regards
    Jan Kramle

  • How Make the Report Fields Read only

    Hi I have drop down selection in a Report field.After selecting a particular value and submiting it the field should become readonly.

    Hi SanjayBala!
    Create a conditional branch that will be executed if your select list submits (the branch must be conditional. The conditiontype is request = e1 and e1 is the name of your select list). This Branch ought to have a request (lets say select_list_ro). Create a read only condition for your select list (request = e1) that comes to use if the current request is select_list_ro.
    Hope that helps!
    yours sincerely
    Edited by: Florian W. on 03.02.2009 14:04

  • Urgent:Regarding Reports for read only field.

    Hi All,
    Does it happen that the fields which are read only or system defined does not get reflected in report subject area or so ? I have created one report where one field 'Triage' which is Look up window and Picklist read only field is not showing up values in report subject area.Is this due to the field which is a Picklist read only field.
    Quick response will be highly appreciated!!
    Thanks and Regards,
    Manish.

    user12880720 wrote:
    Hi All,
    Does it happen that the fields which are read only or system defined does not get reflected in report subject area or so ? I have created one report where one field 'Triage' which is Look up window and Picklist read only field is not showing up values in report subject area.Is this due to the field which is a Picklist read only field.
    Quick response will be highly appreciated!!
    Thanks and Regards,
    Manish.Hi Manish,
    You do not specific if this is a multiselect picklist you are refering to or what type of reporting you are trying real-time or analytics?
    Anyway please see the below from the help file:
    Multiselect Picklists
    Multiselect picklist (MSPs) values are not supported in real-time reporting subject areas. They are supported in the historical subject areas for the following subject areas:
    Account
    Activity
    Contact
    Dealer
    Lead
    Opportunity
    Service Request

  • External editors and read-only folders

    I'm trying to use LR4 to work on NEF images I'd imported from a read-only directory. While regular LR4 editing works, using an external editor doesn't because LR4 insists on trying to write a file into that read-only directory. Is there a way to persuade LR4 to put the files it uses to communicate with external editors somewhere else? I intentionally want to keep my NEF directories read-only because they're synced with other programs (which would get upset by LR4 sneaking extra files in there) and because I don't want to accidentally alter anything there.

    Not for secondary editors.
    Only the primary Photoshop CSx can open a file wihtout creating it first. Then tiy ba use Save As from Photoshop to choose another location.

Maybe you are looking for

  • Connect Apple TV 2 to Receiver

    Hi I have not bought Apple TV jet, but i'm thinking of doing it, but i do not know if i will be able to connect it to my sony receiver called: Sony STR-de495P Here you see a photo of the receiver from behind: So my question is, will I be able to conn

  • Cable extension for 24" Apple Cinema Display

    Hi, Anyone have issues with Dr Botts Extension cable for the 24" Apple Cinema Display? Thanks

  • Parallel  query in Oracle 11g

    We use Oracle 11g DB on windows2008R2. We wrote very long and heavy SELECT SQL query usign several table join and sub-queries and it take very long time to get result. We did SQL statement tuning as much as we can do so far. ( I will get the Executio

  • Layer Mask Suddenly Not Working

    Hello! I have been using PS 6 for several months now, with no problems; I totally love it!  I tend to do a lot of heavily composited photos, so I use layer masks a lot.  All of a sudden this afternoon, they aren't working.  I am 100% sure I am select

  • Annotations do not work in Reader for iOS (but do for Reader on other platforms)

    I sell a book as PDF and it is encrypted against changing the contents, but annotating is allowed (highlighting, balloons). It turns out that  most PDF readers work as expected. The ones that don't (and that I know of so far) include Apple's Preview.