Query for Last page visit by user/session and get version # of current page

Hi Guru's,
Any have a query to retrive last page visited by user / session? Somewhere from apex view fir 3.0 or later version? Also looking for query to get version number of current page

RequestCtx.getResponsibilityId() should return you the Responsibility Id &
RequestCtx.getUserId() should return the User Id.
As I understand RequestCtx values are always available in the JSP Page. Kindly check again.

Similar Messages

  • Urgent - Not able to Print back page for Last Page in SAP Script.

    Hello All,
    I need to Print back page in SAP Script, I am able to do it by setting print mode as D, but now the problem is, it does not print back page for last page.
    For eg. if there are 3 pages it prints back page for first two. If there is only one page then it does not print back page.
    Please Help.
    Thanks.

    hi,
    Yes, we can print logo as water mark in scripts
    Just do as like this....
    Upload your logo via SE78.
    - Select 'Import' button from application toolbar of SE78, and perform upload.
    and write this code in scripts
    BITMAP 'COMPANY_LOGO' OBJECT GRAPHICS ID BMAP TYPE BCOL 
    regards
    Sankar

  • I want to restore the look and feel of Firefox 3.6 etc with large icons for last page next page reread and home page located off the toolbar in the upper left like 3.6

    I want 4.0 to look like 3.6 with large separate icons for last page, next page, reread current page and go to home page, in lieu of the little icons to the right of the
    default navigation toolbar. I tried setting up a separate toolbar but it never reappeared. There should be a way to just restore 3.6 look and feel. Otherwise I will go back to 3.6.

    You can make Firefox 4 look and behave more like Firefox 3.6, for details see http://www.computertechtips.net/64/make-firefox-4-look-like-ff-3-6

  • Query for last 8 days results

    any body have a query for last 8 days results
    TIMESTAMPADD(SQL_TSI_DAY, -8, CURRENT_DATE) this is resulting only 1 day results only .if i execute this query is it displaying 8th back day results only.
    i want all 8 back days results .
    anybody have query for this...
    Edited by: user12255470 on Apr 28, 2010 7:19 AM

    This works fine for me:
    SELECT "D0 Time"."T00 Calendar Date" saw_0, "F1 Revenue"."1-01 Revenue (Sum All)" saw_1 FROM "Sample Sales" WHERE "D0 Time"."T00 Calendar Date" BETWEEN TIMESTAMPADD(SQL_TSI_DAY, -8, CURRENT_DATE) AND TIMESTAMPADD(SQL_TSI_DAY, -1, CURRENT_DATE) ORDER BY saw_0
    regards
    John
    http://www.obiee101.blogspot.com/

  • How to find top utilized query for last two months in oem

    how to find top utilized query for last two months in oracle enterprise manager?

    Can you mark the thread as Helpful  and once marked the information can be reviewed by other customer for similar queries
    Regards
    Krishnan

  • Footer for last page

    How to provide footer for last page in areport.

    See the sample program :
    footer will print last page by using at last event.
    *& Report  ZTEST_IEVENTS
    REPORT  ZTEST_IEVENTS no standard page heading
                          line-count 40(2).
    tables : vbap.
    data : begin of i_vbap occurs 0,
           vbeln like vbap-vbeln,
           posnr like vbap-posnr,
           matnr like vbap-matnr,
           kwmeng like vbap-kwmeng,
           netpr like vbap-netpr,
           end of i_vbap.
    data wa_vbap like line of  i_vbap.
    data v_flag type c.
    select-options s_vbeln for vbap-vbeln obligatory.
    start-of-selection.
    select vbeln
           posnr
           matnr
           kwmeng
           netpr from vbap
           into table i_vbap
           where vbeln in s_vbeln.
    sort i_vbap by vbeln posnr.
    end-of-selection.
    loop at i_vbap.
    move i_vbap to wa_vbap.
    at first.
    write:/2 'Order #',15 'Item #',28 'Material #',50 'Qty', 70 'Net value'.
    skip 1.
    endat.
    at new vbeln.
    write:/2 wa_vbap-vbeln,15 wa_vbap-posnr,28 wa_vbap-matnr,
            47 wa_vbap-kwmeng,65 wa_vbap-netpr.
    v_flag = 'X'.
    endat.
    if v_flag ne 'X'.
    write:/15 wa_vbap-posnr,28 wa_vbap-matnr,
            47 wa_vbap-kwmeng,65 wa_vbap-netpr.
    endif.
    at end of vbeln.
    sum.
    skip 1.
    write:/5 'Sub totals', 47 i_vbap-kwmeng,65 i_vbap-netpr.
    skip 1.
    endat.
    at last .
    skip 1.
    sum.
    write:/5 'Grand Totals',47 i_vbap-kwmeng,65 i_vbap-netpr.
    skip 1.
    write:/ 'end of page', 'Footer'.
    endat.
    clear v_flag.
    endloop.

  • Killing User sessions and user calcs

    Hi all,
    We have a situation where users run their business rules during evening and at times in night.
    We also have a maxl script which does aggregation and other calcs daily in night and it does not run as other calcs are launched by users.
    Is it possible to kill the user session and calcs launched by users before running maxl calculation for consolidations?
    I know I can do in in EAS, but want to try to do it in MAxL for automation.
    Thanks in advance

    You would be better off locking people out. After you kick off the automated calc, killing sessions doesn't stop them from initiating calcs while your automated calc is running. In answer to your question, yes, you can do that in maxl.
    alter system kill request all;
    You have other options if you want to be more selective on what you kill.
    kill request <session-id>
    kill request by user
    kill request on application
    kill request on database
    Check out the technical documentation for more info - http://docs.oracle.com/cd/E17236_01/epm.1112/esb_tech_ref/launch.html.
    Kyle Goodfriend
    http://www.in2hyperion.com
    Please make sure to assign helpful/answered to responses if applicable - it rewards those who help and benefits the user community.

  • Killing user session & and update v$session

    i use
    alter system kill session 'sid,serial#) immediate.
    user session killed but not clean, V$session show that user connect
    i also want clean user session and remove form V$session
    Any one who can do this ...
    Thanks

    Hi,
    >>how remove on killing user session
    As I said before, you just need to wait ... Don't worry about. On the other hand, by finding the SPID, you can force the process to be killed instead of waiting for PMON to wake up and kill it, but I think that it is not necessary.
    Cheers
    Legatti

  • App Store says update available for iPhone app. Try to install and get the message "the item you are trying to buy is no longer available" for three apps in a row.

    App Store says update available for iPhone app. Try to install and get the message "the item you are trying to buy is no longer available" for three apps in a row. Even when I go to the specific app and press Update, the update begins to install then aborts with this error message.iPhone 3GS running iOS 5.1.1. Also very long delay typing each keystroke in this message.

    That error message is usually indicative of a problem with the App Store. If you look through the forums, you'll see that a number of people are experiencing the problem. Try again tomorrow.

  • I bought an iphone for my daughter and was unaware that we should have a seperate appleid for each.Now we share an id and get eachothers contacts and face time calls. I recently bought another iphone and want to change ids without loosing items and music.

    I bought an iphone for my daughter and was unaware that we should have a seperate appleid for each.Now we share an id and get eachothers contacts and face time calls. I recently bought another iphone and want to change ids without loosing items and music. How do I do this? The new phone is a 5.

    All purchases are always going to be associated to the ID that was used to purchase/download them.
    If you create an ID for your daughter you will want to check everywhere it is used to make sure you are not sharing messages and stuff. These would be iTunes/app store, iCloud, iMessages, and FaceTime.
    Go thru settings and find all mention of your ID.

  • Is there any "skip page count" command for last page?

    Hello,
    May I know if there is a command(such as even-skip-page-count) specifically for the document last page?
    I have a requirement where PO/Invoice T&C should be printed at the back of the last page only.
    The blog of Tim (http://blogs.oracle.com/xmlpublisher/2007/10/here_are_my_terms_conditions.html) covers
    only odd/even printing.
    Thanks in advance.
    Rownald

    nagornyi is correct.
    i will just expand a bit on the use but it can be found in the documentation.
    you will need to add a section break to the last page of your report
    and also remember to add the header information of you report.
    I may be wrong but when I left the header info out it was not printing.
    header information goes above the tags and footer(totals and stuff like that) below the tags
    Edited by: tarmenel on Feb 26, 2009 9:02 AM

  • Query for turn-over to end-users

    Hi Friends,
    I have create a query called "query1.sql" which print monthly summary report to excel/csv.
    Can I automate this query for turn-over to user/operator, so that the user will just invoke run-time program only to produce the desired output? or maybe create a menu or something to make the query run?
    Thanks a lot,
    Ms K

    Not in the current releases. You can vote for the existing requests for automation/command line at the SQL Developer Exchange, to add weight for possible future implementation.
    And yes, I suppose you could create a User Defined Java Extension to automate through a menu option or something.
    Have fun,
    Mr. K.

  • Query for last four rows?

    please write query for get the last four rows from a table

    ratnakar wrote:
    please write query for get the last four rows from a tablelast 4 rows is indeterminate.
    rows in a table are like balls in a basket.
    which are last 4 balls in any basket?
    Handle:     ratnakar
    Email:     [email protected]
    Status Level:     Newbie
    Registered:     Aug 27, 2012
    Total Posts:     34
    Total Questions:     16 (11 unresolved)
    why so MANY unanswered questions?

  • Party communication channel for multiple stores with multiple user id and passwords in sap pi

    Hi Exeperts,
    I have a scenario proxy to SAOP . where i am sending some information from my stores to third party company   with single user id and password in communication channel.
    but requirement  is changed now  i have 20 stores  with 20 user id and password for communication channel.how can i achieve this requirement?
    Can i create 20 communication channels  for 20 stores  or can handle through the party based communication ?
    Please  help us achieve the requirement.
    Regards
    Ravinder.s

    Hi,
    In the SOAP Receiver adapter, you can only store 10 userid/password combinations via Authorization Keys. These are called via Dynamic Configuration via technical name TAuthKey. In your case, for it to work, you need:
    1. 2 business components/2 SOAP receiver communication channels.
    2. 1 receiver determination with xPath for username to determine correct business component
    3. 1 interface determination
    4. 2 receiver agreements (one for each cc)
    Hope this helps,
    Mark

  • Provide Feedback for the DVD Studio Pro User Manual and Onscreen Help Here

    The Apple documentation team for professional video applications would like to know what you think about the DVD Studio Pro 4 Help documentation (available in the Help menu):
    • How often do you use the DVD Studio Pro Help documentation? Under what circumstances do you use it most?
    • How do you find what you're looking for in DVD Studio Pro Help? For example: table of contents, index, skimming, PDF links, PDF search?
    • What do you like most about DVD Studio Pro Help?
    • What is missing?
    • Are there any particular examples of other manuals or documentation that you consider to be good models for future editions of the DVD Studio Pro User Manual and onscreen help?
    • By what method do you usually learn a new application? For example: provided tutorials and manuals, third-party tutorials or books, training classes?
    • What do you think is the most difficult feature/concept to grasp in DVD Studio Pro?
    • What's the most frustrating experience you've had with the DVD Studio Pro Help documentation?
    • Do you prefer electronic or print documentation?
    • Are there any other delivery methods or media you think we should explore?
    • What size computer display do you typically use to view the onscreen help? For example: 15-inch, 17-inch, 20-inch, 23-inch, or 30-inch?
    • What resolution is the computer display set to when you view onscreen help? For example: 1024 x 768, 1280 x 854, or 1920 x 1200 pixels?
    • Do you use multiple computer displays?

    • How often do you use the DVD Studio Pro Help
    documentation? Under what circumstances do you use it
    most?
    I'm working with DVSP for 4 months, so everytime I don't know how to do something I use the documentation. As the times passes I almost don't need it so often.
    • How do you find what you're looking for in DVD
    Studio Pro Help? For example: table of contents,
    index, skimming, PDF links, PDF search?
    PDF Search, but I think is not the best way to search because it shows too much useless results.
    • What do you like most about DVD Studio Pro Help?
    It is powerful and easy to use.
    • What is missing?
    A way of editing the DVD Project Source Code. Let me explain: in some big projects I just need to change the Jump from "button_1" to "button_2", and to do that I need to find the button under my menus and choose it from a list. If I can just type "2" instead of "1" it will be faster and error-free.
    Advancing in this idea, if I can open the entire link list as a Source Code in TextEdit, I can see all the buttons and link all of them without seeking for each on menus.
    Today the Connections Tab helps a lot, but I still need to find the button un the menus. With 5 or 4 menus is easy, but sometimes I have 50...
    • Are there any particular examples of other manuals
    or documentation that you consider to be good models
    for future editions of the DVD Studio Pro User Manual
    and onscreen help?
    The OSX help is great!
    • By what method do you usually learn a new
    application? For example: provided tutorials and
    manuals, third-party tutorials or books, training
    classes?
    Manuals, third-party tutorials and discussions foruns.
    • What do you think is the most difficult
    feature/concept to grasp in DVD Studio Pro?
    • What's the most frustrating experience you've had
    with the DVD Studio Pro Help documentation?
    Using scripts. It could be better with a lot of examples. "To do that, try this one".
    • Do you prefer electronic or print documentation?
    In electronic is easy to find things.
    • Are there any other delivery methods or media you
    think we should explore?
    • What size computer display do you typically use to
    view the onscreen help? For example: 15-inch,
    17-inch, 20-inch, 23-inch, or 30-inch?
    I use AppleCinema 20
    • What resolution is the computer display set to when
    you view onscreen help? For example: 1024 x 768, 1280
    x 854, or 1920 x 1200 pixels?
    1650x1050
    • Do you use multiple computer displays?
    No.

Maybe you are looking for

  • Error while Filling a setup table

    Hi, While i filling a setup table, i got this error message, "Error determining Rate:foreign curr .local curr INR date 27.06.2007 (doc.8166) " any body tell me the meaning of this and how to rectify it. -Arun.M.D

  • R/3 Vendor changes not updated in to SRM

    Hi, 1) Vendor changed on 01/05/2009 in R/3 (Blocked) but not updated in to SRM, 2) User created shopping cart for this vendor on 20/08/2009 and approved PO gone in to Error Error:21.08.2009  16:55:28  PO 4710113629: No instance of object type Purchas

  • Movie File Stops Downloading

    Maybe someone here can give me some pointers. I bought "The Incredibles" in HD from the iTunes store, but the HD file won't completely download. Most common occurrence: It loads up to about 780 MB, then jumps around a bit in downloaded size, then sta

  • Toplink JPA: jdbc connection access required

    I have a strong reason why direct access to the connections used by Toplink JPA is required: for each connection I need to execute - a "set role" to grant permissions, - "set lock mode" to prevent hangups, - "set isolation" to get the correct transac

  • IPhoto won't open. HELP!

    Help! I have a MacBook Pro 10.5.8 and iPhoto8 with pics / video back to 2007. Never had problems. Stupid enough to never back up. Now iPhoto will not open & says "Your photo library is damaged or unreadable and cannot be opened. Please restore from a