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

Similar Messages

  • 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

  • Pop-up is displayed requesting for a WAS user id and password

    Hi SDN,
    I created a BEx iView based on Template-id. I am using single sign-on with user mapping. When i logged on to portal everything is working fine but initially a  pop-up is displayed requesting for a WAS user id and password of the BW system.
    I have mapped the Portal user with the BW user-id and password.
    Can any one suggest me how suppress initial pop-up.
    Thanks in Advance.
    Regards
    Basha

    Hi Basha,
    When you run the report from SICF you will definitely get the popup for authentication, as you are sending request directly on BW WAS.
    The reason behind you are getting popup in portal is that you have not used FQDN for BW server in WAS properties of System Object. Try to maintain same domain name for Portal and BW server.This you can easily achieve by modifying host file.
    e.g. <EP server IP>                 EPserver.abc.com
           <BW server IP>                BWserver.abc.com
    Use "BWserver.abc.com" in WAS hostname under system properties.
    Do let me know the result.
    Thanks,
    Amol.

  • List the total users connected at point of time (portal admin)

    Hi Dev2Dev team
    Is there any way to get List of total users as well as specific users connected to portal at point of time
    is there any way to get the list from portal admin
    or from weblogic server
    is there any tool available for this
    can anyone provide me with the sample or code or tool
    Thanks
    Surya

    Hi All
    Is that the data's of login and logout details are stored in Pointbase db by default.
    I am using oracle where i have all my default portal tables.
    any info appreciated
    Thanks
    Surya

  • Report on portal User ID and Assign Roles for all portal users

    Hi!
    I would like to know , is there way that we can get a report which shows all the portal user ids with there assign portal roles. If we can't get this from portal. Can we get it from Oracle database ?
    What are the oracle tables and fields which store this information?
    If nay one have a custom develop iview for this please let me know
    Thanks
    Ramesh

    Hi Ramesh,
    as Pascal stated (and as I did above), if developing within the portal is not really new for you, playing around with the UME API is really more or less trivial.
    Check Portal User and Role info as well as User to Role listing for similar requests and code hints / further links.
    Hope it helps
    Detlev

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

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

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

  • Query to display the user's and their group's

    Hi ---Is there a way to list the user and the roles that were assigned to them by running a query on the Data base? also can we configure development obiee environment to use prod security so that if removed from prod, will also be removed form dev?

    user007009 wrote:
    Hi ---- my bad. version is 11g and currently not using WLS LDAP but through LDAP server(AD) configured in Web logic console.
    Also regarding not possible if using WLS Ldap.
    Where does these user data gets saved then?? xml?,database table?, ff?.. or was it mentioned in the oracle documentation that we can't get the info??..please throw some light..
    any idea on what actually is the source for the page security>realms>users and groups? ... they might be saving it some where and i am having hard time finding it in the Oracle Documentation as well.I suggest you read this : http://docs.oracle.com/cd/E23943_01/core.1111/e10043/introroles.htm
    And https://blogs.oracle.com/robreynolds/entry/security_in_obiee_11g_part_1 to know more about Security. The default users would be in identity store.
    If you want to get the list of WLS users and WLS groups then have a look at : http://mverzijl.wordpress.com/2012/08/23/weblogic-wlst-get-users-and-groups/
    Coming to your original questions .. To get the list of AD users and AD groups not Roles two different things, may be you can try
    http://social.technet.microsoft.com/wiki/contents/articles/2195.active-directory-dsquery-commands.aspx or use some LDAP browser .
    SVS

  • 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

  • Portal User details and credentials for a J2EE application?

    Hi,
    I am trying to access a J2EE application which is deployed in  SAP Web Application Server. I want to maintain the security of this application depending the portal user. So I want to get the user id of the portal login to my J2EE application. For Example:
    A user with id "super" is logging into portal I want the userid "super" in my J2EE application how to get the userid to my J2EE application's servlet. Is this possible? If possible please tell how I can acheive it?
    Can I do it by creating HTTP System? If possible can u tell me where can I set the URL?
    Thanks,
    Ashok.

    hi,
    Certainly you can get the user id of the portal login in your J2EE application by using UME api's
    IUserFactory userFact = UMFactory.getUserFactory();
    getUserFactory().getUser(String uniqueID)
    getUserFactory().getUserByLogonID(String logonID)
    Also have a look at this
    http://help.sap.com/saphelp_nw04/helpdata/en/15/abdc3ed98f7650e10000000a114084/frameset.htm
    Instead  of url iview, it would be better to use AppIntegrator
    Also have a look at this
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/events/webinars/using the user management api with ep applications.pdf
    Hope it helps...
    Regards,
    Ganesh N
    Hope it helps...

  • ISE 1.2 Guest portal user cannot change their passwords

    I have a WLC 5508(version 7.6) and a server installed  the ISE (version 1.2.1.198),Now we configured the CWA,Use guest portal as an employee and guest login url,We can use the manually create internal user and password successfully logged in, and we set up allow guest users to change password in Multi-Portal, but the user can not change the password in the guest portal ,I suspect the change password option on the Guest  Portal actually works? Can anyone tell me how to change their own username password in the guest portal ?

    Requiring Guests to Change Password
    You can allow or require guest users to change their password after their initial account credentials are created by the sponsor. If guest users change their passwords, sponsors cannot provide guests with their login credentials if they are lost. The sponsor must create a new guest account.
    You can either allow guests to change their passwords, or you can require that they do it at expiration and at first login. To require internal users using a guest portal to change their password upon their next login, choose Administration > Identity Management > Identities > Users . Select the specific internal user from the Network Access Users list and enable the change password check box.
    Before You Begin
    Create a Guest portal or modify the DefaultGuestPortal. This setting is specific to each Guest portal.
    Step 1 Choose Administration > Web Portal Management > Settings > Guest > Multi-Portal Configuration.
    Step 2 Check the Guest portal to update and click Edit .
    Step 3 Click the Operations tab.
    Step 4 Check either or both options:
    Allow guest users to change password
    Require guest users to change password at expiration and first login
    Step 5 Click Save .

  • Deterimining bandwidth/concurrent users/connect time from the logs

    Hi Guys,
    Looking at the pricing survey, not sure where our app fits in, but something on the order of what I've listed below.  Somehow I think we fit into a minimal usage case:
    1) 2 hours per day, less than 10 concurrent chat users,
    2) each chat session under 100 messages, 10 lines per message, per session?
    What would this mean in terms of resource usage?
    We've just run an internal alpha.  How do I look at the resource usage?  Is there a way for me to see how much bandwidth / max users / concurrent connections have been used for a given account/room?
    I hope there is a quick and easy answer.
    --Doug

    Thanks!  This helps a bunch. I went back to the survey but I'm not allowed in, so I'm going to ask.  Projecting our usage (based upon a 1 hour alpha):
    52K minutes per month
    400K messages per month
    <1GB bandwidth
    Under some of the pricing models, how much would our chat application cost on a monthly basis?
    What could be done to reduce the concurrent connection times of our application, besides timing the users out?
    Thanks,
    --Doug

  • How to display gauge progress refer to HTTP connection time taken

    Hi,
    I would like to know how can I display the gauge progress depend on the HTTP connection time taken.
    I have the source code below but it can't show the gauge progress parallel to the HTTP connection working.
    That's kind of those who solve me this problem.
    Source code:
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import java.io.*;
    import javax.microedition.io.*;
    import java.util.*;
    public class HttpExample extends MIDlet implements CommandListener
         private Gauge gauge;
         private Command exit, start;
         private Display display;
         private Form form;
         long AUD, CAN;
         public HttpExample()
              display = Display.getDisplay(this);
              exit = new Command("Exit", Command.EXIT, 1);
              start = new Command("Start", Command.EXIT, 1);
              form = new Form("");
              gauge = new Gauge("Updating Currency Rate", false, 100, 0);
              form.append(gauge);
              form.addCommand(exit);
              form.addCommand(start);
              form.setCommandListener(this);
              display.setCurrent(form);
         public void startApp() throws MIDletStateChangeException
              display.setCurrent(form);
         public void pauseApp()
         public void destroyApp(boolean unconditional)
         public void commandAction(Command command, Displayable displayable)
              if (command==exit)
                   destroyApp(false);
                   notifyDestroyed();
              else if(command==start)
                   Updater updater = new Updater(this);
                   updater.start();
         class Updater implements Runnable
         private HttpExample MIDlet;
         public Updater(HttpExample MIDlet)
              this.MIDlet=MIDlet;
         public void run()
              try
                   transmit();
              catch (Exception error)
                   System.err.println(error.toString());
         public void start()
              Thread thread = new Thread(this);
              try
                   thread.start();
              catch (Exception error)
         private void transmit() throws IOException
              StreamConnection connection=null;
              InputStream in= null;
              StringBuffer buffer=new StringBuffer();
              try
                   connection=(StreamConnection) Connector.open("http://www.geocities.com/cyfan118/index.html");
                   in=connection.openInputStream();
                   int ch;
                   while ((ch=in.read())!=-1)
                        gauge.setValue(gauge.getValue() + 1);
                        buffer.append((char)ch);
                   String line=new String(buffer.toString());
                   int p=line.indexOf("AUD");
                   int p1=line.indexOf("CAN");
                   String a=line.substring(p+4,p+7);
                   String b=line.substring(p1+4,p1+7);
                   AUD=Long.parseLong(a);
                   CAN=Long.parseLong(b);
                   buffer=new StringBuffer();
              catch (IOException error)
                   Alert alert=new Alert("Error","Cannot connect",null,null);
                   alert.setTimeout(Alert.FOREVER);
                   alert.setType(AlertType.ERROR);
                   display.setCurrent(alert);
    }

    This code looks like it should work to update the progress during the connection but it is not going to start updating the guage until it has made the connection and is downloading data. If you want to show something on the screen during the time the program is doing Connector.open() you are going to need to have the update code in yet another thread or timer.

  • Monitoring user logins and amount of time logged in.

    I presently have an open directory master with several Mac Pro's authenticating against it. The owner of the Mac Pro would like to do billing to the other departments based on who was logged in and the amount of time they were logged in.
    Normally the "last" command would be perfect for this but with the removal of the wtmp file in 10.5 the last command is flaky at best. I will restart its self multiple times per day or not at all for a month so it is hard to write a script to pull the data out of it.
    Does anyone know of a way in 10.5 and higher to find out the type of information that the last command displayed, IE who logged in, what time they logged in and what time they logged out.
    I need this information for the Mac Pro's but can pull the information from the open directory server if there is a way to get it from their.
    Does anyone know where the last command data is being logged since the removal of the wtmp file.

    neither of them seem to give me the login and log out times like the "last" command does. Is there not anyway on the open directory server to pull this data?

Maybe you are looking for

  • Partner Bank Type Selection in Payment Proposal

    Dear Experts, Would like to seek your advice regarding the above subject matter. We have a vendor with multiple bank accounts maintained in the vendor master and these are multiple currencies. For example: Vendor ABC Country      Bank key   Partner B

  • Not able to connect to database using jdbc

    Respected sir/madam, I am new to java and i am trying to connect to database which is necessary for me in project when i wrote the code using class.forName i am able to compile but when runnig i am getting two exceptionns one is oracle.jdbc.driver.or

  • Setting a node as parent

    hi, I have got a tree which hold a lot of nodes. Now the condition is, the root should not hold nodes, it should only hold parent nodes. The problem here is that, i have a node which has no children and thus i need to set this node as parent in the t

  • Can't accept the terms and conditions of the latest update on my iPad 2

    Have downloaded the latest update on my iPad 2 successfully but the buttons for agree or disgree are not clickable. I've turned it off and on again which hasn't worked and I can't get into any alternative menu. Any thoughts?

  • To buy or not to buy... Help!

    So I've been waiting and waiting to buy and iPhone but now I am ready to do it with the promise of v3.0. My question is: should I purchase the 3G now or wait over the 3.0 release with hopes that an updated version of the phone will be released by the