I want see list of user's in the portal

hi,
       i want see list of user's in the portal how is it, can u help any body?
ok
bye bye...

Hi Rama
For inforamtion on logged in portal users
How do i trace How many users logged into portal?
http://help.sap.com/saphelp_nw04/helpdata/en/58/728ea01cf64fff996b827f2a06f9b1/frameset.htm
Hope it helps
Regards

Similar Messages

  • How can I find out the list of users who has the access to IT 0008

    All,
    How can I find out the list of users who has the W R permission for IT 008
    for others?
    SUIM doe not look like giving me the correct results.
    Please advise.
    Thanks,
    From
    PT.

    combine tables AGR_1251 and table AGR_Users on keyfield AGR_USERS
    in tabel AGR_1251 select on Field LOW values IT0008.OR W OR R,
    noiw you get also other values
    So better solution run the query twice over AGR1251 first on IT0008 and secondly on values W OR R and then the result over table AGR_USERS
    Youu also might put an additional selection on object P* (only selecting HR objects)
    output wll be UID in table AGR_USERS

  • Big list of users created at the Financial applications

    HI
    During application installation there are quite a big list of users created at the Financial applications. Need to findout what is the impact, can we remote these accounts or lock since these applications are not used
    Regards

    Please refer to these docs.
    Best Practices for Securing the E-Business Suite [ID 189367.1]
    Best Practices For Securing Oracle E-Business Suite Release 12 [ID 403537.1]
    What Is The Impact Of Disabling Oracle Seeded Users? [ID 418767.1]
    Can The Autoinstall Account Be End Dated Or Not? [ID 820065.1]
    Thanks,
    Hussein

  • How i can see a page without logon to the portal

    Who knows how i can see a pge without logon to the portal?
    Thanks anyway

    i don't understand your, but
    my users login to page by portlet on all pages or custom login page.
    pl/sql portlet on all page:
    put pl/sql portlet on page
    pl/sql text:
    begin
    if portal.wwctx_api.is_logged_on then
    htp.p('<center>logout<center><br>');
    else
    htp.p('<table BORDER="1" WIDTH="100%" CELLPADDING="2" CELLSPACING="0" class="RegionBorder">
    <tr><td class="RegionHeaderColor" WIDTH="100%"><script TYPE="text/javascript">
    <!-- Comment out script for old browsers
    function loginsubmit()
    document.LoginForm.uname.value =
    document.LoginForm.ssousername.value;
    document.LoginForm.pwd.value =
    document.LoginForm.password.value;
    document.LoginForm.ssousername.value = "";
    document.LoginForm.password.value = "";
    document.LoginForm.submit();
    //-->
    </script>
    <form ACTION="PORTAL.wwptl_login.login_url" METHOD="POST" name="LoginForm" AutoComplete="Off" onSubmit="loginsubmit()">
    <input TYPE="hidden" NAME="p_requested_url" VALUE="http://your.curent.name">
    <input TYPE="hidden" NAME="p_cancel_url" VALUE="http://your.curent.name">
    <input TYPE="hidden" NAME="uname" VALUE="">
    <input TYPE="hidden" NAME="pwd" VALUE="">
    <table ALIGN="center">
    <tr>
    <td><font class="PortletText1">name</font></td>
    <td><input TYPE="text" NAME="ssousername" SIZE="10" MAXLENGTH="80" style="font-size:10px;"></td>
    </tr>
    <td><font class="PortletText1">password</font></td>
    <td><input TYPE="password" NAME="password" SIZE="10" MAXLENGTH="255" style="font-size:10px;"></td>
    </tr>
    </table>
    <center>
    <input TYPE="submit" VALUE="Registration">
    </center>
    </form></td></tr></table>');
    end if;
    end;
    set show directly in page.
    good luck ?:(

  • Current Users Logged into the Portal

    Hi,
    In NW04 stack 11 is there a way to find out the current users logged into the portal? We have activated the Portal Activity Report but that does not seem to indicate CURRENT users... as in who's on the portal right now.
    Thanks,
    Kris

    Hi Kris,
    see 'Logged on Users' Iview
    Hope it helps
    Detlev

  • How we Can find out How many Users Logon into the Portal those users Names.

    Hi Friends
    I have one doubt in Portal,
    How we can find how many Users Logon into the Portal and how we can find that users Names in Portal.
    Regards
    Vijay Kalluri

    Hello Vijay,
    If you are at all interested in a 3rd party application to make your life a bit easier getting stats on your users, you could check out Click Stream by Sweetlets.
    Click Stream uses the Usermanagement (UME) API to get more information about the user, groups, roles, LDAP attributes etc. and offers you the ability to filter this information in nearly any report at the click of a button.
    Click Stream also uses the PCD API to get information about the pages your users are visiting too.
    In the very near future Click Stream will also have iView recording to monitor iViews, telling which iViews have been clicked, etc.
    Here are some reviews on the SAP EcoHub from people who have used it: http://ecohub.sdn.sap.com/irj/ecohub/solutions/clickstream
    Please just let me know if you have any question or if you are open to test drive Click Stream. We will certainly help as best as we can.
    Good luck.

  • Sharepoint portal goes down Whenever a specific user logs into the portal

    hi All,
    Sharepoint portal goes down Whenever a specific user logs into the portal
    When a specific user logs into the portal , the iis goes down and no one able to access the portal.
    once we reset  iis then portal works fine .Please help us to identify the root cause for this issue.

    What is the error message it throws for everyone after that user user logged into the site. Did you encountered the same behavior for the other web application in the same farm as well?
    It would be worth to check health of that particular application pool and the account used for it during the time you face the issue.
    Veeramani.S

  • To list only user databases with the size for a instance in sql server 2005

    Hi,
    I looking for T-SQl to  list only user databases with their size for a instance in sql server 2005

    Try this:
    use [databasename]
    go
    if convert(varchar(20),SERVERPROPERTY('productversion')) like '8%'
    SELECT [name], fileid, filename, [size]/128.0 AS 'Total Size in MB',
    [size]/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0 AS 'Available Space In MB',
    CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0 AS 'Used Space In MB',
    (100-((([size]/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0)/([size]/128.0))*100)) AS 'percentage Used'
    ,((CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0)/([size]/128.0))*100 as 'percentage used'
    FROM sysfiles
    else
    SELECT [name], file_id, physical_name, [size]/128.0 AS 'Total Size in MB',
    [size]/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0 AS 'Available Space In MB',
    CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0 AS 'Used Space In MB',
    (100-((([size]/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0)/([size]/128.0))*100)) AS 'percentage Used'
    --,((CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0)/([size]/128.0))*100 as 'percentage used'
    FROM sys.database_files
    go
    Or can refer below link:
    http://gallery.technet.microsoft.com/scriptcenter/All-Databases-Data-log-a36da95d
    Please click the Mark as answer button and vote as helpful if this reply solves your problem

  • Kicking a user out of the portal if a User Info Setting is not populated?

    That's what we want to do - we have a bit set in a User Info Setting by a custom profiling process. Users are redirected back to the Login screen of the portal when they successfully complete the process and the bit gets set to a certain value. This is kicked off in our OnAfterLogin (Login PEI). Well, if a user just goes up to the address bar in the browser and deletes up to "server.pt", they can get to the portal without this custom process being completed - they can circumvent it, because they technically have already logged in. The problem is that if they don'tcomplete that process, many portlets will not work because they are dependent on data gathered and set as a result of successful completion.
    So, we need to somehow check globally if a certain User Info Setting is populated, and if it is not, log the user out. We know the URL/AS to redirect to, but I don't see a PEI in which a redirect is returned other than those in the Login PEI and Directory Actions PEI. I was hoping the IPageActions interface might help... So, I'm guessing a PEI is not the answer. What would be the best way to approach this?
    Thanks,
    SarahCox Enterprises

    How about having your header or footer portlets check for you?
    Or when you setup a user, only give them access to one portlet. The portlet would allow them to update their information, then give them access to the remaining features of the site.
    just a couple of quick ideas.

  • Terminate a User session in the Portal

    Hello,
    is it possible to terminate a user session.
    I want to delete a user, but I get the following error log:
    - user delete failed
    - Cannot lock at least one of the 4 locks for the owner
    What is necessary to perform, before I am able to delete the user?
    Thanks for your help!
    Best regards,
    Michael

    Michael,
    I think there is a distinction between deleting a user, and a user session. If you want to delete a users session, object locks must be cleared first. Users, as you know are deleted on UME Admin. On NW2004s the UME Admin is now called Identity Management.
    Regards,
    James

  • EP + BW: Problems with user mapping in the portal

    Hi,
    I'm trying to connect the portal with the BW by using the report RSPOR_SETUP which is a step-by-step guide. The steps #1 - #11 seems to be ok but my problem is the 12th step, the user mapping/allocation maintenance in the portal.
    There is an error emerging (in BW): System failure during call of function module RSWR_RFC_SERVICE_TEST (System failure indicates normally an authentication problem between ABAP and Java)
    Another error is emerging by testing the connection in the portal. (System administration u2013 system configuration u2013 system landscape u2013 connection test: the first connection, the SAP Web-AS connection is ok but the second, connection test for connector, is not working.
    Especially the connection to the backend system with the defined connector is not working. The output is: u201CConnection failure. Check that single sign on is correct configured.
    On step 12 of the step-by-step guide I have to select a user in the portal, relate him to a system alias und maintain his technical username and password for the BW. I think here is the problem. Iu2019m able to select and save a system alias for the user, but Iu2019m not able to save his technical username and password. There is another error emerging (in the portal): u201CVerification of user mapping data for system SAP_BW failed, check credentials for errorsu201D, so Iu2019m not able to save the username and password.
    I think thats the my problem. the log file confirms that: "Did not find any existing logon data for principal...." & "No user mapping data available for principal...."
    I hope my problem description is understandable.
    Any ideas how I can solve the credentials problem to save the username and the password?
    Thanks in advance.
    Tan
    Edited by: Tan Yildiz on Jul 22, 2009 1:26 PM

    I could deploy some of the usage types, but there is an error regarding the BI-REPPLAN package. I think it's one of the very last errors that stands between me and a working EP - BI connection. There is a problem with the version. Could you check the log details, to find out more?
    Thank you.
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[D:\usr\sap\BIP\JC02\SDM\program\log\sdmcl20090806164716.log]/>
    <!PATTERN[sdmcl20090806164716.log]/>
    <!FORMATTER[com.sap.tc.logging.TraceFormatter(%24d %s: %m)]/>
    <!ENCODING[UTF8]/>
    <!LOGHEADER[END]/>
    Aug 6, 2009 6:47:16 PM   Info: -
    Starting validation -
    Aug 6, 2009 6:47:16 PM   Info: Prerequisite error handling strategy: OnPrerequisiteErrorSkipDepending
    Aug 6, 2009 6:47:16 PM   Info: Update strategy: UpdateLowerOrChangedVersions
    Aug 6, 2009 6:47:16 PM   Info: Starting deployment prerequisites:
    Aug 6, 2009 6:47:18 PM   Info: Loading selected archives...
    Aug 6, 2009 6:47:18 PM   Info: Loading archive 'D:\usr\sap\BIP\JC02\SDM\program\temp\BIREPPLAN04_0-10005889.SCA'
    Aug 6, 2009 6:47:21 PM   Info: Selected archives successfully loaded.
    Aug 6, 2009 6:47:21 PM   Error: Unresolved dependencies found for the following SDAs:
    1.: development component 'bi/plan/helpers/table2'/'sap.com'/'MAIN_NW701P03_C'/'2846642'/'0'
    dependency:
           name:     'bi/alv/common'
         vendor:     'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.
    dependency:
           name:     'bi/alv/ui'
         vendor:     'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.
    Deployment will be aborted.
    Aug 6, 2009 6:47:21 PM   Error: No Software Component Archive (SCA) or Software Delivery Archive (SDA) selected. Select at least one.
    Deployment will be aborted.
    Aug 6, 2009 6:47:21 PM   Error: Prerequisites were aborted.
    Aug 6, 2009 6:47:22 PM   Error: Error while creating deployment actions. No Software Component Archive (SCA) or Software Delivery Archive (SDA) selected. Select at least one.
    Deployment will be aborted.
    Aug 6, 2009 6:47:23 PM   Info: -
    Ending validation -

  • Oracle apex i want see currently who is working on  the particular applic

    hi:
    i have one application the name is employeedetails. this application fully about employees details. i want make query when button (query)click.it should disply currently who is working on the this applicaion ..i want take who is currently login this application ok..pls give me coding.....very impartent to me...........

    Please stop creating new threads for what is essentially the same topic, this is the 3rd one...!!!
    Now, can you clarify...
    Are you after a report in your application that will:
    A) Show you how many "End Users" are logged into the employeedetails application and using the application at this point in time
    OR
    B) Show you how many developers are logged in to the back end and are modifying the employeedetails application
    Also, if the answer is "A", are your "End Users" purely application based users or are they database users (they have their own schemas)?
    Mike

  • I want to validate that user re-typed the same thing in field2 as in field1

    using the Validation items in HTLMDB.
    Thanks for any help.

    ottismyman,
    There are several ways to do this. Here's one: create a page level validation, implemented as a PL/SQL Expression. The expression should be similar to this one:
    :P1_ITEM1 = :P1_ITEM2;Sergio

  • How to get list of roles decleared in the portal server 8.1

    Hi,
    I want to retrieve list of all the user security roles decleared in a portal application
    programatically.
    Can anyone help me in this?
    Thanx
    Manish

    See http://edocs.bea.com/wlp/docs81/javadoc/index.html
    and com.bea.p13n.entitlements.management.RolePolicyManager.
    Pass EntitlementConstants.P13N_ROLE_POLICY_POOL
    for the aResourceId. (Note javadoc return value is wrong).
    public static String[] listRolesForResource(String anEntAppName,
    String aWebAppName,
    String aResourceId)-Phil"Manish
    R" <[email protected]> wrote in message
    news:3f4b7336$[email protected]..
    >
    Hi,
    I want to retrieve list of all the user security roles decleared in aportal application
    programatically.
    Can anyone help me in this?
    Thanx
    Manish

  • The User portlet and the Portal User Profile portlet

    Im trying to create a sub administrator home page on version
    309, however the 'create user' portlet has been split into
    a 'create user' and a 'update user profile' portlet (as seen on
    the new default portal30 homepage).
    However the only portlet that seems to be available in the
    portlet list is 'update user profile' portlet.
    So how do I add the create user portlet to my homepage?

    I found the wwsec_api and wwsso_api_user_admin packages. I now know I can build my own user profile screen and use these APIs to add, update, and remove users.
    However, do I need to use the wwsec_person$ table, or can I create my own? Or can I add additional fields to the wwsec_person$ table? I have 7 additional pieces of information that need to be captured. I could just use some of the database fields in the table that we don't currently have use for, but then the name of the field will not accurately represent the contents of the data (i.e. store our "Organization" data in the "Department" field, our "DSN Phone Number" in the "Work Phone Number" field, etc.) and it would make for difficult maintenance.
    Can anyone offer suggestions as to how they implemented a customized User Profile, easily?

Maybe you are looking for

  • Adobe Flash Player crashes on Firefox (NetSteam, Stratus)

    Flash Player version: 11,8,800,97 (last) OS: Windows 7 Browser: Mozilla Firefox 22.0 (last) Problem: Adobe Flash Player crashes on Firefox, when runnig project with such elements like NetSteam, Stratus. When problem happen: Only when some streamed da

  • Remove aperture library

    Hello, i've made a copy of my aperture library to dropbox, so i would be able to work on both my macbook air and the imac. This works but now i have an old, unused library on my imac wich is taking about 50 Gb of my hard disk. When i try to remove th

  • Manual reservation for order category 30 not allowed

    Gurus, I want to do manual reservation for order category.In MB21 when i try to do the reservation the system in giving the error message Manual reservation for order category 30 not allowed What should be done to overcome this. In the order one comp

  • Can I add a slide show to my iWeb created site using MobileMe

    Hi there, What I want to do is to create a folder with a load of pictures of me in them and then add them to the Home Page of my website, so that when people visit my website all the pictures play as an automatic slideshow at the top of the page and

  • Error while installing RCU

    Hi All , I m trying to install OBIEE 11g with SQL server 2005. First i tried to install RCU but i m getting the following error at the final step. RCU-6083:Failed - Check prerequisites requirement for selected component:MDS Please refer to RCU log at