List of Portal Users/Group

Is there a way to get the list of users/groups in the Portal to allow us to add security to our custom built portlet? Once the security has been added, we can use the APIs to check if someone is privileged, but how to we get a list of the users/groups to select from in the first place.
Regards
Jenny

Search for LDAPSEARCH in metalink. I've seen a stored procedure that one may use to list either users or groups. You have to use both if you want to dump list of groups with users. Optionally there's an LDAPSEARCH command that may be used via command line. Refer to Metalink Note 251776.1. This note will give you syntax on the command line LDAPSEARCH. In order to do this though, you must know the base domain parameters for your portal groups...which you can obtain from the Administrator -> Global Settings -> SSO, and you also must know the password to your orcladmin superuser account that's used to login to the LDAP.
Hope this helps...

Similar Messages

  • List of Portal Users/Groups

    Is there a way to get the list of users/groups in the Portal to allow us to add security to our custom built portlet? Once the security has been added, we can use the APIs to check if someone is privileged, but how do we get a list of the users/groups to select from in the first place.
    Regards
    Jenny

    Just check if<b> IRole and IUser</b> Interfaces have the necessary methods to do so.....

  • How to map Portal User groups to a MDM System?

    Hi,
    Have anyone tried mapping portal user group to a MDM System?
    The idea is to avoid each user to do user mapping for MDM of their own.
    When i look into the usermapping section of a portal user group, it shows me a message -
    "There are no systems available for user mapping for the selected principal"
    Thanks and best regards,
    Arun prabhu S

    Hi All,
    Got it!
    1. Create portal users,
    2. Create a portal user group,
    3. Assign Users to User group,
    4. Go to System Administration, edit permission of the MDM system, add the user group to the MDM system permission list and save
    5. Go to User Management, modify the user grooup, go to the User mapping of the user group and do mapping for MDM system and user group using a valid MDM User name and password and Save
    6. In User Management, modify the Portal role for MDM , add the user group to the role and save
    7. Edit permission of the role object, add the user group to the permission list and save
    Result:
    All the users assigned to the user group will be able to access MDM information on the portal correspond to the MDM mapping done at the user group level. This avoids self user mapping in personalization link.
    Best regards,
    Arun prabhu S

  • I need a table/view so I can list current portal users

    Is there a table/view that I can use within portal that holds the names of all the portal users ?

    That link looks interesting - couldn't get the code in Appendix A to work for some reason. I assume it should be run in the ORASSO schema?
    Anyway, I need to get a list of Portal users and their group memberships from PL/SQL.
    What is the best way to approach this?
    Cheers,
    John

  • Subcribe a Portal User Group to content change events on page?

    Another developer at my shop has created a custom routine that programmatically subscribes the given user to content change events on a page. At the heart of their custom routine are the following Oracle Portal API calls:
    portal.wwctx_api_private.set_context( v_user );
    portal.wwsbr_app_approval.subscribe
    p_object_context_id => v_siteid,
    p_page_id => v_pageid
    ...where v_user is the account we want to subscribe for notification of content changes on the given page.
    I have a need to extend this to allow subscriptions of Portal User Groups (PUGs) for the same content change events. It is not acceptable to statically subscribe the PUG membership, because I do not want a situation where today I subscribe all the members of group X, then tomorrow the membership of group X changes, but the list of subscribed users does not change automatically with the group membership modification. I could just as well manually subscribe each group member without going through the hassle of coding a modified subscription UI and backend routine to handle groups.
    Any suggestions?
    Thanks,
    shastew

    My shop is currently on 10g R1 (9.0.4.3). We will be upgrading to 10g R2 (10.1.2) in a few months, but this is not the 10.1.4 version your document link points to. Is CMEF included actually usable in 10.1.2?
    Also, publish and subscribe solves a particular set of design issues and allows for a certain degree of flexibility of usage, however, I don't see any built-in support for the User Groups that Portal provides for assigning basic page permissions. It's the group support that I'm interested in...and I don't want to have to create duplications of groups outside of what I already have. I don't want to have to write an entire application infrastructure to support outside group membership maintenance just for supporting subscription notifications. This should have already been built-in to interface with the existing Portal page permissions group framework. At our shop, a lot of effort has already been put into setting up and maintaining these built-in groups and we should be able to re-use them for something as brain dead simple as subscription notification.
    I've already given up and opened an enhancement request "TAR" for this.
    shastew

  • List of Portal users with the assigned Roles.....

    Hello All,
    I am working on EP6 SP9 and want to know from where can I get a list of all Portal users along with the assigned roles for each of them.
    One way I found is by searching for all users in User Administration role and along with the searched users, there is also an icon for Assigned roles.
    Apart from the above mentioned way, is there any other way by which I can get a direct list of the same. Is there a Java sample code for this.....?
    Please help.
    Awaiting Reply.
    Thanks and Warm Regards,
    Ritu R Hunjan

    Hi Ritu,
    Yes it is possible to get the roles of the users. You can try the following java code.
    package com.hcl.user;
    import java.util.Iterator;
    import java.util.Vector;
    import com.sap.security.api.IRole;
    import com.sap.security.api.IRoleFactory;
    import com.sap.security.api.IRoleSearchFilter;
    import com.sap.security.api.ISearchResult;
    import com.sap.security.api.IUser;
    import com.sap.security.api.IUserAccount;
    import com.sap.security.api.IUserFactory;
    import com.sap.security.api.UMFactory;
    import com.sapportals.portal.prt.component.AbstractPortalComponent;
    import com.sapportals.portal.prt.component.IPortalComponentRequest;
    import com.sapportals.portal.prt.component.IPortalComponentResponse;
    public class role_member extends AbstractPortalComponent {
    public void doContent(
    IPortalComponentRequest request,
    IPortalComponentResponse response) {
    try {
    IUserFactory userfactory = UMFactory.getUserFactory();
    IRoleFactory rolefactory = UMFactory.getRoleFactory();
    IRoleSearchFilter rolefltr = rolefactory.getRoleSearchFilter();
    rolefltr.setMaxSearchResultSize(2000);
    ISearchResult result = rolefactory.searchRoles(rolefltr);
    while (result.hasNext()) {
    response.write("<table border=0>n");
    String uniqueid = (String) result.next();
    IRole role = rolefactory.getRole(uniqueid);
    response.write("<tr><td bgcolor=Red>"+ role.getDisplayName()+ "</tr></td>n");
    Iterator users = role.getUserMembers(true);
    while (users.hasNext()) {
    String unique_user = (String) users.next();
    IUser user = userfactory.getUser(unique_user);
    IUserAccount account[] = user.getUserAccounts();
    response.write(
    "<tr><td>" + account[0].getLogonUid() + "</tr></td>n");
    response.write("</table>n");
    response.write("</br>n");
    } catch (Exception e) {
    This code gives you the list of all the users of your portal along with the roles assigned to them.
    Apart from this if you want you want to know all the roles assigned to the user on portal itself then the way you mentioned is the correct method.
    Regards
    Pravesh
    PS: Please consider awarding points.

  • Portala user group

    Hi all
    I use this code to diplay current user in my wed dynpro app under portal.
    IWDClientUser wdUser = WDClientUser.getCurrentUser();
    IUser user = wdUser.getSAPUser();
    if (user != null) {
    IUserAccount[] acct = user.getUserAccounts();
         if (acct[0] != null) {
              strUserid =
              wdUser.getLastName() + " " +wdUser.getFirstName();
    I need to know the portal group of current user, but i don't find solution...
    Thank to all
    Andrea

    This code returns the iterator containing the user groups. Once you have called it, you have to loop this iterator while hasnext = false.
    <b>try{
    IWDClientUser clientuser = WDClientUser.getCurrentUser();
    IUser user = clientuser.getSAPUser();
    Iterator userGroups = null;
    userGroups = user.getParentGroups(true);
    catch(Exception ex){
    wdThis.wdGetAPI().getComponent().getMessageManager().raiseMessage( IMessageYSP_CRM_CP_COCKPIT.USER_E , null,true);
    }</b>
    userGroups has the groups.
    Don't forget to loop the iterator in try statement.
    I Hope it can work.
    Grites!

  • Get list of Portal Users

    Hello. I have some problem. I must to write query, which
    show all portal users. Please, help me.
    Sincerely yours, Akshabayev Aidar

    look ODS schema's tables
    ex)
    SELECT A.ATTRVALUE "ID", B.ATTRVAL "SN" , L.ATTRVAL "MAIL"
    FROM ODS.CT_UID A
    LEFT OUTER JOIN ODS.DS_ATTRSTORE B ON B.ENTRYID = A.ENTRYID AND B.ATTRNAME = 'sn'     
    LEFT OUTER JOIN ODS.DS_ATTRSTORE L ON L.ENTRYID = A.ENTRYID AND L.ATTRNAME = 'mail'
    -- this 10g version

  • Displaying a list of Portal users connected and their connection time

    We are using Portal version 10.1.2.0.2 and I cannot find in App Server Control (EM Website) how I can track the number of users connected to my portal site as well as their connection time. Are there reports available that will provide the requested information?
    Can anyone tell me what other reports are available in this version of Portal that would be useful to an administrator of a portal site?
    Thank you,
    Denise

    select attrvalue as id from ods.CT_UID
    give that a burl

  • List of users of portal per group

    Hi all,
    I need to make a list of portal users of each group.
    Where is the table, procedure, function...etc for that ?
    Exist some solution ?
    Thanks!!!

    Search for LDAPSEARCH in metalink. I've seen a stored procedure that one may use to list either users or groups. You have to use both if you want to dump list of groups with users. Optionally there's an LDAPSEARCH command that may be used via command line. Refer to Metalink Note 251776.1. This note will give you syntax on the command line LDAPSEARCH. In order to do this though, you must know the base domain parameters for your portal groups...which you can obtain from the Administrator -> Global Settings -> SSO, and you also must know the password to your orcladmin superuser account that's used to login to the LDAP.
    Hope this helps...

  • Last modified by for a user/group object

    Hi All,
    Is there any way to find out who has last modified the User/Group object in the portal.
    I can see the last account unlocked by for the user object. But is there any attribute to find out who has last modified the assigned groups/users for the user/group respectively or any change in the user/group profile.
    Thanks in advance,
    Siva
    Pts will be rewarded for useful answer.

    Hi Siva,
    as far as I know there is no standard way to find out who modified a user/group object in the portal. But I just checked the official API of <a href="https://help.sap.com/javadocs/NW04S/current/se/com/sap/security/api/IUser.html">IUser</a> (represents a portal user) and <a href="https://help.sap.com/javadocs/NW04S/current/se/com/sap/security/api/IGroup.html">IGroup</a> (represents a portal user group) and found out something interesting. <a href="https://help.sap.com/javadocs/NW04S/current/se/com/sap/security/api/IPrincipal.html">IPrinciple</a> (super object of IUser and IGroup) has a field LAST_MODIFIED_BY.
    Looks like you can write your own portal component, which allows you to find out who has modified your users last.
    Best regards,
    Martin

  • Oracle User Groups

    There is a great Oracle user group in my city.
    Does anyone know of a listing to Oracle user groups?

    There are some info:
    http://www.oracle.com/technology/community/user_groups/index.htm
    Greetings...
    Sim

  • Sending Tasklist to user group from collaboration room

    Hi Experts,
          I have to send task list to a user group. This group contains 5 members of this room. When i create a tasklist from my room & send it to group it showing error like this
    " Enter valid assignees for task number 1 " . how can i rectify this?
    Regards,
    Kumar.

    Hi Kumar,
    This is really a **** to do an trial and error method because it consumes lot of time.
    so here is something for u
    A step is assigned to multiple users and has a minimum threshold of approvals assigned (that is, assignees are user 1, user 2, and user 3, and two of the three are required to approve before this step can be completed). In this case,
    u25CF     two of the three users must approve before the step is considered approved
    u25CF     if two of the three users reject it, the step is rejected, and consequently will either return the task to the last Action Item assignees or, if no previous Action Item exists, will conclude the task, with the history reflecting the rejection.
    in my trial i had only two user connected to a group so sometimes second step is recieved by user 1 or user 2 . if one of them approves then document is getting approved and goes to next step
    it is same in the case of rejection too.
    i hope now everything would be clear
    have a look at this [Link|http://help.sap.com/saphelp_nw70/helpdata/EN/a1/eb3f54ab7c4ce39408f38d9eb52f65/frameset.htm]
    Regards,
    vijay.

  • Creating User Groups

    Hi All,
    How can I create User groups in Application Express 4.0.1.00.03.
    I am not able to find the link for creating User groups after logging in as found in the Help:
    1.Log in to Oracle Application Express. See "Logging In to Oracle Application Express" in Oracle Application Express Application Builder User's Guide.
    The Workspace home page appears. Note I have logged in as administrator for Internal Workspace.
    2.Click the Administration icon. - Not able to find
    The Administration page appears.
    3. From the Tasks list, click Manage User Groups. - Not able to find
    The User Groups page appears.
    Thanks & Best Regards
    Arif Khadas

    Hello Arif,
    >> Note I have logged in as administrator for Internal Workspace
    You should login to your working workspace as a developer with workspace administrator privileges. At the Application Builder home page you’ll see the Administration icon, and within it the Manage Users and Groups icon. In this module, you should select the Manage User Groups Task.
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

  • How to hide ribbon from all item view for particular user group

    hi friends
    how to hide ribbon from all item view of particular list for specific user group.
    using OOB functionality or javascript. 

    Hello,
    Use this codeplex tool to hide ribbon to user group:
    http://spribbonvisibility.codeplex.com/
    If you don't want to use above tool then you have to add SPSecuritytrimming in "Rajiv Kumar" code for filtering based on user group permission.
    http://www.topsharepoint.com/hide-the-ribbon-from-anonymous-users
    Hope it could help
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

Maybe you are looking for

  • Not receiving email with ETP.DAT file

    I have two users that are not receiving the email from the blackberry.net domain that has the ETP.DAT file attached. I set a new activation password on my blackberry and received the email. I have tried activating these guys a dozen time. I deleted t

  • CR Report Designer Control ActiveX

    If I remember well, 10 years ago, I saw somewhere a Crystal Reports Designer Component (Active X Control), which could be put on a VB6-Form to design new reports from a 3rd-party-application. Special End-User-Licenses were required... I can't remembe

  • Remove photos from a MobileMe Gallery

    Every time I delete or Cut a photo from one of my MobileMe Gallery albums, it comes back, and/or, it does not update the changes in my MobileMe Gallery. In one of my galleries in iPhoto I have 7 photos but in the MobileMe gallery I have 134 photos. D

  • Timeline moving when I make a Speed change!!  Can this change?!?

    As I'm sure everyone is aware, when you change the Speed of a clip to either slow it down or speed it up the entire rest of the time changes with it. For example, if I speed up a clip I am editing at the beginning of my sequence every clip after it m

  • Combining ufsdump and a tape library

    Hi All, I have a question with regards to multi-volume backups using ufsdump and a tape library. Reading through the ufsdump documentation, I see that it has an option "l" (lowercase L), which says "When the end-of-tape is reached before the dump is