Security Refresh for Users in the Group

Hi John,
I assigned an user with Analytic services admin privileges in the shared services. After the refresh security from shared services through EAS console, I clicked on security and clicked on users. I could able to see that user as an administrator(user type).
But when i assigned the same analytic services admin privileges at the group level, all the users in that group are
not showing as administrators in the EAS console after security refresh.(showing as user instead of administrator).
Can you explain why?
Thanks.

Hi,
If you look at the group in EAS then it should be displayed as administrator, then all the users assigned to that group will take on the administrator privileges.
It will not show each user as as administrator just as a user that is the way it works.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • Initiator Task not visible to other users in the Group

    Hi
    JDeveloper 11.1.1.6, WLS 10.3.6, BPM 11.1.1.6
    I have a Process and the swimlane containing the Initiator Task is assigned to a Group.
    All the users in the group are able to Initiate the Task.
    But when the Task is initiated, the Task is assigned to the User specifically, but not to the Group. I guess this is the default behavior.
    The Human Task Assignee - defaultPerformer for the Initiator Task is uneditable in the initiator.task file.
    What I was expecting is that, since the Initiator swimlane is assigned to the Group, All the users in the Group should be able to see the Tasks initiated by anyone in the Group.
    I want this behavior in the Initiator type of tasks specifically. (The normal Tasks other than Initiator tasks are working as expected.)
    The reason why we want this is, let us say after the task is created, and before it is submitted, there is a lot of work to be done, for example, data entry, should be done by many people in the Group.
    If all the users in the Group are able to see the Initiator Task, then it will help to share the responsibility of data entry among the users of the group.
    I tried Reassigning the task to Group, and it works, but we am looking for something automatically assigning to the Group when the Process is created. (We may not be using the Oracle BPM Workspace at all).
    Can anyone please tell us if there is a way to make the Initiator Task automatically assigned to the Group instead of just the user?
    Thanks for any help
    Sameer

    Hi Ashwini
    Thanks for replying.
    I did the same and it was working for me even if the Type is Single.
    I just gave the Group name and all users were able to see the task. This is fine with me.
    I just observed one more thing.
    When the task is created, all the users in the Group are able to see it in 'Me & My Group'.
    But the data entered by the creator is not seen by other users.
    There is an action 'Save' in the Task. If the creator clicked on it, then the task is automatically 'Acquired' by the creator.
    Other users in the group are able to see the task and the saved data, but are not able to Submit.
    What I expected the Save button to do is only to Save the data in the Payload. Not Claim it.
    Is there a way to make the payload data only to save but not to claim the task?
    Thanks and Regards
    Sameer

  • How can I create a form for users wherein the text field will expand to accommodate additional text?

    How can I create a form for users wherein the text field will expand to accommodate additional text?

    You need to use LiveCycle (PC Only) to create a dynamic form like that.
    The best you can do with Acrobat to view all of the text in a field is to set the field to multiline, and set the size to "Auto" (If you don't set the size to 'Auto', you can enter as much text as you wish, but the user will need to use the scrollbar to view all of the text.)

  • What would cause adobe connect to freeze in a session for users, while the moderator session did not

    what would cause adobe connect to freeze in a session for users, while the moderator session did not

    HI rogerstam1
    Is screen being shared at that time when addin freezes?
    if yes if this coems again could you just stop screen share and try it again.
    hope this helps.

  • Why does my iphone not receive group messages if there is a non iphone user in the group?

    I Have an iphone 4 with the latest update. Whenever anyone sends a group message to me when there is a non-iphone user in the group, my phone does not receive the message. I've tried restarting and it doesnt work. i have sms messaging turned on. Any help would be greatly appreciated

    iOS: Understanding group messaging
    http://support.apple.com/kb/HT3529
    http://support.apple.com/kb/ts2755

  • Expire date for user in the system

    HI ,
    There is a place when we can defined expire date for user in the system ,
    something that similar to role that provided to user from 24/02/2010 - 25/02/2010 .
    i search in su01 and not found anything .
    any idea?
    Regards
    James

    hi james,
    i thin k you can do it in su01 logon data tab--->valid through (in validity period).
    Hope this will help you.
    Thanks,
    Tanmaya

  • Need help on making desktop application to web application having individual controls for users at the same time

    Hi,
    I have an desktop application and the following are the functionalities of the same.
    1. User inputs the data file with path (log file) to parse the required data.
    2. Once the user enters the path and starts the tool with start button, the tool parse the required data in terms of records and gives the records (creates output file containing all the useful records).
    3. Have popup window to display a group of data.
    4. Have popup to Plot graph. When a button is pressed in main GUI, the popup is opened giving scroll bar menus to choose the data for the graph. User after selecting the data (multiple Y axis) press another button to plot the graph. The input to this popup is the output file generated by this tool.
    5. The main GUI has buttons (play, step forward, step backward, reverse play, pause, stop, 1st record, last record - like tape recorder buttons) to play the records one by one.
    This application is used by many people and since its a desktop application (created in labview 2009), the user every time has to manually install the newer version.
    "So it is required to make the application into web based so that, the user can individually access the tool at the same time (different instances same as desktop app) and run their own data files from their system. The output files to be stored in the respective user's system."
    Can this be done using Web Publishing or Web Services present in LabView?
    I tried using Web Publishing but it gives control to only one user at a time and loading the files from the client path to run the tool is not possible.

    Simple. 
    If all you are worried about are updates, just put the EXE on a shared network drive and have your users launch it from there.

  • PS Script to find the list of users and the groups in a Workgroup server

    Hi There, could you please explain on how to get a complete list of local users and local groups in a "Workgroup" server to which they belong to using Powershell. I'm able to get the users list but couldn't find any help in finding
    the script to find to which localgroup the user belong to. Anticipating your response. Also let me know the cmdlet for Win2k3 servers to find the same.

    Here's some code from David Pham (don't remember wher I fund this code):
    Trap {"Error: $_"; Break;}
    Function EnumLocalGroup($LocalGroup)
    $Group = [ADSI]"WinNT://$strComputer/$LocalGroup,group"
    "Group: $LocalGroup"
    # Invoke the Members method and convert to an array of member objects.
    $Members= @($Group.psbase.Invoke("Members"))
    ForEach ($Member In $Members)
    $Name = $Member.GetType().InvokeMember("Name", 'GetProperty', $Null, $Member, $Null)
    $Name
    # Specify the computer.
    $strComputer = gc env:computername
    "Computer: $strComputer"
    $computer = [adsi]"WinNT://$strComputer"
    $objCount = ($computer.psbase.children | measure-object).count
    $i=0
    foreach($adsiObj in $computer.psbase.children)
    switch -regex($adsiObj.psbase.SchemaClassName)
    "group"
    { $group = $adsiObj.name
    EnumLocalGroup $group }
    } #end switch
    $i++
    } #end foreach

  • Problem with LDAP authentication for users in a group

    I've gone through several forums attempting to find a solution, but I still can't get authentication to work for users in a particular group within AD. Our ASA is running 9.1(2), and the domain controller is a Windows Server 2012 R2.
    I can configure the VPN connection, so that all users can authenticate just fine; however, when I setup the group, there appears to be success, but I'm reprompted to authenticate, and it eventually fails:
    [6707]  memberOf: value = CN=VPN Access,OU=COMPANY Groups,DC=COMPANY,DC=com
    [6707]          mapped to IETF-Radius-Class: value = GroupPolicy_COMPANY_SSL_VPN
    [6707]          mapped to LDAP-Class: value = GroupPolicy_COMPANY_SSL_VPN
    [6707]  msNPAllowDialin: value = TRUE
    I'd be grateful if anyone can point me into the right direction and show me what I'm doing wrong. Thank you.
    ldap attribute-map AuthUsers
      map-name  memberOf IETF-Radius-Class
      map-value memberOf "CN=VPN Access,OU=COMPANY Groups,DC=COMPANY,DC=com" GroupPolicy_COMPANY_SSL_VPN
    aaa-server LDAP protocol ldap
    aaa-server LDAP (COMPANY_PROD_INTERNAL) host 10.10.100.110
     ldap-base-dn DC=COMPANY,DC=com
     ldap-scope subtree
     ldap-naming-attribute sAMAccountName
     ldap-login-password *****
     ldap-login-dn CN=LDAPAuth,CN=Users,DC=COMPANY,DC=com
     server-type microsoft
     ldap-attribute-map AuthUsers
    group-policy NOACCESS internal
    group-policy NOACCESS attributes
     vpn-simultaneous-logins 0
     vpn-tunnel-protocol ikev1 ssl-client ssl-clientless
     webvpn
      anyconnect ask none default anyconnect
    group-policy GroupPolicy_COMPANY_SSL_VPN internal
    group-policy GroupPolicy_COMPANY_SSL_VPN attributes
     wins-server none
     dns-server value 10.10.100.102
     vpn-tunnel-protocol ikev1 ikev2 ssl-client
     split-tunnel-policy tunnelspecified
     split-tunnel-network-list value SPLIT-TUNNEL
     default-domain value net.COMPANY.com
     webvpn
      anyconnect profiles value COMPANY_SSL_VPN_client_profile type user
    tunnel-group COMPANY_SSL_VPN type remote-access
    tunnel-group COMPANY_SSL_VPN general-attributes
     address-pool COMPANY-SSL-VPN-POOL
     authentication-server-group LDAP
     authorization-server-group LDAP
     authorization-server-group (COMPANY_PROD_INTERNAL) LDAP
     default-group-policy NOACCESS
     authorization-required
    tunnel-group COMPANY_SSL_VPN webvpn-attributes
     group-alias COMPANY_SSL_VPN enable
    tunnel-group COMPANY_SSL_VPN ipsec-attributes
     ikev1 pre-shared-key *****

    I just figured it out. Under "group-policy GroupPolicy_COMPANY_SSL_VPN attributes", I had to add "vpn-simultaneous-logins 15". Apparently, it was using the value "vpn-simultaneous-logins 0" under the NOACCESS group policy.

  • ADF security - prompt for user id and password again on page forward

    Hi,
    I am working with ADF using JDeveloper 10.1.3 with Business Components and ADF Faces.
    I have a Search page and a List page.
    Both pages are based on the same view within the same application module.
    The Search page is using the default Find and Execute Operations.
    The Execute button has an action that navigate to the List screen.
    faces-config.xml
    <navigation-rule>
    <from-view-id>/jspx/search.jspx</from-view-id>
    <navigation-case>
    <from-outcome>search</from-outcome>
    <to-view-id>/jspx/list.jspx</to-view-id>
    <redirect/>
    </navigation-case>
    </navigation-rule>
    <navigation-rule>
    <from-view-id>/jspx/list.jspx</from-view-id>
    <navigation-case>
    <from-outcome>find</from-outcome>
    <to-view-id>/jspx/search.jspx</to-view-id>
    <redirect/>
    </navigation-case>
    </navigation-rule>
    Security (Roles and Users) is based on the jazn-data.xml and web.xml
    URL Patterns for the pages have assigned to the role.
    Login Configuration is HTTP Digest Authentication
    <web-resource-collection>
    <web-resource-name>APP_SUPPORT</web-resource-name>
    <url-pattern>faces/jspx/search.jspx</url-pattern>
    <url-pattern>faces/jspx/list.jspx</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <role-name>APP_SUPPORT</role-name>
    </auth-constraint>
    <login-config>
    <auth-method>DIGEST</auth-method>
    </login-config>
    Everything is fine when running the application from JDeveloper,
    but when the application is deployed to the server (OC4J),
    After logging into the system, the Search page prompt for user id and password again
    on click of the Execute button.
    Have anyone experience this problem before?
    Thanks for any help.
    Jim

    Hi,
    does the same thing happen if you change your protected resource from:
    <web-resource-collection>
    <web-resource-name>APP_SUPPORT</web-resource-name>
    <url-pattern>faces/jspx/search.jspx</url-pattern>
    <url-pattern>faces/jspx/list.jspx</url-pattern>
    </web-resource-collection>to:
    <web-resource-collection>
    <web-resource-name>APP_SUPPORT</web-resource-name>
    <url-pattern>/faces/jspx/*</url-pattern>
    </web-resource-collection>Brenden

  • 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.

  • Do open fonts work in Word for users without the font on their machine?

    Our team creates documents in Word and we would like to use an Open Font (Adobe Jenson Pro)--there is quite a bit of internal file-sharing and I don't want the font to switch to something ugly when it is reviewed in Word (because Word users do not have this font installed by default). I know that there is some cross-compatibility. We would like to apply this font to the template and don't want to introduce a font issue. anyone with experience know how if this works with the Open Font in word documents for users without it installed? 
    thanks!!
    Anne

    annecroft wrote:
    Thanks for your expertise. You are a little snarky, aren't you?
    The coffee hasn't kicked in yet.
    Open TYPE fonts are Adobe fonts
    Nope. OTF's are made by many different companies. Adobe DOES have many of them yes but they don't rule the market on them.

  • Security authentication for user

    Hi,
    WLS 7.0 HP-UX
    I am planning to write a module which would let user to put in a userid
    and password. I would set up the user on the WLS console and use this
    through JAAS to authenticate the user . This is as per the example BEA
    has. It looks pretty straight forward to me.
    I see Michael Lee's post up saying not to user JAAS. I am kind of
    confused. How should I approach this issue if I am not supposed to user
    JAAS.
    Can somebody please let me know.
    Thanks
    Raj

    Thanks Jon for your comments.
    The idea is to have a JSP page with HTML embedded. This would take the user id
    and password and then use JAAS to authenticate the user. The JSP will be hosted
    on the same server as the other components of my application (EJBs etc).
    Hope this is in line with the architects.
    Thanks
    Raj
    Quantos Quattro wrote:
    I am planning to write a module which would let user to put in a userid
    and password. I would set up the user on the WLS console and use this
    through JAAS to authenticate the user . This is as per the example BEA
    has. It looks pretty straight forward to me.Do you mean a client side module? As in a client side Java application? If
    so, then use JAAS as in their examples - its fine and it works.
    I see Michael Lee's post up saying not to user JAAS. I am kind ofconfused.
    Ignore Michael's rant :-) He does say somewhere "on client only", but it's
    buried in all of those capital letters he uses.
    Regards,
    Jon

  • IPhoto free download for user of the new macbook (purshased by August 2012)

    How I can free download iLife's apps? You can read my discussion with support here https://discussions.apple.com/thread/4210729?tstart=0
    Thanks

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    When the MacBook was new you needed to open the Mac App Store, sign into your iTunes/Mac App Store Apple ID, open the Purchases pane and click the Accept buttons. Those apps would then be available for you to download in the future on the Purchases pane.
    Since you did not do that before and you have now upgraded the OS, I don't know a solution to your issue. Perhaps if you use Mt Lion Recovery and install Mt Lion again you can follow the directions for also recovering the iLife apps;
    http://support.apple.com/kb/HT4718

  • Test Links for Users OUTSIDE the Workflow

    Hello,
    In our company we have a process where updates are requested, then someone makes the updates and then a test link is sent to the requestor so they can review and approve. This is all pre-UCM, we have been working in another CMS and are moving to UCM now. The question that has arisen is how can users that are NOT in the workflow or dont even have users accounts view the content on the server?
    Basically when we send test links to the requestor they often send to their coworkers etc... for further review and from what we are being told about workflows is that ONLY the users IN the workflow can see the updates on the site in the browser.
    Is there a "work a round" to this? How can we allow anyone to see updated content on our test site?
    Could we create a Generic Guest account that has read to all content and is in all workflows? What have you experenced in your implementations and how have you resolved?
    Thank you
    Brett.

    WOW, no one has run into this type of situation. Amazing. well then... hmmmm.....

Maybe you are looking for