Security Setup not working

Hi,
As a part of security setup we have done the following things:
- Users created and assigned as members of groups. One group is created per entity.
- Groups have been provisioned for the application and given security class access
- Security classes have been created and attached to metadata. for e.g, all entities have been attached a Sec class in properties.
- In application settings, Node Security = Entity, Security for Entities is Checked, Enable Metadata Sec Filtering is also checked.
Even after this, the security setup doesnt seem to be working. A user with minimal provision (only Data Form Writeback from Excel) and no security class access is also able to see all the entities, also other forms, grids, etc which have been attached diff security classes. He is able to edit the forms and grids.
Can anyone help out as to what is it that we are missing?

What role(s) do the users have? Any user with the Administrator role bypasses class access checking and is assumed to have full access to everything. No other role provides this bypass.
Editing forms and grids has nothing to do with Entity security. If the forms and grids have no class assigned to them, they use the [Default] class which I suggest all users have All rights to anyway. If there are grids/forms you do not want users to change, you should assign a specific class to them, other than [Default].
Enable Metadata security filtering should restrict users from seeing the members for which they have None access to, but as long as they have Read or All access, they will see the members in a pick list.
--Chris                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • Dimension security is not working if user have two roles in SSAS while connecting from Excel

    Hello Genius,
    I am facing the issue when user trying to connect the cube from excel if user have more than one role in ssas db.
    Role 1: Countryuser, I have implemented the dimension security with country
    dimension and  countrycode attribute.
    Role 2: CityUser,   I have implemented the dimension security with
    city dimension and  citycode attribute.
    If user is mapped to any one of above role dimension security is working perfectly according to the logic but mapped to both role, cube is exposing all the data in this case dimension security is not working.
    Please give me the solution to fix this issue or incase I am wrong kindly advice.
    Thanks
    Ganesh

    This is the expected behaviour as allowed sets in roles are unioned together.
    This is not a problem when your roles are restricting across a single attribute.
    eg.
    US_role = {[Geography].[Country].[USA]
    France_role = {[Geography].[Country].[France] }
    as someone in both roles ends up seeing {[Geography].[Country].[USA], [Geography].[Country].[France] }
    But when you have different attributes:
    NY_role = {[Geography].[City].[New York] }
    France_role = {[Geography].[Country].[France] }
    The first role is unrestricted on countries and the second is unrestriced on cities which is effectively:
    NY_role = {[Geography].[Country].AllMembers , [Geography].[City].[New York]  }
    France_role = {[Geography].[Country].[France], [Geography].[City].AllMembers }
    And when you union those two sets together you end up with:
    {[Geography].[Country].AllMembers , [Geography].[City].AllMembers }
    Which means that someone in both roles can see everything.
    So if you want to restrict someone to City = New York and Country = France you have to create a
    single role where both attributes are restricted. So if you have a lot of these combinations you will either have to create a lot of "combination" roles or look at dynamic security.
    The other thing that might work is make sure that you only give some users access to certain cities and others access to certain countries. It's the mixing of the two for a single person that causes the issues.
    http://darren.gosbell.com - please mark correct answers

  • Secure boot not working with MSI Z77a-G45 And system reserve not showing

    Ok so i re did my windows after i did a zero fill on my hard drive as it was showing a corrupted sector on my disk that seemed to fix it for now, until it comes back if it does crossing my fingers it gone for good. But now i can't seem to get Secure boot to work i mean i did not have it before as i just slapped the motherboard in with a existing windows, that was to be expected but this is a clean install of windows 8.1 and i even have secure boot on but its not working and reports as off in windows.  Is it because i have my bios set to legacy+UEFI??? would that make secure boot not work??. i even went as far as turning it off and back on again the secure boot setting nothing made a difference.  I mean its not a big deal bit would be nice to know why its not working, also another wired thing and i will post pictures of it, as i cant see my system reserved partition in disk management but diskpart says it there, i will post those pictures any ideas??. 

    fixed it is my legacy+uefi another forum got back to me.

  • ADF security logout not working

    Hi,
    Using ADF Faces and JDeveloper 11.1.1.1.0 (5407).
    I have a secure ADF application, my login is working fine, however once I attempt to perform a logout using methods indicated in both the Fusion Developer's Guide and various blog posts my application begins to act strangely.
    Using the Forms based authentication I have login.html and error.html setup and working.
    I have a home.jspx (unsecured, no bindings whatsoever) as my landing page, and welcome.jspx as my successful authentication redirect page, both on my adfc-config diagram and with a control flow case 'login' between them.
    In my jazn-data.xml file I have granted the 'authenticated-role' access to the welcome page.
    The web.xml file includes the login.html and error.html files listed.
    The above works, I can login and am successfully redirected to the welcome page with a user account I have specified, and if I use wrong login information I am redirected to error.html.
    Now, I have tried 2 methods to get LOGOUT working properly and both are not working.
    Firstly and most simply I tried using the following on my welcome page:
    <af:commandNavigationItem text="Logout" id="cni1" destination="/adfAuthentication?logout=true&amp;end_url=faces/home.jspx"/>When I click the link, this does redirect me to the home page and there are no warnings/errors in the server log.
    However... when I then click on the Login link on the home page that should prompt me to login again, the home page just flickers and nothing happens. Again no warnings/errors in logs.
    I am then forever stuck on the home page.
    The second method I tried involves using a backing bean, which I have registered in my adfc-config.xml file with 'request' scope.
    On my welcome.jspx:
    <af:commandLink text="Logout" id="gl1" action="#{loginBean.doLogout}"/>My link calls the doLogout() method in my backing bean containing:
      import java.io.IOException;
      import javax.faces.context.ExternalContext;
      import javax.faces.context.FacesContext;
      import javax.servlet.http.HttpServletResponse;
      import javax.servlet.http.HttpSession;
      public String doLogout() throws IOException {
        ExternalContext ectx = FacesContext.getCurrentInstance().getExternalContext();
        HttpServletResponse response = (HttpServletResponse)ectx.getResponse();
        HttpSession session = (HttpSession)ectx.getSession(false);
        session.invalidate();
        response.sendRedirect("home.jspx");
        return null;
      }The application DOES redirect me to home.jspx however I get the following error in the logs:
    java.lang.IllegalStateException: Cannot forward a response that is already committed
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:122)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:410)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         Truncated. see log file for complete stacktrace
    AND...the same thing happens as with my other attempt, I am stuck on the home page and clicking the login link just flickers the page.
    I feel as if I have followed the Fusion Developer's Guide on how to do this down to a T, however I am not getting a working solution.
    Any help would be greatly appreciated.
    Thankyou,
    Matthew.

    I have had a few developments...
    I found out that after I have been redirected to home.jspx where my Login link just refreshes the page on click... if I instead manually change the end of the URL in the address bar of my browser to /welcome.jspx, then it works...I get prompted to login again. This proves that I am actually being logged out, if I change the URL manually before I click my logout link (calling the logout method) it does not request for me to log in again.
    So it seems that the problem lies with my action reference on my login link.
    <af:commandLink text="Enter" id="cl1" action="login" inlineStyle="font-size:small;"/>the action 'login' works UNTIL i logout, then it does not work anymore...
    Second to this, I tried a different LOGIN method using:
    <af:commandNavigationItem text="Login" id="cni1" inlineStyle="font-size:small; text-decoration:none;"
                                            destination="/adfAuthentication?success_url=faces/welcome.jspx"/>When using this way to login, I can login, logout AND LOG BACK IN successfully...
    However as soon as I click on ANY component that uses a control flow case it just refreshes the page.
    re-proving from the first example that the problem is that control flow cases stop working after a logout.
    so basically, once I log out and then try to navigate a control flow case, the page I am on just refreshes and the navigation does not occur.
    Surely someone now can elaborate on this.
    Regards,
    Matthew.

  • The pdf security is not working in Flash Paper

    Is anyone facing a similar problem.
    The pdf security if applied with a passsword to select the
    text & graphics, printing, etc does not work. It selects any
    and every text in flash paper and pdf. Does anyone know how can one
    prevent to copy any text or graphics ...

    I have the same issue. My phone says the files are corrupt and they stay corrupt if I forward then from my phone. It like the phone checks for something in the PDF, when it never did before.

  • 827H router web setup not working

    We were having problems with our 827H router, so I decided to reset it to the factory defaults and re-run the quick setup. I've done that before with no problems.
    This time, after it loads the configuration in the web setup, it keeps checking the model, IOS version, etc.--over and over again. It won't stop, nor can we exit out of it to get to the quick setup.
    Originally the router was connected to a hub. When we couldn't configure it from the web setup, we put the router directly onto a pc with an ethernet cable. We could ping the router. Using the console cable, we are able to see the router's settings. (See attached)
    The pc was set to dhcp. The dns was originally set to "Obtain automatically". We also tried to set the dns and the gateway to the router's ip, and added the domain controller's dns as another dns server. Nothing has worked.
    Any help will be greatly appreciated.
    Thanks!

    Your description of the symptoms is quite puzzling as is the console log that you sent. You say that you connected a PC directly to the router. Was that using a cross over Ethernet cable?
    You say that when you connected the PC to the router you could ping the router. What IP address was on the PC at that point.
    The console output that you included has a kind of garbled output in the show run. It looks as if two things were outputting at the same time. I am not clear if there were actually two things happening together or if the router is really messed up. (Though most of the config that showed up looked reasonable)
    I would suggest that you connect to the console port again and capture all of the console output. I would suggest that whle you are connected and capturing output that you power cycle the router (it may be very helpful to see what messages go to the console while the router is booting).
    After the router boots again, you may be able to use the web interface. If the web interface does not work you should be able to use the console interface to get a congif that should work basically.
    Try these steps and post the output. Maybe then we can find a solution.
    HTH
    Rick

  • CS5 site setup not working

    I recently installed the CS5 version of Dreamweaver. When the program starts, I click on "dreamweaver site..." and the site setup dialog box pops up. "Unnamed site 2" is high lighted in blue. The only thing I can click is the folder Icon, help, save, and cancel icons. Nothing else works. I cannot click on Advanced Settings, Servers or Version Control. Does anybody know whats going on and how to fix this?

    I am also having the same problem. If I persist on clicking 'Advanced Settings' it will sometimes open but then I am unable to click on the 'Default Images folder' option and the 'Browse Folders' icon does not work. I can also not get to the other options with the mouse, such as 'Local Info', Cloaking' etc.As the previous person said, using the Tab and Cursor keys does work, but the mouse does not.It is only in Dreamweaver CS5 that I am having this problem.
    I too have a new Wacom Intuos 4 Tablet, just in case that could have anything to do with it.
    Running Windows 7 64bit with CS5 and all updates completed for everything including the Logitech mouse.
    Thanks in advance to anyone who can help.

  • USB security key not working with Mac

    Hello! I have a windows compatible medical program that I am trying to run on parallels on my mac. The program uses a USB security key to work. Mac nor parallels (i have win XP running on it) is detecting my security key. The key is recognized on a different windows XP PC though. any thought??? greatly appreciated!

    Hi OGELTHORPE,
    My USB stick was originally formatted as MS-DOS (FAT) as default and out of the box. As I understand this is the same as FAT32 on Win (?)
    MS-DOS (FAT) configuration was however what led to all of my problems stated above.
    That is why I'm confused.
    Before writing to the discussion board, I reconfigured the stick to ExFat, based on some similar research, but an article discussion advised the ExFat not to be a stable nor reliable configuration. I do not know why this issue was mentioned, but several users logged this as an issue of the ExFat.
    If you have a USB stick meant for Mac use only, not cross-platform, do you alter configuration from MS-DOS (FAT)?
    (Primary use is for Mac backup only, I'm willing to give up the cross-platform requirement)
    I also don't understand why my Mac didn't detect a second USB stick, prior used on a different Mac.
    Thanks!

  • Nokia Mail - "Other" Account Setup Not Working

    Help.  Nokia Mail Other/Manual Setup Not Accessible.
    A previously manually setup IMAP account got deleted from my C3-00.
    It is an account that requires manual setup, but when I tried to set it up again under "Other" the Nokia Mail App will no longer let me.  It had been working before and I inputted manual settings when it was previously set up.
    Now under "Other" instead of going from the mail address and password screen to the manual setup (POP3/IMAP) screen it just says: "Could not sign in. Try again."
    The email address is on the @mytyndale.ca and I need to input these settings manually:
     IMAP setting:  Server name: pod51011.outlook.com  // Port: 993 // Encryption method: SSL
    SMTP setting: Server name: pod51011.outlook.com // Port: 587 // Encryption method: TLS
    Please help or fix this for me. 
    If there is a way to force manual setup that I am missing let me know about that.
    NOTE: I was able to get the account setup by putting in an incorrect email address and then putting the correct login information in the manual setup  set up sceeen.  But Nokia Mail will not let my change my email address after the setup has been made.
    Phone Model: Nokia C3-00
    Firmware: 08.63
    Mail Revision: 2.0.24

    SunshineBC, on your desktop computer, when you go for webmail.eastlink.ca, are you able to login with your password? (double-checks we are using the right credentials). Are you able to log-in via webmail.dccnet.com?
    Now, let us double check the origin of your request (IP address outside of Canada). Please, try the same from within the Nokia browser of your phone because it does use a proxy based IP address. Does it work? If yes, please, try Opera Mini as well – because that useses yet another IP address. In all these browsers (yours on your desktop, in Nokia browser, and in Opera Mini), please, check your IP with my-ip.mobi. Please post your IPs and results (worked, did not work) and I check the location of that IPs if there is a did-not-work. Perhaps Eastlink has an outside filter in combination with some passwords – the procedures above checks that.

  • Flash Global Security & Links Not Working?

    Hi all,
    I am absolutely near some sort of breakdown with my Flash website....I really hope someone can help!
    I am building my portfolio website; I'm using Dreamweaver CS3 (on Mac) and inserting Flash animations in the centre of a table in each Dreamweaver page. All was working fine until I built the Contact page animation on Flash last night. I linked in some external websites to my Blog, Flickr and Twitter and also need a button to launch the user's default mail client.
    When I tested the animation (CMD+ENTR) in Flash the links appeared to be working, if after a few clicks. I then inserted the Contact animation into the Contact.html page on Dreamweaver and tested it in Safari. A dialogue box came up regarding something about security settings and Flash 8 (makes no sense as I am using Flash 9); and I ended up on the Global Security Setttings panel page on the Adobe website. I selected the entire folder the website is in on my hard drive under "Trust Files in these Locations". Now the ENTIRE website's flash animations are not working. There are links to internal pages of the site (i.e. a link to the "Contact" page in the animaiton on the Home page) which are now not working either. No error messages come up when I test the movie in CS3 either. I have refreshed Safari, restarted the Mac and redone the folder on the Global Security Settings panel. Also loaded the entire website onto a PC this morning, all links not working either.
    Actionscript 3 on the Contact page looks like this:
    import flash.events.MouseEvent;
    //---Blog Button---\\
    var getBlog: URLRequest = new URLRequest("http://www.myblogsdomain.com");
    Blg_Btn.addEventListener(MouseEvent.CLICK, eClick);
    function eClick(event:MouseEvent):void{
    navigateToURL(getBlog, "_self");
    //---Twitter Button---\\
    var getTwitter: URLRequest = new URLRequest("http://www.twitter.com/mydomain");
    Twt_Btn.addEventListener(MouseEvent.CLICK, eClick1);
    function eClick1(event:MouseEvent):void{
    navigateToURL(getTwitter, "_self");
    //---Flickr Button---\\
    var getFlickr: URLRequest = new URLRequest("http://www.flickr.com/photos/mydomain");
    Flkr_Btn.addEventListener(MouseEvent.CLICK, eClick2);
    function eClick2(event:MouseEvent):void{
    navigateToURL(getFlickr, "_self");
    //---Email Button---\\
    var getMail: URLRequest = new URLRequest("mailto:[email protected]");
    Eml_Btn.addEventListener(MouseEvent.CLICK, eClick3);
    function eClick3(event:MouseEvent):void{
    navigateToURL(getMail, "_self");
    I'm not 100% sure if the e-mail AS3 I set up is correct, but as none of the links are working I can't test it. I cannot provide a link to the website as it isn't uploaded yet, and I don't really want to upload it not working properly.
    Any help at all would be gratefully received, I'm really, really on the brink of some sort of breakdown. Thanks.

    Thanks Samuel.Wong and Ned Murphy for the information.
    I'm not actually sure what happened but my website suddenly started working again today, I think possibly by selecting "Always Allow" on the Global Security Page as well as inserting every individual file as well as the folder under "Trusted Locations" has also done the trick.
    The external links appear to work when I test the movie in Flash CS3, but the same warning comes up once the movie is inserted into a Dreamweaver html page and tested in Safari. However I think when the links (all except the email ) appear to be working in Flash then it should be just fine once uploaded onto the server. Many thanks for your advice once again.
    Maxx

  • Acrobat X Security Settings Not Working

    I made a PDF portfolio with Acrobat X and set password security to not allow any changes. The document title says it is SECURED, but pages can still be extracted. What is going on? What did I miss?

    I also tried changing the compatibility from Acrobat 7 and later to Acrobat X and later. Still no go.
    Setting security to "any changes except page extraction" is ineffective. The security dialog says that page extraction is not allowed, but I can definitely extract pages. Setting security to "no changes" is also ineffective.
    Here is the dialog from "any changes except page extraction"

  • E1000 Guest password setup not working - security is not activated

    I used Cisco connect to set up guest access with a secure password. Cisco Connect now indicates guess access is allowed and shows the password. However, when I actually try to connect to the guest network, it shows no security at all, and I can join the network without a password. What could be wrong?

    In this case, Guest network gets connect to the network without asking the password. But any one try to access the internet then at that point of time it will ask for the guest password..

  • Web-Based Setup, not working

    Hello...
    When I go to the Web-based setup...wireless/security..
    nothing is available.
    I can't change the keyphrase, or security type WEP WPA andy such darned thing.
    It's just not there 90% of the time.
    Then once in a blue moon it shows up.
    Upgraded all the firmware and such, factory default and the likes.
    It used to work at one time. If I could just drive there or contact the wizard of OZ maybe something might happen.
    help.
    Thank you
    Message Edited by crazygirl on 04-06-2008 06:47 AM

    I totally lost my internet connection via the router WRT54GS V6
    I am connected directly into the computer from my cable modem.
    I have tried everything. Upgarded firmware, factory default reset, setting the software again and again.
    When I run Easylink Advisor it always reads, no internet...like I said the modem is working when plugged directly into my computer.
    All proper lights are working on the router and modem.
    Could the router be just be broken?
    It seems to be getting worse and worse.
    help please.

  • Self secured page not working in multiple sessions of same browser

    Hi
    I have created a selfsecured page by making security mode of page 'selfsecured' and adding validateParameter() in page controller.I didnt do guest user/resp setup as I want user to manually provide user id and choose responsibility,XLA_LINESINQ_GL_DRILLDOWN is a seeded function so no changes there.
    I am seeing very inconsistent behavior.
    1)At some times when I invoke function through url
    http://rws60180rems.us.oracle.com:8049/OA_HTML/RF.jsp?function_id=XLA_LINESINQ_GL_DRILLDOWN&jeHeaderId=64524&jeLineNum=1&jeSource=Payables&searchType=customize
    I get error "You are not authorized to access the function SLA: View Subledger Journal Entry Linesfrom a GL Journal Line. Please contact your System Administrator."
    2)On other times url works and user is taken to Ebs R12 login page,after providing login credentials user is able to view the page.But If I invoke same url or url with different parameters in different tab of browser or different window of same browser,get following error.Basically user can invoke this function and use this url only one at a time which is not practical in real world
    "You are trying to access a page that is no longer active.
    - You may have attempted to access to this page directly by bookmarking the page or copying the URL. This page does not support bookmarking.
    - The referring page may have come from a previous session. Please select Home to proceed."
    Am I missing something in my implementation?Are there any fnd profiles which control page behavior.Does OAF support that self secured pages successfully open in multiple browser windows.
    Preeti

    Hi,
    Is there any specific requirement to make the page as self secured, as most of the self selcured pages are build for guest user account. If there is any, kindly share.
    Now lets talk about the behaviour of the pages in different scenarios
    1) I get error "You are not authorized to access the function SLA: View Subledger Journal Entry Linesfrom a GL Journal Line. Please contact your System Administrator."
    Comment: As OAF pages does certain initialization like setting org_id, language etc based on the login user. But as you are trying to access the page by directly hitting the URL on browser, this might be one of the reason that you are getting above error.
    2) On other times url works and user is taken to Ebs R12 login page,after providing login credentials user is able to view the page.But If I invoke same url or url with different parameters in different tab of browser or different window of same browser,get following error.Basically user can invoke this function and use this url only one at a time which is not practical in real world
    Comment: As there is an active transaction and session for the browser, so it won't allow you to start with another transaction. But still can you try to do the same in another machine. Some of the browser allows you to have different session.
    Regards,
    Gyan

  • Wireless Security - DOES NOT WORK?

    My problem: AEBS works fine UNLESS I use any Wireless Security. If I set security to WEP, WPA/WPA2 Personal, or WPA2 Personal then the following occurs:
    -- the AEBS DOES NOT appear as a base station in AirPort Utility
    -- the Wireless Network DOES appear as an available Wireless Connection in the Menu Bar
    -- I CAN connect to the wireless network but no internet connection is available
    -- I CANNOT alter settings of AEBS unless I connect through ethernet (or reset AEBS to factory default)
    -- if I set Wireless Security to NONE then everything works fine
    Here's my setup:
    Airport Extreme Base Station:
    -- Wireless Mode: Create a Wireless Network
    -- Radio Mode: 802.11n (802.11 b/g compatible)
    -- Channel: Automatic
    -- Connection Sharing: Off (Bridge Mode) [I am connecting through a pre-existing router - only need the AEBS for 802.11n and disk sharing]
    -- IPv6: Link-local only
    MacBook Pro Core 2 Duo
    -- AirPort Extreme Update 2007-001 installed
    -- 802.11n enabler installed
    Questions:
    1. Any ideas on how to fix?
    2. If this is a known bug - any idea how long until it is fixed? Am I expected to run without security until then (this is directed to Apple)?
    3. Will a fix likely be via firmware update?
    As a recent "switcher" so far I am majorly disappointed in this product.
    Thanks for any insight.
    MacBook Pro   Mac OS X (10.4.8)  

    Sorry, I forgot to mention something else to try. Open Keychain Access, /Utilities/Keychain Access/, and delete the keychain for the wireless network. Then open System Preferences>Network and remove the wireless network from the Preferred networks list. Now try connecting again, you should be prompted for the wireless network password. Also, make sure that you are using the correct number of characters in your passwords. WEP doesn't seem to be picky about how many characters you use but WPA/WPA2 passwords must be between 8 and 63 ASCII characters.
    Other than what I've mentioned above, sounds like you are setting everything up correctly and seeing as you have two Macs both exhibiting the same behaviour then I would definitely lay the blame squarely on the base station. If you're willing, the only other suggestion I have is to reset the base station to factory defaults, hold the reset button down for at least 5 seconds, and start again. Other than that, I would return it for exchange, if your willing to give another base station another chance.
    Just so you know, my base station was set up in a matter of minutes and has worked flawlessly. So, they aren't all that bad.

Maybe you are looking for