Oracle APEX pages last used

Is there any way to find out what date a page in an application is last used and by whom? This I am trying to find out for all the pages in an application. I can do that going through each page > Activity > Page views by user. But it is cumbersome to go into each page and run "By User for Page XX".

>
Please update your forum profile with a real handle instead of "908006".
Is there any way to find out what date a page in an application is last used and by whom? This I am trying to find out for all the pages in an application. I can do that going through each page > Activity > Page views by user. But it is cumbersome to go into each page and run "By User for Page XX".This information is available through built-in reports and APEX views. See:
<li>Monitoring Activity Within a Workspace
<li>Creating Custom Activity Reports Using APEX_ACTIVITY_LOG
<li>APEX views: Home > Application Builder > Application > Utilities > Application Express Views
Note that the underlying logs are purged on a regular basis, so for the long term you need to copy the data to your own tables, as Martin handily suggests here.

Similar Messages

  • Loop through checkbox in Oracle APEX 4.2 (using JQuery Mobile)

    Hello!
    I want question text and a report containing the possible answers is shown on a page. An answer can be selected by clicking on the checkbox. After hitting the submit button, the selected checkboxes containing the Answer Text, an answer_id and the current session_id are to be inserted into a table within the database.
    Within Oracle APEX 4.2, I am using a classic report to achieve this. Thich is actually a bad solution, because the checkboxes within the report are shown as simple HTML checkboxes, instead of neat JQueryMobile checkboxes). Anyway, this is my current solution:
    Is use this code for creating the classic report:
    SELECT APEX_ITEM.CHECKBOX(1,answer_id), answer_id, answer_text
    FROM ANSWERS
    WHERE question_ID = :P10_Question_ID;
    The insert of the data is done via the on submit process "On Submit - After Computations and Validations"
    This is the code for the on submit process:
    DECLARE var_session_id NUMBER := :P0_SESSION_ID;
    BEGIN
    FOR i in 1..APEX_APPLICATION.G_F01.COUNT LOOP
    INSERT INTO STUDENT_ANSWERS (answer_id, answer_text, session_id)
    SELECT a.answer_id, a.answer_text, var_session_id
    FROM ANSWERS a WHERE a.answer_id = APEX_APPLICATION.G_F01(i)
    END LOOP;
    COMMIT;
    END;
    But this solution does not work. Instead, nothing is inserted into the database.
    I don't know why the process is not inserting into the database, maybe there is something wrong with this line here WHERE a.answer_id = APEX_APPLICATION.G_F01(i) ?
    I even tried a simple update process for testing purposes, but this doesnt work either:
    BEGIN
    FOR i in 1..APEX_APPLICATION.G_F01.COUNT LOOP
    UPDATE STUDENT_ANSWERS SET text = APEX_APPLICATION.G_F03(APEX_APPLICATION.G_F01(i))
    WHERE am_id = APEX_APPLICATION.G_F02(APEX_APPLICATION.G_F01(i));
    END LOOP;
    COMMIT;
    END;
    Can anybody tell me how to loop through a checkbox within ORACLE APEX 4.2 and how to insert the values ANSWER_ID, ANSWER_TEXT and SESSION_ID into the table STUDENT_ANSWERS after hitting the submit button? If you would know how to do it without using a report but a simple checkbox, this would be even more helpful for me!

    I would start by putting this after submit, to check the contents of the array.
    apex_debug.message('count:'||apex_application.g_f01.COUNT);
    FOR i IN 1..apex_application.g_f01.COUNT LOOP
        apex_debug.message('i:'||i||':'||apex_application.g_f01(i));
    END LOOP;
    Then compare the contents with your answers table.

  • Oracle APEX page is not working from cloned APPS

    Dear Gurus
    The APEX page is working fine in our PROD APPS, but having done the successfull cloning of APPS, now if we try to access the APEX page , it is not coming up, is there any config change we need to make???
    following is the APEX which is working fine...
    http://appsprod.test.com:7778/pls/apex
    and following in cloned APPS is not working at all....
    http://clonedapps.test.com:7778/pls/apex
    please help to resolve this issue..........
    thanks

    Hi
    What is being recorded in your Apache log files (I'm using you're using Apache due to the port number you have)?
    Remember, the more information you can give us the better armed we are to help you.
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • Website using Oracle APEX

    Hi Gurus,
    Please tell me if Oracle APEX can be used to deploy a full fledged website on internet.
    I have the application ready on my personal machine but need to know if this can be made available for everyone on internet.
    Regards,
    Abhishek

    Abhishek,
    If your organization does not have IT infrastructure but has man power (APEX admins), you can use the Amazon EC2 which is cloud computing. Just simply pay monthly fee. Here is a post of APEX on cloud - http://jastraub.blogspot.com/2009/03/test-drive-oracle-application-express.html
    Otherwise, here is the list of companies which can host APEX applications - http://www.oracle.com/technology/products/database/application_express/html/apex_com_hosting.html
    Ittichai

  • Email link to open oracle apex

    Hi all expert,
    Currently, my application is running in apex 4.1 oracle db 11g XE.
    How can i open oracle apex page from outside link?
    My program follow is in this way, DBMS_JOB will call a procedure to send email to user when there is a new records to user.
    The email contain a link (eg: "http://172.23.8.11:8080/apex/f?p=100:20101:::::P20101_TNO:5002001"). Once user click on the link, user should be able point to new result page.
    My current program issue is, the program will point to login page, once user click on email link. When user successfully login, the program will stay on home page instead on new result page.
    How can the program point to the new result page after successful login. [My program is use custom authentication scheme for login. And my home page is based on user login setting.]
    Anyone can give me some idea how to solve it?
    Or anyone have the example to share with me?
    Thank you in advance!
    Regards,
    monica

    Hello Monica,
    In your "Authentication scheme > Session Not Valid >", if you have specified "login page" or page 101, then try changing this to URL as
    f?p=&APP_ID.:101:&SESSION.Regards,
    Hari

  • Sending e-mail with attachment from Oracle APEX

    Hi,
    Do we have an option to attach a report to the e-mail and send from Oracle APEX page?
    In my case, I want to convert the report page into PDF format and attach to the mail. Is it feasible in APEX?
    I understand that APEX_MAIL.ADD_ATTACHMENT can attach files stored in the database. But here we need to convert the page and send it
    Thanks
    Kind Regards,
    Prasanth

    HI,
    Thank you for your input. Currently I'm using APEX 3.2.
    Here my requirement is to send the content of the report to the user via e-Mail. If i'm not converting the page into PDF and planning to send as a HTML page or any other format.. The Objective is to send the info with the same format as it is in the report page. Its too big to send as mesage body.
    Any idea how to proceed?
    Regards,
    Prasanth

  • Hyperlink from Apex page to MS Word. any body guide please

    I want to open a Microsoft word document from oracle apex page. i create a hyperlink and give him the path like <a href="d:\abc.doc"></a> it is not working properly. can any body guide me how can i open the .doc by pressing a button or by creating a hyperlink.

    Hi,
    can you provide here the ms word document full path..?
    I mean you have to put the document file in some path of web server.
    If you want to put the file into apex than you have to upload it apex workspace.
    How to upload a file?
    Step 1: go to shared component
    Step 2: go to static files
    Step 3: click on create and upload the document file here eg demo_file.doc
    Step 4: now create a new html region and put following code into source of html region
    <!--Click here-->
    Thanks,
    Jaydip Bosamiya
    +91 - 76000 23053
    http://jbosamiya.blogspot.com
    Edited by: Jaydip Bosamiya on Apr 1, 2011 10:09 AM

  • Embed html code with Oracle Apex report

    hello Everybody,
    Iam wondering if you guys have any idea about embeding my own html code that has a javascript and html stuff in Oracle Apex page.
    Thanks,
    Abdul ALkhateeb

    Abdul,
    This is very common and can be done a few ways. It's actually one of the great things about ApEx - VERY flexible. Please be more specific about what you're trying to do so we could point you in the right direction.
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen

  • How to get the class name of a page in oracle apex

    Hi All,
    Can anyone please let me know how we can get the class name of a page or region in oracle apex? I would also like to know how we get the DOM object ID for particular item.
    I appreciate any help on this.
    Regards
    Raj

    RajEndiran wrote:
    Can anyone please let me know how we can get the class name of a page or region in oracle apex?What do you mean with class name? The name of the template (e.g. the css style class name)?
    I would also like to know how we get the DOM object ID for particular item.Use firebug or inspect the source code of the rendered page to see the object IDs. Other then then, the typical ID of page items is the name of the item. For regions you can set your own ID.

  • Integrating Google Maps in Oracle Apex and 404 Not found error page

    Currently using APEX version 3.2.0.00.27 installed in OracleXE version 10.2.0.1.0. Have been attempting to recreate some examples of Google Maps within APEX. Found a nice set of examples here that build up to what I'm looking to ultimately do by incorporating google maps into APEX:
    http://blog.whitehorses.nl/2009/10/04/integrating-google-maps-in-oracle-apex/
    Unfortunatly, I'm getting the "404 Not Found, Not found, The requested URL /apex/wwv_flow.accept was not found on this server" page when I try to recreate the "Map with Search" example. I'd like to see if this really works using the html input and button tags in the body/region source versus creating APEX items to pass the address values to the javascript in the html header of the apex page. I'm thinking it's just an html thing within APEX that you have to do it a certain way, but I haven't managed to hit that magic combination. have gone to the google maps api v2 and looked at the html they use (it's what these examples with apex are based on) and tried that just to see. Same 404 result.
    I've seen suggestions at this forum and elsewhere that the 404 error is due to a bug. have been to metalink, and really haven't seen anything that spells out what the bug is and how to patch it or work around it. May be I just haven't found the right note/doc yet. have seen suggestions to change something associated with the Anonymous account that APEX uses. Have turned on authentication in the application to use an APEX user account with a logon page to the application. Still get the 404. Although, I have not adjusted anything elsewhere, like a DADS config file, because the apex/xe configuration is using the plsql gateway. Not sure of any procedure for changing settings on anonymous account when using plsql gateway.
    Open to suggestions. APEX 3.2 is customer version, so going to 4 may not be an option yet. XE, on the other hand, can certainly be swapped for an 11g version standard or enterprise edition if need be. I don't think this is a db version problem though. I think it's more on the APEX side of things.
    Anyway, any help or suggestions are appreciated.
    thanks
    rtp
    Edited by: RTP on Jun 24, 2011 10:30 AM

    Hi I have the same problem.... if you found the solution, please put it here to see it... I need a solution to this its urgent!!
    Thanks!!

  • Page Sentry Setup - Oracle ApEx 4.1.1

    Hi,
    Hoping someone can please assist or point me in the right direction but I am creating a new Page Sentry setup in Oracle ApEx 4 based on the following link:
    Updating Page Sentry for APEX 4.0 Upgrade:
    http://zetetic.net/blog/2010/12/10/updating-page-sentry-for-apex-40-upgrade.html
    I have pretty much just used what has been provided from this link with a few minor changes but my question that I cannot figure out why it is happening is that in MS IE8, when I fire up my app, it all starts up fine and and sets up my APP_USER and APP_SESSION fine but what I have found that, when I go to a new tab in IE8 and start up another session for this very same APP_ID, it is assigning the same APP_SESSION as the previous session, which is not what I am after from the Page Sentry.
    Could someone please assist with what I need to change this pl/sql code, so that a new session id is always generated when starting up a new IE8 tab in the same browser window.
    Thanks.
    Tony.

    Hi Tony,
    If you are using OAM, why would you want each tab to have a different session?
    (OTN PDF on OAM - http://www.oracle.com/technetwork/developer-tools/apex/learnmore/apex-oam-integration-1375333.pdf )
    If I'm not mistaken . . . your problem with Apex 3 is now solved in Apex 4 (unless you implemented a broken page sentry function), because the session id in the url is backed by a cookie. If the session id in the url doesn't match the credentials in the cookie, it cancels the session.
    At the same time, since browsers share cookies between different tabs, the database can't distinguish between page calls from one tab from page calls from another tab - because they pass the same cookie. This is a browser issue, not an apex limitation. I don't think its possible to have each tab be treated as a separate session, unless you disable the cookie, and that leaves you open to the problems you had with Apex 3.
    I keep saying "if I'm not mistaken", and that's because I've got 0 applications under my belt (well, I have a websheet, but that doesn't count). I've been studying page sentry functions on-and-off since November 2011, and got nowhere. Fortunately, I discovered how to do what I wanted to do without using a page sentry function.
    Here are the most helpful links I found - most of the code are variations on a theme, and they reference functions that are not well documented.
    I found Christian Neumueller's second post on this page very enlightening - Re: APEX 4.1 Login page kills existing session cookie
    I might implement this - http://www.oracle.com/technetwork/issue-archive/2009/09-may/o39security-101079.html
    You've probably seen Joel Kallman's post - http://joelkallman.blogspot.co.uk/2010/10/custom-authentication-scheme-for-oracle.html
    Here's one about NTLM, which isn't what you're looking for, but its another example of a page sentry function - http://jastraub.blogspot.co.uk/2008_03_01_archive.html
    There is a little bit about session management and the login process in this pdf - http://www.sumneva.com/c/sumneva/presentations/APEX%20Behind%20the%20Scenes.pdf - all of which is very interesting.
    Tak

  • How fetch data from a view(which is located in different server) using Oracle APEX webservices

    Hi,
    I have a requirement to fetch the view data from client instance(which is different server) to another instance lets say Development instance
    Requirement:
    Need to get the Apps View data from the Desired EBS instance(which is accessible online) using webservices,and display it in the Oracle Apex Development Instance.
    Kindly provide your inputs how to achieve this.
    Thanks in advance
    keerty

    Are you getting an error? The way you have it set up, you can have an error and it will never be displayed. Put and error control on your front panel and see what it gives you. Also, shared variables in a project can be useful. Look at some examples for that.

  • Cannot print a PDF using the Oracle APEX print feature

    Hi,
    I work from a Wondows 7 workstation.
    I have Adobe FlashPlayer 11 installaed on that workstation.
    I can open a regular *.pdf file.
    I have the following configuration for my Oracle APEX application:
    Report Printing:
    Print Server Protocol: Advanced (requires Oracle BI Publisher)
    Print Server Protocol: HTTP
    Print Server Host Address: the IP address of my BI Publisher server
    Print Server Port: 9704 (from installation of BI)
    Print Server Script: /xmlpserver/convert
    On the page (that is an interactive report) that I want to print, it is configured with:
    Download:
    PDF option is checked.
    When I click on Action -> Download -> PDF for this page, I get the error:
    report_customers_region.pdf  file can not be opened because the file type is not supported or because it is damaged (because, for example as an e-mail attachment is not sent and correctly decoded)
    Does someone has an idea what the problem is and where I should investigate further?
    Thanks and Kind Regards.

    Well, is the PDF actualyl allowing to be printed? Check File --> Properties in Reader/ Acrobat.
    Mylenium

  • Calling Apex page from Oracle Forms

    Hi,
    I haven't managed to find a similar thread anywhere.
    I would like to call an apex page from a form. The page is in an app that requires authetication.
    I can able to open the page by using web.show_document but that only takes me to the login page.
    How can I overpass the authentication by passing somehow the username and password?
    Is there any similar or easier way to do what I am after?
    Many thanks

    Hi,
    You could try the BRANCH_TO_PAGE_ACCEPT URL functionality. There are a few threads on this subject - for example: Re: authentication with credentials from another domain? I haven't used this myself, but if you do a search on the forum for this, you may find other threads that can help.
    Andy

  • Hi All ,need ideas on using oracle apex maps...

    Hi All,
    I need a map on country like trinidad and Tobago and jamaica together how do I accomplish that...using the current oracle apex..
    I couldnt find country tobaga and Trinidad listed there
    Thanks any guidance shall be appreciated..
    Paul j

    Hi Paul,
    There actually isn't a country map for Jamaica or Trinidad and Tobago in the suite of AnyChart maps that we integrate into Application Express. Your easiest option is to use either the World, Americas or North America map - either of these will allow you to represent Jamaica and Trinidad & Tobago on a map, and associate data with it. I've used the Americas map as an example here: http://apex.oracle.com/pls/apex/f?p=36648:89.
    I appreciate that this isn't ideal if you wish to represent these locations on their respective country maps, but it might be a possible workaround for you. Alternatively, you would need to source your own Shapefiles for these countries, and use the AnyChart Flash Map Converter utility - http://anychart.com/products/anymap/converter/ - to convert your Shapefile into a .amap file. That .amap file would then need to be incorporated in your APEX /images directory, and its information would then need to be referenced in your map SQL query in order to associate data with the new maps. For further information on the Converter utility, or indeed on the AnyChart maps, please refer to the AnyChart site: http://anychart.com/products/anymap/docs/.
    Regards,
    Hilary

Maybe you are looking for

  • Best Practice for Production IDM setup

    Hi, what is the best practice for setting up prodcution IDM: 1. Connect IDM prod to ECC DEV,QA and Prod or 2. Connect IDM prod to ECC prod only and Connect IDM dev to ECC Dev and QA. Please also specify pros and cons for both options if possible. Tha

  • Populating multiple image fields with single user-defined image

    Hello, I am fairly new to LiveCycle and am looking to include a user-specified image in the header of each page of my dynamic form. I've succeeded in including the image form at the head of each page using a master page, but each image form only affe

  • Back ground job for automatic MRP run

    Hi pp guru, my client want for a particularly  material no XXXXXX ,there should be automatic MRP rum daily at 8:00 pm. kindly suggest me how i will map  back ground job in sap.. regards Aqueel

  • WRT54G in a wireless saturated neighborhood

    I have a WRT54G that is having trouble staying connected after we moved to our new apartment. The neighborhood has tons of routers in the area (discovered by scanning with a software package recommended by a friend) and all channels are being used by

  • Ctxsys.context index creation :ORA-01031: insufficient privileges on sys.XMLType

    Hi, in the following enviroment: Oracle9i Enterprise Edition Release 9.0.1.1.1 - Production With the Partitioning option JServer Release 9.0.1.1.1 - Production On an MS 2K box I experience the following problem: if I create a table create table test(