Portal on-line users counter

I would like to show Portal on-line users count at start-page.
I there any standard portlet for this?
If there are no - how can I get this with Java or PL/SQL?

I have the same problem but have you ever thought about a counter for every page of your portal? I' am working on this in an intranet OAS portal 10.etc .Maybe we should reconsider of extracting/publishing some modified features from a web-statistics software upon the servers we use....
Message was edited by:
geo_hon

Similar Messages

  • What is the powershell command to get the user count in Active Directory

    What is the powershell command to get the user count in Active Directory

    Get-ADuser
    REF: http://blogs.technet.com/b/heyscriptingguy/archive/2012/10/30/powertip-single-line-powershell-command-to-list-all-users-in-an-ou.aspx
    This post is provided AS IS with no warranties or guarantees, and confers no rights.
    ~~~
    Questo post non fornisce garanzie e non conferisce diritti

  • How to access Portal Logged in user in Web Service application

    Hi Experts,
    I have created one Deployable Proxy and based on that i have created Web Based (WAR) project. to consume the proxy i have created Servlet based java file which invokes Web services. Based on this WAR project i created EAR application which deploys on J2EE server.
    I am facing issue while accessing Portal Logged in user in my Servlet Class in WAR project so can  you please provide inputs for how we can access Portal Logged in user in our Servlet class? also how we can access LDAP detailes of portal Logged inuser ?
    I tried to fetch the Logged in user from servlet request but i can't access it giving me null value. Following is the method details that i am using in my servlet.
    protected void doGet(HttpServletRequest request,HttpServletResponse response)throws ServletException, IOException                
    IUser user = UMFactory.getAuthenticator().getLoggedInUser();
    String strName = user.getFirstName();
             If I checked in LDAP values First name for logged in user is present but in my code its giving Null value.
    Can you please provide your inputs on above issue.
    Regards,
    Rahul

    have you found a solution this problem yet?

  • How to get user count by Planning app in 11.1.2.1

    I have no. of planning apps and I need to get a user count by application.
    I tried to export the security by using LCM but the export doesn't provide the information in a readable format.
    Is there a way to generate a report where I can get the count (user ids) by planning app ?
    Thanks in advance

    Could you not get somebody to run the queries for you they quick and simple
    anyway if you have to go down the filter per user route then maybe you could use maxl and spool the output.
    e.g.
    login admin password on servername;
    spool on to "path\filename.txt";
    display filter on database appname.dbname;
    spool off;
    logout;
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • User Count.

    Hi All.
    First of all, I'm sorry for my English. But, I'll do my best to explain.
    I'm developing Text Chat App with FMS 4, Flex 4.6.
    I want to count how many users in.
    I've searched enough. And I made some codes.
    Server Side Code(main.asc)
    application.onAppStart = function()
    trace("hihihi");
    application.onConnect = function(client)
    application.acceptConnection(client);
    userCount = application.clients.length;
    // Define new client function for a nc.call().
    client.callFromClient = function() {
      return userCount;
    application.onDisconnect = function(client){
    trace("Connection is disconnected!!!");
    userCount = application.clients.length;
    trace("length is " + userCount);
    for(var i=0; i<application.clients.length; i++){
      application.clients[i].call("setUserCount", null, userCount);
    SimpleChatTest.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx"
          width="497" height="518" minWidth="955" minHeight="600" creationComplete="initApp()">
    <fx:Script>
      <![CDATA[
       private var nc:NetConnection;
       private var so:SharedObject;
       private var soUserCount:SharedObject;
       private var myResponder:Responder = new Responder(onReply);
       private function initApp():void{
        nc = new NetConnection();
        nc.client = this;
        nc.connect("rtmp://127.0.0.1/SimpleChatTest/");
        nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
        nc.call("callFromClient", myResponder, "Server");
       private function netStatusHandler(event:NetStatusEvent):void{
        switch(event.info.code){
         case "NetConnection.Connect.Success":
          trace("Success Connection!!");
          // share chat contents
          so = SharedObject.getRemote("simpleChat", nc.uri, false);
          so.addEventListener(SyncEvent.SYNC, syncHandler);
          so.connect(nc);
          // share user count
          soUserCount = SharedObject.getRemote("userCount", nc.uri, false);
          soUserCount.addEventListener(SyncEvent.SYNC, syncHandler_UserCount);
          soUserCount.connect(nc);
          break;
       private function syncHandler(event:SyncEvent):void{
        if(so.data["simpleChat"] != undefined){
         view.text += so.data["simpleChat"] + "\n";
       private function syncHandler_UserCount(event:SyncEvent):void{
         trace("soUserCount.data[userCount] in syncHandlerMethod : ", soUserCount.data["userCount"]);
         viewCount.text = soUserCount.data["userCount"];
       /* ServerSide에서 Client length가져오기*/
       public function setUserCount(userCount:Number):void{
        soUserCount.setProperty("userCount", userCount.toString());
       // Responder function for nc.call()
       private function onReply(result:Object):void
        trace("result : " + result);
        soUserCount.setProperty("userCount", result.toString());
        trace("soUserCount.data[userCount] : ", soUserCount.data["userCount"]);
       private function sendMessage():void{
        so.setProperty("simpleChat",  textInput.text);
        textInput.text = "";
      ]]>
    </fx:Script>
    <fx:Declarations>
      <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:TextArea x="10" y="10" width="329" height="468" id="view"/>
    <s:TextInput x="10" y="486" width="246" enter="sendMessage()" id="textInput"/>
    <s:Button x="264" y="487" label="Send" click="sendMessage()"/>
    <s:Label x="347" y="10" text="Total Users : "/>
    <s:Label x="455" y="10" id="viewCount"/>
    </s:Application>
    I traced result of SharedObject.
    Result
    Success Connection!!
    result : 1
    soUserCount.data[userCount] 1
    soUserCount.data[userCount] in syncHandlerMethod undefined --> why?
    I can't understand why sharedobject's data is dissipated??
    Thanks in advanced.
    Kevin.
    ps. I also wanna use SharedObject in Server Side. Unfortunately I tried tried tried tried many times... But I don't know how to do it. I'm newbie to flex&FMS. Is there some example about that?

    Add a method on main.asc as below:
    Client.prototype.userCount = function()
         // get the number of connected users
         var count = application.clients.length;
         this.call("receiveUsercount", null, count);
    And add a method in client side code ( in initApp() ) as below:
    nc.receiveUsercount = function (count)
      //do code here
         trace("Total Users:" + count );    
    Now call the FMS method (as below) from client side code when you want current user count details from FMS:
    nc.call("userCount", null);

  • Content delivery in portal based on user roles ?

    Portal Server new bee...
    Please can anyone point me to guides/url where i can look to enable content delivery in a portal based on user roles and how to establish SSO.
    I have installed Portal Server6.0 and iplanet Directory Server Management Edition installed.
    I did go through PS Development guide and got some sample containers up and running in the portal.
    Thanks.

    For the role-based delivery, Comment 1 sends you in the right direction. Here are a couple things to keep in mind as you read through the customization guide.
    The basic gist of what you need is to define your organization profiles with all the services defined at the org level. Then you can define simple profiles at the role level. These will probably focus around the selected and available attributes on the table containers.
    Then you might want to pay particular attention to the merge, lock, and propogate attributes. These will allow you to define how the role affects the availability of channels (does the role add, remove, or force the channel?). The easiest thing to do is probably to start with a core group of channels, and then have each role define additional channels that are of interest and should be added to the selected/available lists.
    Having roles remove channels will make matters a little more confusing and harder to maintain.

  • When I log in the Portal using Administrator user, I can use it correctly.

    I have created a Room IView.
    When I log in the Portal using Administrator user, I can use it correctly. However when I am using another user, I get this error message: 
    com.sap.portal.pcm.Title
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/com.sap.ip.collaboration/Rooms/00a2953f-0d06-2a10-749d-afc6884d33a7/workset/com.sap.netweaver.coll.ProjectHome/relatedItems/DynamicNavigation/com.sap.netweaver.coll.ARoomQuickLaunch
    Component Name : null
    Page could not create the iView.
    See the details for the exception ID in the log file
    What should I do??
    Regards
    Ika

    Hi Ika,
    This seems to be a permission issue.
    Go to the pcd and give read access to portal_content/com.sap.ip.collaboration/Rooms .
    That should solve the problem.
    Points are welcome if this helps
    Rgrds
    Vineeth

  • How to grant  view privilege for Instant Portal to public users?

    How to grant view privilege for Instant Portal to public users?

    Oracle Instant Portal was designed to offer secure access to company and departmental information, and it isn't currently possible to make instant portal pages public.

  • Get the connected users count from sql server using powershell

    Hi,
    I am working on SharePoint 2013,I am having SQL server 2012.
    I want to get the Connected Users count from  sql server using power shell.
    Can any one please let me know how to implement.
    Thanks in advance.
    Regards,
    Phani Kumar R

    Sorry Tom, I dont like to hear "There is no way" :-(
    There is always a way in computer to get what you need (at least it is good as Rule of thumb). I am not sure we will find it here (in a voluntary supporting forum).
    Now we (or better the architect of their system) should think of the way :-)
    Of course doing so in the forum, while we do know the system and only got a glimpse on what is needed, is not the best idea. I will point some issues which can be related to a solution. Those are not a solotions as it is but something we can use for a solution
    once something look in the right way.
    * A web connects counter is one of the easier thing to do. The basic idea is just to use the connect event and the disconnect event an adding 1 or removing 1 from the counter. This is best to do in the application using static variable as any way the second
    the application is down the counter can be go to hell as we know there is no one connect (there for a counter do not use database usually). Using a web dot-net (or asp 3) application this is done most of the time using the global.asa/global.asax file, which
    include the application and session events. for example using the method Session_Start
    protected void Session_Start(object sender, EventArgs e) {
    // Code that runs when a new session is started
    * IIS have a build-in loging system where we can log each and every request/response or only logins users. There is lot we can do with this log files including data mining. Using small bulk insert script we can use the SQL agent to insert those logs to the
    database and get the information we need.
    * any web developer i want to believe know about the Fiddler application which we use to monitor traffic. A proxy is not the only way to to monitor traffic (it is not good for our case as this is in the client side), there are several option in the server
    side.
    * SQL trigger on logon can be use to get information on who is loging on and can be logging only specific source (like our sharepoint IP or any sharepoint application). This information (what is the application which connect to the server can be retrive
    in several solution without using a trigger as well)
    *** (I'll be brief ... I'm getting bored... probably the reader feel the same)
    * using extended events and/or profiler we can monitor any connection and save the data or just remember it in shared (static) variable (this
    blog show how to do it by the way). Again we can monitor specific application or use any filter in order to get only the sharepoint users
    .... and i can continue for several days more :-) ...
    "If there is a willing, then there's a way"
    "If you can't do it, Then someone else probably can"
    "Never say never"
    I hope this help somehow :-)
    [Personal Site] [Blog] [Facebook]

  • Need to limit the user count to 10,000 in all the Organisations

    Hi,
    We have a requirement that the user count should not exceed 10,000 in any of the organisation. If it exceeds, then OU Admin should request superadmin/xelsysadm to clean up records i.e to remove inactive accounts.
    We need Custom request screen in OIM, so that OU level admin can request/notify super admin about the increase in user count in an ou.
    Any suggestions, on how to implement this scenario, will be of great help.
    Thanks.

    Hi,
    Actually, I want that during create user, as soon as user clicks on create user page, an message should get displayed saying user count in that organisation has exceeded more than 500 and user will not be created.
    Then that OU level admin(who was creating user) should request Super admin/xelsysadm to clean up records (Custom request screen in OIM, which should notify super admin). I want custom screen/request, where the ou level admin can say/request xelsysadm that the user count in that org has exceded more than 500 and request to delete unwanted/locked and Inactive account from that OU.
    Is this requirement possible, if yes then please guide me.
    Thanks.

  • How to create Delivery from VA01 wich split on the basis of line item count

    Hi Frnds,
    I have this requirement where I have to split a single sales order into multiple deliveries whenever the line items count exceeds 10.
    Kindly advice if there is any routine/ any exit for this OR any other soln to this...
    Note : Splitting only takes place when the Line items count exceeds 10.
    for eg : In VA01, for a sales order having line items
                 01, 02, 03, 04, 05, 06, 07, 08, 09, & 10 ---> One delivery
                 11, 12, 13, 14, 15............................ 20 ---> second delivery
    Your help will be truely appreciated..
    Thanks,
    Kamal Sehrawat

    These are called copying requirements. If you open VOFM, you will understand better.
    The routine is a 3 digit number which corresponds to one particular scenario. There are many standard routines for each scenario. Ex : sales orders, deliveries, partners etc.
    There are 2 cases:
    1. copying the data from one scenario to other. Ex: orders to delivery, delivery to billing etc
    2. Moving the data while creation.
    You can choose anything which depends on your scenario.
    To code, copy the routine and create a custom routine. Select the routine and Press F5 (Second Icon to see the source text) to write the code. You can write/modify the code in the copied standard include it takes.
    If the standard routine is not suffice, you can also create a new custom routine which starts with 9XX.
    You need to explore more to understand better.
    Thanks,
    Vinod

  • OEAP 600 Series - Maximum User Count

    Supported User Count
    Only fifteen users are allowed to connect on the WLAN Controller  WLANs provided on the 600 series at any one time. A sixteenth user  cannot authenticate until one of the first clients de-authenticates or a  timeout occurred on the controller.
    Note: This number is cumulative across the controller WLANs on the 600 series.
    For example, if two controller WLANs are configured and there are  fifteen users on one of the WLANs, no users will be able to join the  other WLAN on the 600 series at that time. This limit does not apply to  the local private WLANs that the end user configures on the 600 series  designed for personal use and clients connected on these private WLANs  or on the wired ports do not affect these limits.
    This is from the Configuration Guide for teh 600 series Office Extend AP. Is this count per AP or total per WLC? If I have 10 APs deployed to our remote users, can each AP support two simultaneous users? Would I need to use separate WLANs for each OEAP?

    Hello,
    For More information on OEAP-600, please watch the "Community Tech-Talk Series" Cisco Office Extend Access Point OEAP-600
    https://supportforums.cisco.com/community/netpro/wireless-mobility/begin-wireless/blog/2012/02/24/cisco-office-extend-access-point-oeap-600
    Thanks,
    Vinay Sharma
    Community Manager - Wireless

  • CUP maximum user count

    So I AD integrated UCM (6.1) and I see 3300 end users. Now when I flip over to CUP (7.0) I only see 1,062 users....
    My fear is that I have hit a limit on the box, but my hope is that someone has a work around.
    It is a 7825 which has a user limit of 1,000, but I had assumed that the limit was based on the number of CUP/CUPC enabled users and not on the total user count.
    I really hope there is a workaround.
    Thanks,
    -Scott

    Please clarify what you mean by CUP only sees 1062 users?  CUPS or CUPC?   In CUPS, I thought that the user list would only show the users you flagged in CUCM with the CUPS/CUPC feature.  IOW, users are only replicated when they are enabled for CUPS use.  At least, that is my understanding.
    From an LDAP query perspective.  I believe this is done by CUPC (even though CUPS has a the LDAP search string specified).
    The question I have:  How many users in CUCM are enabled with the CUPS/CUPC feature?  Is it 1062?
    HTH.
    Regards,
    Bill

  • Logging into portal with r3 user id and password.

    I need to login to a portal using R3 user ID and password.
    It would be really helpful if anyone could provide me with the steps involved in it.

    Yes it is ABAP System Tab and not ABAP Server Tab.
    Before going to the ABAP System Tab, Select ABAP System from the dropdown(in Data Source Tab) and then you should be able to enter ECC Server Details.
    I hope you created SAPJSF as suggested in the help link and attaced the required ABAP roles to the user.
    Also Ensure to test with Test Connection button to be succesful.
    If error persists,Please post the errror details
    Edited by: Santhosh Edla on Feb 24, 2009 4:34 PM

  • Hi everyone, to use the portal with many users using the same portal user?

    I have an another question is possible to use the portal with many users using the same portal user with diferent roles in the same time?
    thanks

    Hi Israel,
    It is possible to have same user logged in through differnt terminals or browser windows. However if there are say 10 roles assigned to that user, all 10 will be visible in all the windows. However you may open and work on different roles.. in the different windows.
    Note that the real time collaboration features shall not be available if the same user logs in multiple times.
    Hope this is useful.
    Regards,
    Anagha

Maybe you are looking for