Total Number of Votes in User's Statistics

Could the AUR have a statistic that says how many votes for each package in total a user has?
Last edited by matthewbauer (2009-07-25 23:39:38)

There are a lot of interesting algorithms for ranking.  One of my favorites is h-index.  Sadly, h-index is not very kind to me, since I only have three packages.
Just for fun, here's the highest ranked.  Note that there are some 2465-ish people with packages on the AUR, and only 37 have an h-index of 15 or more.
sergej 73
Dragonlord 54
pressh 44
gcarrier 44
bash 43
StefanHusmann 38
Arkham 36
bardo 35
partition 33
Ghost1227 33
tdy 31
codemac 28
arch-haskell 28
wonder 27
swiergot 27
dsa 27
Allan 27
Romashka 26
stativ 25
Chris.Giles 25
donvla 23
Slash 23
Snowman 22
Shirakawasuna 20
dtw 19
daenyth 19
urandom 17
even 17
djszapi 17
abhidg 17
Cilyan 17
thotypous 16
djclue917 16
leemars 15
drschwalbenmann 15
Xyne 15
Synthead 15
On the low end:
H index, number of people
0, 144
1, 1119
2, 478
3, 238
4, 149
5, 88
6, 58
7, 40
8, 46
9, 20
10, 13
11, 10
12, 7
13, 8
14, 8

Similar Messages

  • Count total number of existing Portal users..Urgent

    Hello All,
    im working on EP6 SP9 (and SP12).
    I would appreciate if anyone would please guide me - How can I retrieve total number of existing Portal users (<b>using code</b> & not Activity Reporting).
    This is kinda urgent....please I request you all.
    Thanks in Advance.
    Warm Regards,
    Ritu R HUnjan

    Hi ritu,
    Check this code. This will give you the total no of users and the names of all the users:
    package com.hcl;
    import com.sap.security.api.ISearchResult;
    import com.sap.security.api.IUser;
    import com.sap.security.api.IUserFactory;
    import com.sap.security.api.IUserSearchFilter;
    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 PortalUsers extends AbstractPortalComponent
         public void doContent(
              IPortalComponentRequest request,
              IPortalComponentResponse response)
              try
                   IUserFactory userfactory = UMFactory.getUserFactory();
                   IUserSearchFilter userfltr = userfactory.getUserSearchFilter();
                   userfltr.setMaxSearchResultSize(5000);
                   ISearchResult userResult = userfactory.searchUsers(userfltr);
                   int size = userResult.size();
                   response.write("<table><tr><td bgcolor=Green>"+ "Names of the user are:"+ "</td></tr></table>n");
                   while (userResult.hasNext())
                        response.write("<table border=0>n");
                        String uniqueid = (String) userResult.next();
                        IUser user = userfactory.getUser(uniqueid);
                        response.write("<tr><td>"+ user.getDisplayName()+ "</td></tr>n");
                        response.write("</table>n");
                   response.write("<table border=0><tr><td bgcolor=Green>"+ " Total no of users "+ "</td></tr>n");
                   response.write("<tr><td bgcolor=Red>"+ size+ "</td></tr></table>n");
              catch (Exception e)
    I hope this solves your problem
    Regards
    Pravesh
    PS: Please reward points if answer is helpful.

  • Issue with Total Number of SODs at user level.

    Friends,
    Quick question -
    We are using GRC 5.3 Production on NT 20003 server. and back end systems are ECC 6.0
    1.We added the Additional Role to one of the business users in ECC 6.0
    2.We ran the FULL synch after adding this role in backend.
    Issue : The total number of SODs did not change for users, even though the SODs for this business users did increase about 300.
    Locations of Screen
    Informer Tab ->> Risk Violoations.
    Analysis Type -> Users
    Does anyone has any idea how this numbers get interpreted?
    The Total number of Violations for permission should increase, if user level SOD gets increased, as per our understanding.
    PT

    It should be in below sequence -
    1. Full or incremental sync for user/role/profile
    2. Full or incremental batch risk analysis for role/user/profile
    3. Management report
    The view you see is management report, which is based upon above jobs. FIrst jobs does high level sync like user/role/profile addition/deletion etc. Second job actually does risk analysis. Third one fills up the management view. If your batch risk analysis was run on  Aug 30 aug 10 and management report after completion of the same, the report will show the same data till you run these jobs again even there are many changes in backend authorization.
    Hope it clarifies your query.
    Regards,
    Sabita

  • Total number of Users and Tablespaces in EBS

    Hi,
    I want to know how many total number of Oracle database users are there inn Oracle EBS R12, and how many number of tablespaces are there in EBS. what docx should I consult for this sort of information. Kindly send me the links of such info.
    Regards,
    Abbasi

    Hi,
    Please see these links/docs.
    Connected users
    http://forums.oracle.com/forums/search.jspa?threadID=&q=Connected+users&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Note: 131704.1 - Database Scripts Library Index
    Thanks,
    Hussein

  • Total number of users in NetPoint License has been exceeded

    I am keep getting this msg on my website.
    I goto admin > business partner > license users and delete all users except manager the msg goes away and after few hours it comes back again
    Total number of users in NetPoint License has been exceeded.
    Some features may not function properly.
    Please remove a user or upgrade your license.

    Hi Ghanbary,
    You may need to check the "Do not assign licensed user role to super users" option in the Synch Manager application.

  • Total number of users with valid passwd

    Hi all,
    what is the way to check the total number of users (existing on my SAP system) with a valid passwd?
    I know how to find the total number of users but I just need the info for the valid passwd.
    Thanks in advance,
    Loukas

    HI Loukas,
    Transaction SUIM > User > By Logon Date and Password Change
    just click Execute.
    You will see the list of all users.
    Regards,
    Jeff
    Please reward points if helps.

  • Total number of active and inactive users

    Hi All,
    i have to count
    The total number of users.
    Total number of active and inactive users.
    Total number of users after 90 days of inactivity:
    I have gone through the below thread, but it is showing the user info. but not count.
    http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_techref/maxl/ddl/statements/dispuser.htm
    Please let me know how to write MaxL command or some other way to count the users.
    Thanks,
    Prathap

    I doubt whether you are going to get the count using maxl, if the command you are using is producing information you can use then you might have to spool to a file and then parse the file and get the count values e.g. excel, scripting.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Total number of users on SCN

    Hi All,
    Recently one of my .NET colleague asked me about total number of users registered in SCN community. I tried to find but couldnot get it.
    So, kindly help me to find these sort of numerical data in the SCN community/Space/Sub-space.
    Regards
    Saurabh

    Hi TW
    There is some user who has strange habit of rating every question in SD forum. I saw a lot of time that user has asked question and within 10 minutes some user rated that one or two star silently and Jelena Perfiljeva is witness to this. We can't identify the user who is rating so it is hard to say who it is but I have some suspects in my mind which I can't share here
    Thank$

  • Total number in users...

    Can anyone plz let me know how to know total number of users in my system, total number of locked user, dialog user, batch user and CPIC user. ?

    Hi,
    use suim tcode and select user then select by user execute this and you will find total number of user as required by you.
    Regards.
    Anil

  • What is parameter for total number of user sessions for entire SAP system

    Is there a profile parameter that limits total number of SAP user connections to that system. Im not talking about rdsip/max_alt_modes that limits number of sessions for particular user but a parameter that limits user connections to total number of users logging into particular system. I heard tht there is parameter that has default value 90, i want to change it but dont know whats the paramter name..plzz help me in this regard to proceed further.
    Thank you

    Hi,
    Use ST03/ST03N to check the number of users logged in.
    Use RZ10 to change the parameters
    Rakesh

  • Total number of mails received in an inbox for a day/time

    Hi,
         Please let me know on how to get the total number of mails received in an inbox for a particular day/time . As per the requirements, i need to track the no of mails received on daily basis. Kindly guide me on how to
    proceed on this .Thank you.

    Exchange profile analyzer would work fine here. And technet blog team providing this option at here :
    http://blogs.technet.com/b/samdrey/archive/2013/07/17/exchange-2007-2010-2013-gather-email-statistics-like-exchange-profile-analyzer-used-to-give-in-the-past-but-now-using-powershell.aspx
    Or,
    http://blogs.technet.com/b/neiljohn/archive/2011/08/09/user-profile-analysis-for-exchange-server-2010.aspx
    If you looks more option for tracking, analyzing and monitoring user mailboxes including mailbox folders and attachment sizes, you can have check this resource available at
    here . It could also be a good approach for you.

  • To find total number of pages in XML publisher

    1. Is there any method to find the total number of pages in BI or XML publisher.
    2. Is there any method to to repeat the column(Not rows) on every page.For eg you have table with two columns say "A" and "B" .I want to repeat this B in every page . And A should print only in first page.
    3. Is there any method to print a text say "ABC" only on first page footer based on condition.
    Thanks
    Wazid

    Exactly what my requirement is- In my template i have set header and footer page setup as "different first page'" and also printing the user text at the bottom of the last page using <?start@last-page-first:body?> <?end body?>.When i run the template, for multiple pages output user text is displaying at the bottom of the last page that is working fine but for single page output user text is not displaying at the bottom of the page because of the ""different first page'" header and footer.If you have any idea please suggest.

  • How to calculate the number of times an user has accesed a BEx report

    Hi Experts,
    We have number of reports in our BW portal and users logon to the portal and run the reports.
    How do we count the number of times each user has logged in and ran each report.
    Kindly advice.
    Thanks,
    Sai

    Hi Sai:
    I think you can use BI statistics information, which could provide you more detail information.
    You can follow the document
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/90080703-4331-2a10-cd98-9c1e95acdea0
    Regards,
    Louis Lu

  • How can I get a report with total number of pages printed on my HP Officejet Pro 8610?

    Since knowing the number of pages I print is so critical to a choice of using the "HP Instant Ink Plan" or not, how can I find the total number of pages I have printed on my brand-new (installed 2 days ago) 8610?  And if I can, is it a "resettable" or rolling total?  Don't see anything in user guide and a search yields nothing usable on this blog.
    Printer is installed wirelessly on an older PC with Windows XP SP3.  I can also of course intstall it with network cable but so far it works OK on my home network without network cable.  If it matters which OS, I also have a Lenovo laptop running Vista on which I can install this printer. 
    Please do not respond that I can find the total by counting the number of pieces of paper I have.  Surely the internals of this fine machine must have the requested data so that HP can tell my usage if I select the monthly ink plan!
    This 8610 was a good buy (net $89.00 after trade-in of my six year old J36xx Deskjet) at Office Depot/Max which of course influenced my decision to buy it.  So far I am very happy with printing qualities and speed, have not tried the scanner yet and will probably never use the fax since I have no land line phone. 
    Thanks,
    Harry
    This question was solved.
    View Solution.

    Hi,
    Section #2 of the Printer Ststus report will tell you. Please try:
    Printer status report
    Use the printer status report to view current printer information and ink cartridge status. Also use the printer status report to help you troubleshoot problems with the printer.
    The printer status report also contains a log of recent events.
    If you need to call HP, it is often useful to print the printer status report before calling.
    To print the Printer Status Report
    1. From the printer control panel display, touch and slide your finger across the screen and then touch Setup.
    2. Touch Print Reports and then touch Printer Status Report.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Tool to get the number of logged in users in 4.5.1

    Has anyone developed a class that can easily tell me (without starting the console)
    how many users are connected to my WL server? The console has the exact functionality
    that I'm looking for but it is very slow connecting to our 8 servers. I'd like
    to be able to run a script to tell me (or anyone else) the current total number
    of users.
    Thanks!

    Hi,
    Please see this link for code:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/list%2bof%2blogged%2bon%2busers%2bin%2bthe%2bportal
    Hope this helps.
    Regards,
    Mona

Maybe you are looking for

  • When I take a photo or video in landscape mode, it will not play back or show in landscape with the phone held horizontally.

    When I take a photo or video in landscape mode, it will not play back or show in landscape with the phone held horizontally. i have an iPhone 5. I think this happened sometime after the last upgrade but I am not sure when. is there a setting on the p

  • Connecting to Linksys WAP4400N w/ WPA

    I'm not an Apple expert by any means so forgive my ignorance. Dealing with a PowerMac G5. It sees the WAP and asks for the WPA password. However, it never connects and gets an IP address. I have 4 Windows XP laptops connecting to the same wireless ne

  • Proper bitrate setting for Compressor

    I am trying to encode an wedding video (1hr. 29min). With FCP 4.5 and Compressor 1.2.1, I never had any problems just chose the 120min High Quality preset and it was a done deal. Since upgrading to FCP 5 and Compressor 2 I have developed tremors and

  • User registration email notice

    I am trying to get this working in our user registration form in portal where user will only get an email when she is approved or denied by our USER admin team BUT not when he first register at PORTAl. Right now user register himself on portal and he

  • Flex 2 configuration for Struts application

    Hello everyone, Good afternoon. I have some questions regarding the Flex 2 and Struts. I use struts for long time already but just touch the Flex 2 since last week. As I know, we can use Flex 2 to build our front end and Struts for the Control and th