Page Zero

I am trying to display some header text on every page. So I did it on page zero in the page header after I created page zero. Unfortunately it does not display it on every page, just on page zero. Would anybody know why.
Thanks
Aron

Aron,
The best way to debug this would be for you upload your application to the public server, however if I had to have a 'guess' at what the problem is I'd say try looking at the "Conditional Display" to make sure that it's correct for what you're trying to achieve.

Similar Messages

  • Custom pagination for APEX 4.2 interactive report using Page Zero

    Hi,
    I want to implement an «Custom pagination for APEX 4.2 interactive report» using a «page zero».
    I recently migrate from Apex 3.1 to Apex 4.2 and my «Custom pagination for APEX 3.1 interactive report» using a «page zero»  is not working any more.
    So now I try to adapt an excellent example of Jari Laine for 4.0 but using a page zero.
    I put the code JavaScript to Page zero but I must create an dynamic action to fire only for an interactive report region.
    It’s a good idea?
    Thank you

    Thought I would try once more with my DatePicker question.
    On the Apex.Oracle.Com website I have created a 1 page application that has an Interactive Report.
    [url http://apex.oracle.com/pls/apex/f?p=15655:1]
    user = 'test'
    password = 'test'
    I have 2 questions :
    (1) In IE7, press 'Actions', 'Filter'. On the Column dropdown list, select 'Order Timestamp'.
    Notice the prompt icon to the right of the 'expression'. This should change to the Datepicker, but in IE7 it does not. Try the samething in Firefox or Chrome and the Datepicker will appear.
    Is this a BUG, or does Apex 4.02 not support IE7 ?
    (2) In Firefox or Chrome, where you can now see the Datepicker, you will notice that it is the new style picker, not the old style ( called 'classic' ). I want to change it so that it shows the 'classic' datepicker not the new, but cannot see how to do it, if indeed you actually can.
    I would really appreciate it if someone could take a look and let me know if I am going mad, or if we need to get all our users onto IE8. We have now gone live with Apex 4.02 and need to resolve these issues.
    Thanks in advance.
    Edited by: DooRon on 10-Mar-2011 05:13

  • Page Zero and Pop-up Windows

    Hello:
    I am trying to create a pop-up window that doesn't have some/all of the page zero regions. I don't want to create another page just for the pop-up window, I would like to use the same page but with(out) some privileges. I just don't want the user to be able to navigate to other pages (page zero lets you do that) from the pop-up window. Is there a way some/all page zero regions can be not shown when a pop-up window is displayed?
    Thanks,
    -Bino
    Edited by: bino on Jun 2, 2010 7:11 AM

    Hi Bino -- I'm not sure how you are bringing up your pop-up window, but you can set conditions on the regions in page 0 just like any other page so, for example, you could have a certain region not appear if the user is not logged on or if an item has a certain value, etc. If you are going to use an item value, when you bring up the pop-up window, you could set the value of that item right in the URL as one option.
    Rgds/Mark M.

  • Hide page zero regions in the builder

    Hi
    We are using APEX version 4.0.2. are have many shared regions (SQL Reports) placed on page zero.
    There are conditions on these (page must be in...), and that works fine when running the application.
    The problem is in the builder, where these page zero report regions appear in the builder, even though the page is not included in the region condition
    (and the region is never shown on the page at runtime).
    It is a bit confusing to see these page zero regions in the builder - as a developer, so have anybody found a way to hide them ?
    Note: we also have SQL regions on page zero, but these do NOT appear in the builder ??
    Brgds
    Martin

    Anybody have any input to this ?
    For me it would make sense that I only see the those page zero region which actually apply to (are used on) my page.
    I see the issue concerning this being determined at runtime, howver perhaps an exception could be made for for "page in" condition ?
    Brgds
    Martin

  • How to create page zero in oracle apex 4.0?

    Hi All,
    How to create page zero in oracle apex 4.0?
    Regards
    Mani

    Hi,
    Home > Application Builder > Application xxx > Create Page
    At bottom center on wizard there is Page Zero
    Regards,
    Jari
    Edited by: jarola on Aug 25, 2010 7:28 PM
    And here is chapter about in documentation
    http://download.oracle.com/docs/cd/E17556_01/doc/user.40/e15517/ui.htm#BGBFFFGH

  • How to reference current tab on page zero?

    Hi,
    I have regions placed on page zero. How could I reference the current tab? I have to many pages, so using display condition by using page ID is little uncomfortable. I thought I could make a condition by using SQL expression and referring the label or name of the currently active tab. I think, this is a trivial question, but I can not find how to referre to the current tab's name or label.
    Tamas

    Hi
    I have the exact same problem.
    I cant have multiple navigators on page 0.
    Therefore my navigator on the left hand side should be dynamic, based on the tab I click.
    I've gotten this far (select statement below), but I don't know how to reference the current tab that I've clicked on / the current tab is active (see :P0_TAB_NAME)
    select "MENU_CODE" id,
    "PARENT_MENU_CODE" pid,
    decode(menu_type,'FL','<img src="#APP_IMAGES#folder.png" border="0"
    style="vertical-align:middle">&nbsp<b>' ||menu_description,
    'PG','<img src="#APP_IMAGES#pgm.png" border="0"
    style="vertical-align:middle">&nbsp<b>' ||menu_description,
    'PG','<img src="#APP_IMAGES#tree_group.png" border="0"
    style="vertical-align:middle">&nbsp<b>' ||menu_description) name,
    decode(page_name,null,null,'f?p=&APP_ID.:'||page_name||':&SESSION.') link,
    null a1,
    null a2
    from "CANELAB_NAVIGATOR" a, APEX_APPLICATION_TABS b
    where b.display_sequence = a.menu_group
    and b.tab_name = :P0_TAB_NAME
    order by MENU_CODE

  • Stopping a page from using Page Zero

    I have an Apex application (v 4.2) which uses a page zero, and one level navigation tabs. Is there any way to create a new page which still uses the navigation tabs, but doesn't inherit page zero?
    Or can I create a 'different' page zero and have some pages inherit that instead?

    Antilles wrote:
    I have an Apex application (v 4.2) which uses a page zero, and one level navigation tabs. Is there any way to create a new page which still uses the navigation tabs, but doesn't inherit page zero?
    What exactly are you trying to do? What do you mean by "one level navigation tabs"? Standard tabs are rendered by the page template, not by a region.
    To suppress a page zero ("global page" in new terminology) region, use a Current Language is not contained within Expression 1 condition on the global page region, and create a region with a different definition in that display position on the new page.
    Or can I create a 'different' page zero and have some pages inherit that instead?
    No, APEX currently only permits one global page for each user interface type defined for the application.

  • Page zero - setting cache through database

    Hi!
    Just wondering, if you set caching properties of a region on page zero through the database will this trigger any problems in the application. If not, will the caching work if you manage it this way (because it is not possible to set those properties on page 0 through the application builder).
    Thanks!
    Josip

    Josip wrote:
    Just wondering, if you set caching properties of a region on page zero through the database will this trigger any problems in the application. If not, will the caching work if you manage it this way (because it is not possible to set those properties on page 0 through the application builder).Hi,
    Do you mean that you will modify APEX schema tables data?
    If you do that, then your instance is unsupported state.
    Regards,
    Jari
    My Blog: http://dbswh.webhop.net/htmldb/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Page Zero (0) - Regions Caching / Page Caching not available

    Hi,
    My page zero display information from a calendar table (fiscal year, etc.). This information will be the same all day long (get updated at midnight). It's not possible to enable caching of regions on page zero. It's also impossible to enable caching of the page zero.
    Why?
    Thanks,
    Louis-Guillaume
    [My Blog|http://lgcarrier.blogspot.com]
    [APEX and jQuery demos|http://www.insum.ca/jquery]

    Louis-Guillaume,
    Good question. We have asked ourselves this and are considering removing the restriction in 4.0. I think it initially had to do with preventing unwanted side effects and anomalies although none of us can recall the details right now. We will have to carefully look at ways to make this something developers can use easily while preventing strange results. First of all, caching of page 0 doesn't make sense. You want to be able to cache regions on page 0. Now, say your page 0 has two regions, P0_CACHED and P0_DYN (one cached, one dynamic). And your page 10 has region P10_CACHED. When page 10 is rendered, you'll get:
    P0_CACHED
    P0_DYN
    P10_CACHED
    That looks okay, you get one cached region from page 0, one dynamic region from page 0, and one cached region from page 10. Of course you have controls with which to purge any individual region from the cache so you can cause P0_CACHED to be refreshed whenever you like.
    But say page 20 is a cached page. When it renders you'll get:
    P0_CACHED <-- not from the page 0 region cache but from the page 20 page cache, regardless of the "stale-ness" of the page 0 cache
    P0_DYN <-- not rendered dynamically from page 0 but retrieved as part of the page 20 page cache. But this content may be different from the content for the same page 0 region displayed on page 10 one second ago or one second from now.
    P20_DYN <-- from the page cache as is normal for a dynamic region on a cached page
    Hardly a thorough treatment, I realize. Just wanted you to know some of the aspects we have to consider. We will also have to read this thread again to come back up to speed: V3 Caching - any more info? .
    Scott

  • Form on page zero

    I am trying to build a search box that appears on every page, so putting on page zero would seem to be the right thing to do. Unfortunately the submit button that goes with the box only works on page zero, for every other page the application complains about not having a page to branch to...
    What is the proper way to have a submit button on every page without having to place it on every page by hand?

    I think this would work if you could make the document object a member of the Object being created.
    To do that, a constructor needs to be invoked so that it can instantiate a public property of the Object.
    var MyUtil = new Utility(this);
    inside of Utility I would have:
    this.oPDFdoc =  this;
    thereby transferring a reference to the entire PDF document to my Object.
    Getting this to work would eliminate the need for all of the document-level javascript references.

  • HTML header Page zero

    Hello all,
    We are trying to add a reference to a jquery image on page zero of our app. We are supposed to add this to the html header. We do not have an html header on page zero and we cannot figure out how to create or access it. Any help would be greatly appreciated.
    Thanks

    It is not possible to add an HTML Header to page zero. Including the required element(s) in the HTML &lt;head&gt; in the page template(s) would be equivalent.

  • Display text on Page Zero

    Hi,
    I've got a Page Zero with HTML text region. This text is displayed in the middle of the page, however I want the text to be displayed on the right of the page (in the same region) instead of in the middle. How would I do this? Thanks.

    Hi,
    I don't think you understood what I want.
    My display point parameter at the moment is "Page Template Region Position 5". I dont want to change this parameter. I only want to change the position of the text in this display point from the center/left to the right. I figure that I have to add something to the Region HTML table cell attributes, but i don't know what.

  • Caching regions on global page zero

    Hi all,
    I'm trying to understand some use-cases to why caching global page regions wouldn't be viable. The documentation on region caching doesn't help me here, nor does it mention its availability on global pages - not that I saw, anyway.
    It was covered [url https://forums.oracle.com/forums/thread.jspa?threadID=2214451]here in the forums 2 years ago, but two years is a long time.
    I've been trying to eke out the best performance in an application, and I'm trying to identify regions that could be cached under certain circumstances.
    I was a little surprised to find global page regions may not be cached, even bug 14744294 addressed in 4.2.1 for global pages that aren't "0"
    Consider a dynamic list in the sidebar acting as a menu, deployed on the global page. Would this be a fair candidate, except perhaps for a "current page" sub-template.
    I guess since many/most of these regions would have some sort of APP_PAGE_ID dependency, it's not worth caching?
    Anyone have anything of interest to add to this discussion?
    Cheers
    Scott

    Louis-Guillaume,
    Good question. We have asked ourselves this and are considering removing the restriction in 4.0. I think it initially had to do with preventing unwanted side effects and anomalies although none of us can recall the details right now. We will have to carefully look at ways to make this something developers can use easily while preventing strange results. First of all, caching of page 0 doesn't make sense. You want to be able to cache regions on page 0. Now, say your page 0 has two regions, P0_CACHED and P0_DYN (one cached, one dynamic). And your page 10 has region P10_CACHED. When page 10 is rendered, you'll get:
    P0_CACHED
    P0_DYN
    P10_CACHED
    That looks okay, you get one cached region from page 0, one dynamic region from page 0, and one cached region from page 10. Of course you have controls with which to purge any individual region from the cache so you can cause P0_CACHED to be refreshed whenever you like.
    But say page 20 is a cached page. When it renders you'll get:
    P0_CACHED <-- not from the page 0 region cache but from the page 20 page cache, regardless of the "stale-ness" of the page 0 cache
    P0_DYN <-- not rendered dynamically from page 0 but retrieved as part of the page 20 page cache. But this content may be different from the content for the same page 0 region displayed on page 10 one second ago or one second from now.
    P20_DYN <-- from the page cache as is normal for a dynamic region on a cached page
    Hardly a thorough treatment, I realize. Just wanted you to know some of the aspects we have to consider. We will also have to read this thread again to come back up to speed: V3 Caching - any more info? .
    Scott

  • Best Practice: Header Template vs Page zero

    I have some information (currently stored on the header template) as below
    Operator: &APP_USER. 10-JUL-2009
    Version: 123.456
    Screen Id: 38636.1
    This information is to be displayed on all pages (and is based on application_items).
    Our application is translatable into 4 other languages (so 5 in total) including russia and chinese which use different character sets.
    Is it better technically to store these on page 0 rather than on the header template.

    Keith,
    I normally would agree with John, that this belongs in the template. But since you have to translate this stuff, this means that you would have to translate this template and have the translator or language service parse through all the HTML of the template, simply looking for the string(s) to be translated.
    I'll give you a third option. Make use of the application attributes (there are 20 of them). Define an attribute named 'OPERATOR_MSG' with a value of 'Operator'. In the template, you can reference this attribute as &OPERATOR_MSG. (inclusive of the trailing period). This way, these attributes will show up in translatable text as single strings.
    Also, if you want to show the date in YYYYMMDD format, you could use the reference &SYSDATE_YYYYMMDD. in your page template. I realize this is not a friendly date format, but you get it for free without having to compute it yourself.
    Joel

  • Issue with adding a new value to the Default Login Page

    Hopefully this is an easy one guys, I've added a select list item to the standard login page (P101) to allow the user to select a DOMAIN as well as entering their username and password.
    When the next page is displayed and I try to retrieve the value held in the new field it has been cleared, but the values entered into items
    P101_USERNAME and P101_PASSWORD are still present.
    I can't figure out why the values held in items P101_USERNAME and P101_PASSWORD are still present but P101_DOMAIN has been cleared.
    I've tried creating a value on page zero and writing the domain value to it using pl/sql and javascript but as soon as the next page is requested the value is cleared.
    Any Ideas how to get around this????
    Thanks in advance

    I suppose your login page contains a process like this:
    BEGIN
       wwv_flow_custom_auth_std.login (p_uname           => v ('P101_USERNAME'),
                                       p_password        => :p101_password,
                                       p_session_id      => v ('APP_SESSION'),
                                       p_flow_page       => :app_id || ':1'
       :t_random_number := :p101_random_number; /* this is something I added to my code */
    END;Now, if you go to this page:
    http://apex.oracle.com/pls/otn/f?p=31517:1
    please note the random number assigned to you. Once you login, the same number will appear on the page 1 (near to the top).
    So, that is how you could solve your problem.
       :t_random_numberis an application item.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

Maybe you are looking for