Need to Apex App user login last login details

Hi All.
how will get the Apex App user login details ? is it have any table or please suggest me on this...

Not sure what is your exact requirement, but did you look at "Monitor Activity" under "Administration" (you should be an Administrator to the workspace)?

Similar Messages

  • LDAP attribute for user's last login time?

    Hi all,
    Is there an LDAP attribute that I could return (via an "ldapsearch" query) that would contain the user's last login time?
    We have:
    Directory Server Version: 5.2_Patch_2 ; Build number: 2004.107.0034
    other...
    Identity Server 2004Q2
    sparc-sun-solaris2.9
    Thanks in advance!

    Hello,
    If you need this info, you will have to create a password policy that log last logon time.
    But be carefull with this function, it can create a lot of cpu load.
    <http://docs.sun.com/app/docs/doc/820-4809/fhkrj?l=en&n=1&a=view>
    Regards
    Eric.

  • Sunone Messaging Server 6.1--How to list all mail user's last login time

    hi,i want to know how to list all the mail user's last login time.
    There are more than 100000 mailbox accounts on our mail server,
    i want to know which account is not used for more than 2 or 3 years.
    thanks.

    http://wikis.sun.com/display/CommSuite/imsconnutil
    Somchai.

  • How to send a request to other apex app users?

    HI,
    Is there any kind of function in apex can enable me to make a thing that can enable apex app end users communicating with each other?
    Like, If I input an error item no, and I wouuld like my administrator to change it, I now will write him a small text in stick paper, can we do things within apex?

    Hello,
    I don't think it's too hard to make something like that. Basically you've a table for messages and you have a region on page 0 (to show on all pages) or whatever page you want that queries that table. You could even let it query every x seconds automatically with ajax.
    Carl for ex has in his app a comments section: http://apex.oracle.com/pls/otn/f?p=11933:5
    Regards,
    Dimitri
    -- http://dgielis.blogspot.com/
    -- http://www.apex-evangelists.com/
    -- http://www.apexblogs.info/

  • Total users active, last login, inactive etc

    Hi,
    Need to know some way or script which can display the number of users login, inactive, total number of users and their details on Oracle 10g.
    Thanks in advance.

    Richa,
    Check this if it works for you
      col sql_text for a80
    set pages 200
    set line 900
    col PROGRAM for a20
    col MACHINE for a20
    alter session set nls_date_format='dd-mon-yyyy hh24:mi:ss';
    col event for a40
    select *
      from (select /*+ RULE  */sa.sql_id, s.sid "SID", s.serial# "SERIAL",
             s.program "PROGRAM",
             s.machine "MACHINE",
             sa.SQL_TEXT "SQL_TEXT",
             s.logon_time,
             round(s.last_call_et / 60,0) "Inact_Min",
             s.username,
             s.osuser,
             s.status
              from v$sqlarea sa, v$session s, v$process vp
             where sa.address = s.sql_address
                          and s.paddr = vp.addr
             order by CPU_TIME desc);
    Thanks,
    Ajay More
    http://www.moreajays.com

  • Apex app user URL

    Hi there,
    I am fairly new to apex and I am in the process of deveolping my first full app, I would like to give users access to it. What I would like to know is what URL I would give to the users, if I give them the same URL I am using then they will get the development option at the bottom of the page. I am using custom autentication, any helip would be appreciated, thanks, Anil

    If you provide the user with an URL like
    http://apex.oracle.com/pls/otn/f?p=AFK:LOGIN:
    or
    http://apex.oracle.com/pls/otn/f?p=<appid>:<login page id>:
    they won't get the dev options...

  • Is there a way to audit user accounts by last login date/time?

    Hello all,
    Is there a way to see or report on a user's last login.  I don't see a last login date parameter in the UM record.  I see that all security events are logged in the security log including logon and logoff, but what I need is to be able to produce a report that provides all user accounts which have not been logged on to since a specified date or # of days, i.e. since 01/01/2008 or >180 days.
    Any clues or guidance is appreciated.
    Regards,
    Paul

    Is there a SAP / Portal standard way of accessing this information?
    Our authorisations team have asked me to get them such a report, and I can't find anything on the portal (NW2004) that would give this information. I don't think the basis guys would be terribly chuffed to provide access directly to the database. If this (database access) is the only way, then I suppose a custom developed app could be created and deployed to the portal, but I would have thought this is a reasonalby sensible report so would be standard content somewhere.
    Cheers,
    Andrew

  • Portal Acitivty report to track Last login date of user

    Hi,
    We need a report which shows the last logins of Users in Portal.  We checked the Portal Activity Report but it is showing only First login.  But we need the Last login how can I configure the Portal Activity report.
    Thanks
    Naveen.

    Hi All,
    Just in case Activity Collector or Portal Activity Report is not sufficient for you and your portal management to gather important usage data, you may be interested in our SAP certified solution, Click Stream.
    May make your life a lot easier when finding the usage stats you need (Easy installation u2013 Free download u2013 Fully functional test version available).
    More information here:
    Website: [www.sweetlets.com/clickstream|http://www.sweetlets.com/clickstream]
    EcoHub reviews: [http://ecohub.sdn.sap.com/irj/ecohub/solutions/clickstream|http://ecohub.sdn.sap.com/irj/ecohub/solutions/clickstream]
    Good luck and hope that helped.

  • User Last Login Time

    I'm trying to use DS6 built-in functionality for tracking user's last login time. I created a new password policy and enabled pwdKeepLastAuthTime attribute. Then I tried signing into Access Manager.
    According to the documentation, an attribute pwdLastAuthTime should be added to the user entry, but it is not there.
    Any ideas how I can get this to work?

    Last login time is a feature provided with the new Directory Server password policy implementation introduced in DS 6 and is not part of the compatibility mode. Check the Directory Server password policy compatibility mode:
    $ dsconf get-server-prop ... | grep 'pwd-compat'
    pwd-compat-mode : DS5-compatible-mode
    The Directory Server password policy compatibility mode must be advanced past DS5-compatible-mode:
    $ ldapmodify ...
    dn: cn=Password Policy,cn=config
    changetype:modify
    replace:pwdkeeplastauthtime
    pwdkeeplastauthtime:TRUE
    modifying entry cn=Password Policy,cn=config
    ldap_modify: DSA is unwilling to perform
    ldap_modify: additional info: (Password Policy: modify policy entry) "pwdKeepLastAuthTime: TRUE" is not supported in server mode DS5-compatible-mode ("cn=config" pwdCompat: 0).
    $ dsconf pwd-compat ... to-DS6-migration-mode
    $ dsconf get-server-prop ... | grep 'pwd-compat'
    pwd-compat-mode : DS6-migration-mode
    Now it should work. If not, please try binding directly to the directory server as the user (e.g., do an ldapsearch as that user) and check the entry.

  • SQL query to find out last login for each database

    Hi everybody,
    I have a view with following columns:
    DatabaseSid, lastLogin, firstLogin.
    I want to now the newest last_login date for every database.
    SID First Login Last Login
    e.g. Database1, 11.11.2011, 01.12.2011
    Database1, 01.04.2012, 01.05.2012
    Database3, 03.03.2004, 03.06.2005
    Database 3 07.09.2012, 12.10.2012
    How can I do a query to find out for eacht DB (DB1, DB2 and so on) the Last_Login Date?
    Thank you in advance
    Steve

    Steve wrote:
    Hi everybody,
    I have a view with following columns:
    DatabaseSid, lastLogin, firstLogin.
    I want to now the newest last_login date for every database.
    SID First Login Last Login
    e.g. Database1, 11.11.2011, 01.12.2011
    Database1, 01.04.2012, 01.05.2012
    Database3, 03.03.2004, 03.06.2005
    Database 3 07.09.2012, 12.10.2012
    How can I do a query to find out for eacht DB (DB1, DB2 and so on) the Last_Login Date?
    Thank you in advance
    SteveI'm curious as to how you collect this information from multiple databases into one database, and of what value the data is once you have it.

  • No of Apps users log-in.

    Hi
    Is there any 1 who can help me in this regard.
    How do i check that how many APPS users r currently login?
    Iam using RDBMS : 9.2.0.3.0 Oracle Applications : 11.5.9
    Thnx....

    How do i check that how many APPS users r currently login?You can also use the following SQL statement to count concurrent users connected to Oracle Apps ..
    SQL> select count(distinct d.user_name)
    from apps.fnd_logins a, v$session b, v$process c, apps.fnd_user d
    where b.paddr = c.addr
    and a.pid=c.pid
    and a.spid = b.process
    and d.user_id = a.user_id
    and (d.user_name = 'USER_NAME' OR 1=1);
    And the following SQL to show username(s) ..
    SQL> select distinct d.user_name
    from apps.fnd_logins a, v$session b, v$process c, apps.fnd_user d
    where b.paddr = c.addr
    and a.pid=c.pid
    and a.spid = b.process
    and d.user_id = a.user_id
    and (d.user_name = 'USER_NAME' OR 1=1);

  • Need to display last login details to the user after they login into portal

    Hi All,
    As per our requirement ,we need to display to the user,the following things:
    1.Last login date and time will be maintained and displayed to the user after login.
    2.Last unsuccessful login date and time will be maintained and displayed to the user after login.
    3.No. of unsuccessful retrials before locking the user will be maintained and displayed to the user after   login.
    Therefore we are creating a webdynpro application wherein we are making use of the UME API and trying to retireve these information.
    The methods i am using are:
    IUserAccount.getLastFailedLogonDate() // To fetch the Last unsuccessful login date and time
    IUserAccount.getFailedLogonAttempts() // No. of unsuccessful retrials
    IUserAccount.getLastSuccessfulLogonDate() // Last login date and time
    But the problem is IUserAccount.getLastSuccessfulLogonDate() is deprecated and i unable to use it,and also i  am unable to get the value *IUserAccount.getFailedLogonAttempts() * I am only geting zero.Can anybody let me know alternative method to get this details.
    Request you to guide me and help me to resolve this issue.
    Thanks and Regards,
    Nishita Salver

    Hi,
    I hope you are trying to show your login date from SharePoint List.
    My suggestion is 
    1. by using ECMA Script ,retrieve values from that list and show the same in Master Page.
    2. If you are not comfortable with ECMA, develop Visual Webpart and add the Visual Webpart in master page by using SharePoint Designer.
    Please let me know ,if you need further guidance.
    Don't forget to mark it as an Answer if it resolves your issue and Vote Me as helpful if it useful.
    Mahesh

  • Hi all, can someone help me in getting last login date of a user in CQ5 please?

    Hi all, can someone help me in getting last login date of a user in CQ5 please?

    CQ is REST based and does not have the concept of session. So there is no feature to track login or logout details.  Most of our customers use some kind of central authentication Ex- SSO hence no need arises to have such functionality built in.  However if needed you have the ability to implement such at a project level solution. Ex:- custom login modules or auth-handler by taking project specific constraints and requirements into account

  • Last login details in Apps 11i

    Hi All,
    Is there a script to find the last login details of a User in Oracle Apps 11i ?
    Thanks,

    Afia wrote:
    Hi All,
    Is there a script to find the last login details of a User in Oracle Apps 11i ?
    Thanks,Query FND_USER (LAST_LOGON_DATE column) -- http://etrm.oracle.com/pls/trm11510/etrm_pnav.show_object?c_name=FND_USER&c_owner=APPLSYS&c_type=TABLE
    Also, see old threads for the similar topic -- https://forums.oracle.com/forums/search.jspa?threadID=&q=Connected+AND+Users&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Last login time of user

    Hi Friends,
    I wanted to know the name of dictionary view which keep the user login details iee. login date and time. I want to check that what was the last login time of user. So that if user has not logged in since 30 days then his acccount must be locked.
    Plz let me know if someone has any idea on this
    Regards
    Alok

    Hi Guys
    Thanks for your response. Let me more clear you what i m looking for.
    I have 100s of developers working with me. I keep on maintaining data which user is being used by whom. I am using product/project based username. I want to achieve the following.
    1) Find the users those are not using their login since X nos of days ie. to know who all are in use. Objective of this to know if any developer has swiched or quite from project.
    2)I will lock those account and notify those owner that account has been locked considering that they are not using.
    3)now these accounts can be allocated to some other developers on need basis.
    This will give me flaxibility of using my existing resource and better management.
    I hope i m clear with what all i need.
    Please suggest best way to do this :)
    Thanks a lot.
    Alok

Maybe you are looking for

  • No Audio Playback due to Error Message "Disk is too slow. (Prepare) (-10001)"

    Out of the blue, no audio playback.  Was working just fine earlier today. I repeatedly get the error message: Disk is too slow. (Prepare) (-10001) NOTE: I have more than enough disc space.  That is NOT the issue. I also just got a second error messag

  • Service Account Management through Request Templates

    Hi, I am trying to implement Service Account lifecycle use cases (Create, Modify, Delete) on 2 resources(AD User, iPlanet User) through Request templates. In this case OOTB tasks - Service Account Alert, Service Account Changed, Service Account Moved

  • Changed TV out to off but ipod still only plays audio and no video

    Just recently my ipod decided not to play video. All the videos in the video folders are gone and now appear in the music folder. Even the video podcasts no longer appear in the video podcast folder. I have changed the TV to out to off and still it c

  • Cron Job

    Dear all, I created simple script in the file name 1) test.sh export PATH=$PATH:$ORACLE_HOME/bin echo $PATH 2) Now i schedule this file through crontab -e and it will run in every one minute 01 * * * * /u04/test.sh /u04/test.log 2>&1 Note: When this

  • Analyzing SM58

    Hi all, In BW, dataloads run which have source system as R/3. Now when the infopackage starts in BW, corresponding extraction job starts in R/3. Once this job is complete, the data packages are sent to BW through tRFC. Now in SM58, we can have a look