When did a user last used a particular Responsibility.

Hi,
I am looking for a way which can provide me information regarding when did a user last used a particular Responsibility ( eg CIC User,CRM Administrator etc).
For eg , If I last used CIC User responsibility last on 30th March 2015, then is there anyway I could fetch this information ?
Any help with backend query or front end navigation would be much appreciated.
Regards,
Praveen

Thanks Ahmed Abbas, this works perfect 
please don't mind but I have modified the query a little so that exact responsibility could come up  and kindly suggest if this is okay
SELECT user_name,
       frt.responsibility_name,
       fr.responsibility_key responsibility,
       (SELECT user_function_name
          FROM fnd_form_functions_vl fffv
         WHERE (fffv.function_id = A.function_id)) "Current Function",
       TO_CHAR(first_connect, 'DD/MM/YYYY HH:MI:SS') start_time,
       TO_CHAR(last_connect, 'DD/MM/YYYY HH:MI:SS') "Date and time of last hit",
       TO_CHAR(SYSDATE, 'HH:MI:SS') CURRENT_TIME,
       session_id,
       (SYSDATE - last_connect) * 24 * 60 mins_idle,
       fnd_profile.value_specific('ICX_SESSION_TIMEOUT',
                                  A.user_id,
                                  A.responsibility_id,
                                  A.responsibility_application_id,
                                  A.org_id,
                                  NULL) TIMEOUT,
       counter "How many hits a User has made",
       A.limit_connects "Num of hits allowed in session"
  FROM icx_sessions A, fnd_user b, fnd_responsibility fr,fnd_responsibility_tl frt
WHERE A.user_id = b.user_id AND
       fr.responsibility_id(+) = A.responsibility_id AND  fr.responsibility_id = frt.responsibility_id and
       user_name = nvl(:USER_NAME, user_name) and
      upper(frt.responsibility_name)=upper(':P_resp_name') --upper (fr.responsibility_key)  = upper(':P_resp_name')
ORDER BY last_connect DESC;

Similar Messages

  • Need a Tool to Display When a Program Was Last Used

    Is there an SAP tool that tells when a program was last ran? I need to terminate some custom programs but unsure of which programs are not being used. Is there anything in SAP that I can use to tell me when a program was last used i.e., 6 months ago, 1 year or 2 years ago or perhaps more?
    Thanks in advance and Happy New Year!

    Hi Beth,
    Information like this is as good as the logging configured in your system. If your basis team is good at keeping logs for a long time, then you should be able to get this information using SM20 transaction.
    If they didn't keep the logs(since they are voluminous, they periodically delete them), then you have no trace of them). Work with your basis team, they may know more transactions.
    Another option is to pick the programs that you think are obsolete, remove access to execute them from all the users and if no one comes back, you may delete it. But this means you may even have to wait for one year, as there may reports that are run only on year-end.
    There is no straight forward way of knowing this information unless you have the basis help.
    Please let me know if it helped.
    Regards,
    Srinivas

  • When was an item last used in Keychain?

    I am trying to clean up the entries in my Login keychain.  A lot of the entries (passwords, certificates, etc) are cryptic, and it's hard to know what they are.  Is there a way to find out when an entry was last used?  When I say "last used", I mean last accessed by an application.  I do not mean last modified.  Thx

    I don't know that there's an easy way to figure that out, but for certificates, you can look at the expiration date.  Any certificates that have expired can be deleted, as they're of no use any longer.  Passwords can simply be weeded out if they're no longer useful.  And, of course, you should be able to reset the entire keychain without too much hassle, beyond re-entering passwords and restoring any important certificates that you have added.

  • BUG: Speed Dials not functioning correctly when Option button is last used

    There is a bug in WebOS where Speed Dials do not work correctly.  Holding down your speed dial favorites button will not place the call. This happens when the option key is used in launcher or card view before attempting speed dial.
    For instance if your last character of a search you did 4 hours ago on your phone contained a series of numbers and you locked the option key to do so, (or even if you accidently hit the option key last and then did not need it) then an attempt to use speed dial "G" will not work, as your Pre/Pixi thinks you are holding down the "6" key and not the "G" key.
    This needs to be remedied (for instance have the option key press clear out or unlocked as soon as the search is performed or cleared off of the phone) because there is no way to tell what state the option key is in before using a speed dial (not that I want to check and fiddle with it anyway).

    The Z and B keys are the * and # keys. That is why they are not in the speed dial list. Hmmm... while it might be a "bug" at this time your the only person having this issue as far as I can tell. Since the issue moved to another phone it could be that  its related to your Palm Profile. I unfortunately cannot replicate this issue but would like to test something. Can you do a Partial erase on your device and create a new Palm profile? This will see if the issue is still on the device.
    If it is not then the issue is within your Palm Profile. If that is the case I can help you from there. Please post back when you tried this step.

  • Where to check when the query was last used.

    Hi all,
    Where can we check the information when a particuler query was last used. (date ). Any table.
    Also how can we check the same from satistics queries.

    Hi..
    run a query and you will immediately see a new record in table RSDDSTAT (SE16) with your user-ID.
    Also check the Query statistics in Tcode ST03N.
    Cheers.

  • Is there a way to check when was my phone last used?

    My apologies for the very unusual question.
    My question is simply to know if there is a way to find out when was my phone last tuned on or used.
    Basically i left my business at a place with a lot sensitive work data and i have a great feeling that it has been accessesed. So if anyone can help me if there is an App or a service that would allow me to find out the time stamp of the time and date of the access or even better which apps were accessed.
    Thank you for your time and brain.

    While this is not all you are asking for and may not be helpful, in Settings > General > Usage, you can find the number of hours since the last charge, and how how much of that time was standby. Total minus standby should be the total time someone was using it since its last full charge.
    I do not know of any built-in function, however, to show all of what you are asking for.

  • When a database is last used in SQL Server 2000.

    Hi,
    Need to create one script by which I can get my any of the database lastly used, which is running on SQL Server 2000 lastly used.
    Lets say if I have 100 databases running on SQL Server 2000, then using one query I can get all the databases last access date.
    I dont want to implement audits because that will give only the result after audit setup.
    Thanks In Advance
    Regards, Ashish Tripathi

    Agree with Erland.
    There is no "column" in sys.databases till now. I would suggest you to vote for this feature.
    https://connect.microsoft.com/SQLServer/feedback/details/659846/database-last-accessed-time
    Balmukund Lakhani
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    This posting is provided "AS IS" with no warranties, and confers no rights.
    My Blog |
    Team Blog | @Twitter
    | Facebook
    Author: SQL Server 2012 AlwaysOn -
    Paperback, Kindle

  • Is there a way to see when a plugin was last used so it could be determined if that plugin could no longer be needed?

    is there a way to tell if a plugin is no longer needed. In other words is there a way to tell when it was last used to determine if it should be deleted. for instance iphoto6,

    the 4-5th digits of the serial number indicate week of production
    ie 82327 = week 27 of the year.

  • Checking when Z-Programs where last used

    Is there a SAP Standard Program that lists when Programs where last used?
    I think SAP has something when they do a Unicode Migraqtion, but is this Program generally available.
    Or does anyone have any coding?

    Question has been asked and answered many many times.  Please search before posting,

  • Powershell script for when user last used their AD account to login or unlock a computer.

    I want to create a method for determining when a users account would expire after 35 days of inactivity.
    The issue would be not when they last logged on, as many of our users just lock their machines, but when they last logged on or unlocked any computer in the domain.
    I am thinking a combination of last logon with a session unlock parameter.
    In the system logs:
    Event viewer id for logon unlock is 7.
    SessionSwitchEventArg - SessionSwitchReason is SessionUnlock.
    Is this feasible?

    dsget user -inactive 30
    Don't reinvent the wheel.
    http://technet.microsoft.com/en-us/library/cc725702.aspx
    ¯\_(ツ)_/¯

  • How to view when a table was last used!!?

    Hi,
    Pls let me know where I can view when a table in the database was last utilitized i.e. any selection or manipulation was performed on it.
    Thanks in Advance,
    Abhi

    Hi,
    you can see if some structure changes were done (DDL statements) through user/all/dba_objects view
    select * from user_objects where object_name = 'A1';
    ... LAST_DDL_TIME
    11/14/05 07:59:10 ...
    alter table a1 add (c2 int);
    ...LAST_DDL_TIME
    11/14/05 07:59:38 ...
    Also you can monitor access to tables (with some degree of errors) using V$ACCESS and the monitoring can be set up through v$segment_statistics.
    Andrey

  • No of user currently using a particular jsp file

    hi
    i have two questions
    1)
    i have a jsp page . i want to get the names of all users in the server who using that jsp currently.
    2)
    I have a jsp page . i want to retrieve all the names of the jsp, bean files which have been used by that jsp page.
    Thx in Adv
    Pradeep

    U wanna 2 liszt all acteev HTTP ses'ns? (Is it r3ally eezr 2 reed'n'rite w/ abbrs leek "thx", "ur", ...? Should I really bother answering a question that is so unimportant to you that you can't even be bothered to type the vowels of "are" in your question?)
    I can't see a really good way to do that, offhand. There's HttpSessionContext which would do it, but that's deprecated. Maybe a hack using HttpSessionBindingListener would do it (assuming single web server).
    The really real way would be to write your own session manager and put in a getAllSessions() method (or find a ready session manager that has it.) If needed, think about multi-server clusters: if the web servers store sessions in a database, you'd need to get the list from there.
    Or, in other words: "uh, are you really sure you want to go to all that trouble...?"
    How about this: log user ids in the web server log at each page access. To get an approximate head count, take the last half hour of the log and "sed | sort | uniq | wc -l".

  • I want to force a user to use a particular number series

    Hi,
    I have setup my journal numbers such that under document numbering setup => Journal enteries I have the following document numbers
    Name        Start No    Next No
    Primary             1 
    Transact        400001 400016
    Jnls               600001
    The default is setup to Transact, so all system journals are posted against this number series (so all transactions effectively).  I want one of my users to be able to input journals but they must use the Jnls number series.  Unfortunately they are not responsible enough to always check the top left corner of the journal entry screen to make sure they are posting into the correct series. 
    How can restrict them so that they can only post into this series?  (Obviously they need to be able to continuing posting AP/AR invoices which will ultimately be posted against the transact series).
    Thanks
    Dan

    Hi Dan,
    Please check in Test if it can help :
    Create two Journal Entry series and when you try to SET DEFAULT the series by clicking on Set Default, then you can assign it to specific user or to all the users.
    Check if this is what you are looking for.
    Regards,
    Jitin

  • When did a cluster last failover?

    Im need to use T-sql to check when a sql instance was last failed over to the other node in a two node cluster?
    Is this possible?
    Does a SQL instance have to restart when its failed over or does it transition seamlessly?
    Thanks,
    Zoe

    If you only want to find the failover and nothing else then you can edit the first script:
    EXEC master.dbo.xp_readerrorlog 2, 1
    2stands
    for errorlog file number and you can go up to 6 errorlogs. That is like past 7 fail overs/SQL restarts.
    Hope you are not cycling the
    error log.

  • Help: when did my account last access the internet...

    How I can to know, when my account were connected with the internet last time ?
    Subject/title edited for clarity.

    The problem appears to be caused by having the Cool Iris add-on attached to Firefox. I have removed Cool Iris and the problem has gone! I also note that there is now a 'fix' to the Cool iris add-on available for this specific problem
    Paul

Maybe you are looking for

  • I can't transfer a purchase from one apple ID to another?

    OK, so I have my apple ID and then my friend and I have one that we share. Well, I bought a movie on the ID that we share but I couldn't download it to my phonne because I don't have enough room. However, I would still like it in my iTunes. I am sign

  • Issue with refresh of task flow in dynamic region

    Hi All, I am using Jdeveloper version 11.1.1.6. In my fusion application I am facing an issue with the task flow refresh in the dynamic region. In my application, I have one task flow in which the side navigation command links are there and on the ri

  • Apps not showing correct version

    hello masters, i would like to know how to check exact version of oracle applications R12. i have applied patch delta6 and RUP6 but don't know it is applied or not......how can i check that patch is applied successfully??? when i query SQL> select pr

  • Total purchase value should not increase beyound certain value.

    Dear Sirs, The requirement from my client is- The total value of certain materials purchase should not increase beyond certain value. Here vendor is not constant. Can any body help me in this respect. regards, Anup.

  • JDBC and SQLJ

    Can I use SQLJ inside my servlets? Or, do I have to create stored procedures with SQLJ and connect to those through JDBC in my servlets? If I use SQLJ as stored procedures, how do I retrieve the information from the SQL calls from my servlet? Thanks