Hidden application items, is there date or logged on seconds

Hi,
I need a replacement for seconds logged on or sysdate (to the second).
Is there a list of the 'hidden' application items?
APP_USER, APP_ID, APP_PAGE_ID, APP_WORKSPACE_ID etc.
Otherwise, is there an easy way of putting a computation onto every page in my application?
Thanks in advance
Michael

Hello Michael,
You can create an Application Item that holds the logion time (set it in your logon page).
You can create an Application Process that runs on every page that calculates the difference between SYSDATE an the logon time.
But what exactly is your requirement?
Greetings,
Roel
http://roelhartman.blogspot.com/
You can reward this reply by marking it as either Helpful or Correct ;-)

Similar Messages

  • Application Items - is there a way to find all pages containing an item?

    Hello,
    I'm taking over support on an APEX application which uses application items. There's no documentation on design so I'm having to go through the app manually to understand it. Is there a way to see which pages a given app item has been used on? I don't want to trawl through each page manually...
    Steve

    Hello
    You can also access the apex_application views from sqlplus or your favorite GUI.
    Connect with the schema owner of a schema that belongs to the apex workspace your application is in.
    Then you can build your own select statements
    For example
    select *
    from   apex_application_page_items p_item
    ,      apex_application_items      app_item
    where  p_item.application_id = app_item.application_id
    and    p_item.item_source = app_item.item_nameWould give you all the page items that use a application item as source.
    Pretty much everything is accessible through these views such as source of the processes or conditions for display.
    Have fun :)
    Nicolette

  • Application Items - is there a better way?

    My application is using few global items but if a user opens another browser session and opens different record, global items are overwriten.
    What would you suggest?
    Robert

    "Facilitating Bookmarks by Using Zero as the Session IDIf the pages within an application are public and do not require authentication, you make it easier for application users to bookmark pages by using zero as the session ID.
    Application pages that do not require authentication can be accessed with "f?p" URLs where the session ID is zero (that is, the single digit 0). When you request a page by either entering the URL in the browser or by clicking on a link having 0 for the session ID, the Application Express engine assigns a new session ID and sends a session cookie containing this new session ID to your browser. As you navigate through the application's public pages, you will see that all generated links to public pages will contain 0 for the session ID and all branches to public pages will have new URLs that use 0 as the visible session ID. Behind the scenes, however, the Application Express engine uses the session ID in the cookie as the actual session ID to locate session state.
    This feature is useful when you want to hide the actual session ID. By hiding the session ID, you enable users to bookmark pages without needing to include the session ID in the bookmark link. As an added benefit, using zero as the session ID also keeps the actual session ID hidden from search engines.
    In order to use zero as the session ID in your application, you have to generate at least one link having a zero session ID. The use of this first link starts the zero session ID mechanism. One approach would be to provide a single static link with a zero session ID on the application home page. For example, where you might normally code the link to page 2 as f?p=&APP_ID.:2:&APP_SESSION, you would code f?p=&APP_ID.:2:0."

  • Is there a list of open items at key date per customer?

    Hello,
    In FBL5N you can get a list of open items for a customer at some specific date.
    I'm looking for a summarized list that would give me a list of sums  of open items for some customer per day, so I would see for example for one month what was the sum of open items for this customer on each day.
    Is there already some similar report in SAP?
    Thanks and best regards,
    David

    Hi,
    I still don't think we understand each other.
    If I run FBL5N I have option to select:
    - Items that are or were open at the key date are displayed on one date
    - All items posted on the posting date specified fromde date1 to date2.
    - Items that were cleared at the clearing date specified
    I would like a list of all items from option 1 (Items that are or were open at the key date are displayed on one date) so items that are or were STILL open and not yet cleared on one date, but not just for one date but for more days.
    If I use your suggestion I get what items opened or cleared on one day not how many items were still open on particular day.
    So a list of how many opened items were there at the day, and notjust items that were opened on that day but also all previous items that were not yet cleared at that day.

  • Is there a way to move multiple Calendar items from one date to another?

    Hello. I have far too many Calendar items every day in my iCal. Until I finally pare them down to a reasonable level, I need to "reschedule" all of my unfinished ToDo items and reminders, to another day, later in the week.
    There doesn't seem to be any "Select All" feature available.
    Is there a way to move multiple Calendar items from one date to another?
    Thanks in advance!

    Still no ideas? Apple, please come up with a fix. Thanks.

  • Is there a maximum size for an Application Item?

    I have a pl/sql procedure which inserts some records and has an out variable to return a warning message that I want to append to the normal Success message field in the Processes. Unfortunately I found out that if I defined a hidden variable and used the &P1_SUCCESS_MSG. syntax it would strip HTML. Meaning all the break tags get interpreted literally in the success message. I did some searching and read Scott's recommendation to use an Application Item and that worked like a charm....
    Until today when I kept getting a message that an HTTP 404 error that the wwv_flow.accept page can't be found. I systematically took out each process on the page (about 5 of them) and finally realized it only threw the error when a really long string was passed. Long meaning about 3000 characters (2919 to be precise)- I know because I inserted into my debug table once I knew that was the issue.
    Does anyone know a reason why this would occur? And maybe how to avoid it?
    The string is nothing fany its just a bunch of:
    ** Warning: So and So has been assigned to project ABC for x hours in Period y and is overallocated by z hours ** </br>A validation won't work because its not an error, just an informative message to the user. I don't want to stop submission if I hit the condition. TIA!!

    Scott,
    Thanks for your help.
    I think what you'll need to do is set the message text into an application item using an assignment statement in a page process or in a computation. Then leave the success message for the process null. Then branch to the page and have the page display the message (from the item) wherever you like on the page.
    Scott

  • Javascript reading a protected / hidden page item / application item

    Hi
    I'm trying to use javascript to validate / calculate the value of a page item.
    For this I need to access an item that is it protected (not simply a text field which is editable) - or one which is currently hidden.
    Is it possible for javascript to read the value of an application item or a page item that is hidden or a page item that is protected (not editable)?
    Thanks in advance.
    Mike

    Mike, when you change the item type you are changing the html element type
    from
    <input type="text" id="P1_ONE" value="This is P1_ONE item type value" />
    to something like
    <td>This is P1_ONE item type value</td>
    for the text type you would use .value so $('P1_ONE').value or document.getElementById('P1_ONE'). value but for the "display as text" would be $('P1_ONE').innerHTML or document.getElementById('P1_ONE').innerHTML.
    been a while since i use APEX js systax as I've been using jquery but the second example of each type will work.

  • Hello all, I'm dubbing my italian website in english. The "reproduce presentation" item in the photo album pages appears only in italian, because I have an italian 2008 version of the application. Is there any way to make it appear in english?

    Hello all, I'm dubbing my italian iweb site  in english. The "reproduce presentation" item in the photo album pages appears only in italian, because I have an italian 2008 version of the application. Is there any way to make it appear in english?
    Thanks for your attention and appreciated answers

    iWeb has no Italian version.
    The language setting on your computer determines the language that is used.
    Change the language settings on your computer or use this :
    http://www.tj-hd.co.uk/en-gb/languageswitcher/

  • By what time zone does Verizon use to log data usage?  When I checked my current usage, there is data used logged in at early morning times and I don't have anyone else who is up at these times.

    By what time zone does Verizon use to log data usage?  When I checked my current usage, there is data used logged in at early morning times and I don't have anyone else who is up at these times.  I also have 1.8+ GB charged to my allowance that I don't understand at all how it is mine because the highest I've ever logged at any given time has been barely 0.5 GB.  I'm cruising along at .04-.07 GB and all of a sudden appears a 1.8+ GB deduction/usage and it makes me wonder what the ???? is going on.  Is Verizon posting fraudulent usage amounts just to drive up my usage so I have to buy more Gigs?

    The time is not the time of actual use, but the time a tower reports the use. The data would have been used anytime prior to that time. Usually, but no always, the usage happened between the time prior and the time reported.
    For example:
    9:00 AM   1.23 MB
    7:05 AM   0.01 MB
    1:15 AM  350.03 MB
    8:00 PM   23.89 MB
    This does not indicate 350 MB was used at 1:15 AM. It really tell you 350 MB was used sometime between 8:00 PM and 1:15 AM.
    The times are local time zone as far as I can tell.

  • Stopped mac protector scam download in process of scanning files.  Trashed application from download folder/application folder and system preferences' accounts log in items.  does anything else need to be purged? checked?

    stopped mac protector scam download in process of scanning files.  Trashed application from download folder/application folder and system preferences' accounts log in items.  does anything else need to be purged? checked?

    stopped mac protector scam download in process of scanning files.  Trashed application from download folder/application folder and system preferences' accounts log in items.  does anything else need to be purged? checked?

  • Hello, is there any calender application which keeps historical data for iPad 2?

    hello, is there any calender application which keeps historical data for iPad 2?

    The one built-in keeps whatever historical data you sync to it.

  • Could not get application item data

    Hi,
    On my login page I set the data to 3 application items, (id, email, and domain) and if I see at the session link on other pages the data appears ok.
    The problem is getting that data, I tried on a process on some pages.
    :p101_user_id := :GLOBAL_USER_ID;
    also
    :p101_user_id := v('GLOBAL_USER_ID');
    and could not get the data. The local items are always null, maybe I miss something.
    could someone help me.
    Thanks

    Rafael,
    You're process should work (both of the syntax's are valid), the only reason I can think of as to why it shouldn't is the process point of the page process. This process should be one of the 'On loads', not one of the 'On Submits'.
    Ant.

  • There is no Internet Tethering option under settings cellular data on my iPad3. I am using BSNL 3G on my iPad.  The options under settings cellular data are: Cellular data Data Roaming APN Settings SIM PIN SIM Applications.   Is there any solution to turn

    There is no Internet Tethering option under settings>cellular data on my iPad3. I am using BSNL 3G on my iPad.  The options under settings>cellular data are:
    Cellular data
    Data Roaming
    APN Settings
    SIM PIN
    SIM Applications.
    Is there any solution to turn on wifi hotspot?

    You might have better luck contacting your carrier - is this a feature they support?

  • Application won`t start - starts when logged in as another user

    An application created by Unity doesn`t start. When I double click (or right mouse click and choose `open`) nothing happens. However, when I log in as another user, or when I try to run the same program from a flash drive, it works. I tried a lot, including repairing permissions, but nothing helped.
    Thanks in advance !

    Try logging into your user while holding down the shift key on your keyboard, to supress any startup items that may be interfering with your program.
    If that does not do it, look for a preference file in you user folder by choosing the Go menu from the Finder and selecting Go to Folder and enter ~/Library/Preferences and checking for files having to do with your application. If there are any, move them to your desktop and try again.
    If that does not fix it, move them back, replacing the new ones that will be built. Also, if your program uses any data files or libraries when started up, try removing those. Again, if not fixed, put them back.

  • Checking for errors in application item computation (at page level)

    I have a conditional computation used to set the value of an application-level item.
    In the condition, I need to check to see if the action (button-press to initiate DML processing) generated an error (eg cannot delete row because of child records). I don't need to catch/handle any specific errors, I just need to know if an error occurred.
    What do I check for? I've seen references on the forum to hidden page items Pxx_msg and Pxx_err, but I've played around with them, and apparently don't know how they're set.
    Another thought I had is to create a before-computation process that checks to see if there is some sort of error/exception, but I'm not having luck w/ this either.
    Ideas?
    Thanks,
    C

    Max -- I appreciate you helping me to clarify this issue. I need to track which database tables have had data changes committed to them in the course of the app running. My thought is to track this in an application item (a list of changed tables), and check/set the item as needed when delete/create/apply changes buttons are pressed. But if a DML statement fails, I don't want to add the table to the list of modified tables.
    When I was setting the app item in a computation, it appeared that (like you said) I was trying to check for errors before the process had executed. (I'm also not sure I was checking for errors in the correct manner.) Regardless, the result was that the table got added to the list even when the delete operation failed because of child records.
    What I'm doing now appears to work (and sorry, I can't actually access the app this morning, the server is down, so I may not be able to communicate this as clearly as I'd like). If I recall, yes, I'm setting the item in a post comp/validation process. I'm still not doing any error checking, but it appears that if there is an error, the process isn't executing: the item is definitely not getting set.
    Can you clarify what you mean when you say that "all of this will execute before the processes". Do you mean that comps and page processes will execute before DML is executed on the database?
    Thanks,
    Carol

Maybe you are looking for

  • Problem with Adobe

    I recently got an update from Apple for Adobe and it seems since I go that update I cannot print a PDF file from a website. I can open it, but not print. I can open a PDF file that I have saved in my Documents, Word or email and print that out. I tho

  • Issue with JPEG Exports

    I am unable to use my exported JPEG files in other programs. I have exported my InDesign document pages as JPEGs, and they are available in a folder and open up in Preview. However, when I try to import the saved JPEGs into other programs like powerp

  • When you can use Airplay without the need to connect to a wireless router?

    My question / request is, when you can use Airplay without the need to connect to a wireless router? Able to connect your iphone / ipod touch / ipad to your Apple TV directly without a wifi router, something like a "Airplay Direct"

  • Including Logical Hostname as a Resource Dependency

    Hi Folks, We're setting up a Calendar Server. we assign a Logical Hostname resource on which the Calendar Clients connect to. These are the steps that are used: I created a Fail Over Resource Group called MS_RG_BUDDY and bring it online scrgadm -a -g

  • ABAP GET Personnel Number based on SY-UNAME

    Hi, anyone knows a bapi, function, etc, that can return a personnel number with sy-uname as input ?