Displaying a page in a particular region

Hi
We have several tabs for different pages. One of our tabs is "Inofrmation and resources" within this page we have a region on the left handside with a list of departments within the company. I'd like to be able to open a new page within the right hand side region of this page depending on which department you click on.
I've tried to create seperate pages but when these open we loose the tabs at the top. I dont want to be recreating the tabs on all the different pages we create.
So my question is how can I display a page within a particular region depending on which link is clicked?

Hi Neil,
How about having two portlets inter-communicating with each other ... Did you have a look at the Site Indexing Portlet available on the Portal Integration Solutions site (http://www.oracle.com/technology/products/ias/portal/point.html) ?
thanks,
Harsha

Similar Messages

  • How can I display de last items of a region from other page in Portal?

    I want to display de last five items (f.e.) included in a region (with attributes created) from other page. I've tried using custom search, but it also shows the attribute names, and I want show the attribute values (I don´t know how can I format these attributes).
    Thanks a lot.

    How can I display the last items of a region from other Oracle Portal page?

  • HOW TO DISPLAY THE TEXT ON A PARTICULAR PAGE IN SAPSCRIPTS

    HI,
       HOW TO DISPLAY THE TEXT ON A PARTICULAR PAGE IN SAPSCRIPTS?

    in ur script main window
    /: IF &TTXSY-PAGE& = 15.              
    ur text or standard text           
    /: ENDIF.                             
    use this.
    hope it helps if any issues revert back

  • Displaying an external URL in a region

    Hi,
    How can I display an external link (e.g. Yahoo!) in the portal itself. I dont want Yahoo! to start as a new page, but appear in the region every time the tab for that particular region is selected.
    Thanks a lot for your help.

    IFRAME or URL Services
    Hi,
    How can I display an external link (e.g. Yahoo!) in the portal itself. I dont want Yahoo! to start as a new page, but appear in the region every time the tab for that particular region is selected.
    Thanks a lot for your help.

  • Conditional display in a SQL-Report/Report Region

    Hi,
    here I have an example for "Conditional display in a SQL-Report/Report Region". I figured it out in Firefox 3.6.2 using Firebug as development tool on Apex 3.2.1.00.12.
    First you have to put the following javascript code in the Page HTML-Header:
    <script type="text/javascript">
    <!--
    // SOURCE
    // W:\oracle\PRJ DWLS\javascript.07.js
    // Beispiel Funktion zur bedingten Formatierung einer Tabellenzelle.
    // Help (Substitution Strings):
    // http://htmldb.oracle.com/pls/otn/wwv_flow_help.show_help?p_lang=de&p_session=2412201185523196&p_flow_id=4003&p_step_id=420,4003
    // HTML Expression:
    // <script>ex_conditional_td('R094260001010', #ROWNUM#, #COLNUM#-1);</script>#DFT_COND1#
    function ex_conditional_td
    ( p_id
    , p_rownum
    , p_cellnum
      var l_td;
      l_td = vd_getColumn(p_id, p_rownum, p_cellnum);
      // hier die Bedingung definieren
      if (true) {
        l_td.style.color = '#808080';
    }  // -- eof ex_conditional_td -- //
    // Beispiel Funktion zum Abstellen der onMouse Funktionalität der Tabellenzeile
    // HTML Expression:
    // <script>ex_conditional_tr('R094260001010', #ROWNUM#);</script>#DFT_ID#"
    function ex_conditional_tr
    ( p_id
    , p_rownum
      var l_tr;    // TABLE.TR
      var l_td;    // TABLE.TR.TD
      if (true) {
        l_tr = vd_getRow(p_id, p_rownum);
        l_tr.onmouseover = null;
        l_tr.onmouseout  = null;
        for (var i=0; i<l_tr.cells.length; i++) {
          l_td = l_tr.cells;
    l_td.style.backgroundColor = '#DDDDDD';
    } // -- eof ex_conditional_tr() -- //
    var g_DEBUG = false;
    var g_TBODY = null;
    // Liefert das Body-Element der Tabelle mit der ID <p_id>.
    // Parameter
    // p_id - die Id der HTML-Tabelle
    // Return
    // das Body-Element oder NULL, wenn die Zeile nicht gefunden wurde
    function vd_getBody
    ( p_id
    if (g_TBODY == null) {
    var l_table = null;
    l_table = document.getElementById( p_id );
    if (l_table == null) {
    l_table = document.getElementByName( p_id );
    if (l_table != null) {
    if (vd_debug()) {
    alert("Tabelle gefunden, " + l_table.nodeName);
    g_TBODY = vd_search( l_table, 'TD', 't10data', 'TBODY');
    return g_TBODY;
    } // -- eof vd_getBody() -- //
    // Liefert die Zeile <p_rownum> der HTML-Tabelle mit der Id <p_id>.
    // Parameter
    // p_id - die Id der HTML-Tabelle
    // p_rownum - die Zeilennummer
    // Return
    // die Zeile oder NULL, wenn die Zeile nicht gefunden wurde
    function vd_getRow
    ( p_id
    , p_rownum
    var l_body = vd_getBody(p_id);
    if ( l_body != null
    && l_body.nodeName == 'TBODY'
    && l_body.children[p_rownum].nodeName == 'TR') {
    return l_body.children[p_rownum];
    else {
    return null;
    } // -- eof vd_getRow() -- //
    // Liefert die Spalte <p_column> der Zeile <p_rownum> der HTML-Tabelle mit der
    // Id <p_id>.
    // Parameter
    // p_id - die Id der HTML-Tabelle
    // p_rownum - die Zeilennummer
    // p_column - der Index der Spalte / Zelle
    // Return
    // die Zelle oder NULL, wenn die Zelle nicht gefunden wurde
    function vd_getColumn
    ( p_id
    , p_rownum
    , p_column
    var l_tr = vd_getRow(p_id, p_rownum);
    if ( l_tr != null
    && l_tr.nodeName == 'TR'
    && l_tr.children.length >= p_column
    && l_tr.children[p_column].nodeName == 'TD') {
    return l_tr.children[p_column];
    else {
    return null;
    } // -- eof vd_getColumn() -- //
    // Rekursives Suchen nach einem Node.
    // Zweck: Das bedingte Formatieren einer Tabellenzelle in einem Apex Standard
    // SQL-Report.
    // Diese Funktion durchsucht rekursiv, ab einem Ausgangsknoten <p_node>, alle
    // darunter befindlichen Elemente, ob in dem Element <p_seachIn> sich die
    // Klasse <p_class> befindet.
    // Bei Standard-Reports ist die Reportzelle (TD) mit der Klasse
    // "t10data" formatiert.
    // Zunächst muss dazu die Tabellenzelle (TD) selbst, die übergeordnete
    // Tabellenzeile (TR), der Tabellenbody (TBODY) oder die Tabelle (TABLE)
    // selbst ermittelt werden.
    // Der Beispielaufruf:
    // var l_body;
    // var l_node = document.getElementById( 'R112233' );
    // l_body = search( l_node, 'TD', 't10data', 'TBODY');
    // durchsucht also das mit der Id "R112233" versehene Element [der Report, für
    // den in Apex eine statischen ID vergeben werden musste] rekursiv, bis er
    // die [erste] Tabellenzelle "TD" findet, die als Klasse "t10data"
    // definiert hat. Für diese ermittelt er dann das übergeordnete TBODY-Element.
    // Parameter
    // p_node - das Ausgangselement
    // p_searchIn - der Knotenname, der durchsucht werden soll
    // [node.nodeName == p_searchIn]
    // p_class - der Name der CSS Klasse
    // [node.classList[<index>] == p_class
    // p_parentName - der Name [node.parentNode.nodeName == p_parentName]
    // des Elements, das zurückgeliefert werden soll. Wird als
    // p_parentName der Suchname p_searchIn angegeben, wird
    // das Element selbst zurückgegeben.
    // Return
    // das per p_parentName gesuchte Element (TD, TR, TBODY, TABLE)
    function vd_search
    ( p_node
    , p_searchIn
    , p_class
    , p_parentName
    var LN = "vd_search";
    var l_element = null;
    // DEBUG
    if (vd_debug()) {
    alert(LN + ":" + "Untersuche " + p_node.nodeName + ", id=" + p_node.id);
    // 1) der aktuelle Knoten ist der, der durchsucht werden soll
    if (p_node.nodeName == p_searchIn) {
    if (p_node.classList.length > 0) {
    for(var c=0; c<p_node.classList.length; c++) {
    if (p_node.classList[c] == p_class) {
    // Parent Node dynmisch suchen
    l_node = p_node;
    if (l_node.nodeName == p_parentName) {
    return l_node;
    while(l_node != null && l_node.parentNode != null) {
    if (l_node.parentNode.nodeName == p_parentName) {
    return l_node.parentNode;
    else {
    l_node = l_node.parentNode;
    // 2) wenn nicht 1) oder nicht in 1) gefunden, dann in den Kindelementen
    // weitersuchen
    if (p_node.children.length > 0) {
    var i = 0;
    while (i<p_node.children.length && l_element==null) {
    l_element = vd_search( p_node.children[i], p_searchIn, p_class, p_parentName);
    i++;
    return l_element;
    } // -- eof vd_search() -- //
    // Gibt an, ob Debug ein- (true) oder ausgeschaltet (false) ist.
    // Return
    // true - debug ist eingeschaltet
    // false - debug ist ausgeschaltet
    function vd_debug()
    return g_DEBUG;
    -->
    </script>
    Maybe you have to modify the "vd_getBody" function. I'm searching the table cell with having the class "t10data". When you use another theme, there's maybe another class used.
    Second is, that you set an static id for your report region. I prefer this structure:
    R<app-id><page-id><seq> (Raaaaappppsss) e.g. R094260001010.
    First example is to turn off the onMouse-Effect. Maybe on the first or last column definition you put this code in the "HTML-Expression" area:
    <script>ex_conditional_tr('R094260001010', #ROWNUM#);</script>#ID#This will call the example function ex_conditional_tr with the parameter
    a) the region id
    b) the rownum (as oracle always starts with 1 this is the first data row [rownum=0 is the table header row])
    Second example is the conditional formatting of a table cell. Put this in the HML-Expression area:
    <script>ex_conditional_td('R094260001010', #ROWNUM#, #COLNUM#-1);</script>#ENAME#This will call the example function ex_conditional_tr with the parameter
    a) the region id
    b) the rownum
    c) the cellnum (here we have to subtract 1 to get the "real" cell index)
    The "ex_conditional" functions are just a representation of how to get the row or cell node.
    Hope this help a bit.
    Tom

    I would use a CASE statement in the select....
    each CASE would be an img src tag for a different button if the button is an image.
    does that make sense? I can include an example if you would like...

  • How to display a static Image in a region (Not From Database)

    Hi
    How can I display a company logo in a region? Not from any database.
    If we can display a static company logo in a region then where Do I have to place this Company Image (Which Directory or is there any location I have to place this company logo).
    Regards
    Kiran Akkiraju

    Scott
    Thanks for reply.
    I have gone through the link and as per the link
    navigate to the Application Builder for your application.
    click on the Shared Components icon
    click the Images icon
    click Create to upload a new image
    click Browse... to locate an image on your local filesystem
    make sure you remember the name of the image, for example: my_logo.gif
    When I click on Application Builder I am not able to see shared Components.
    I am able to see a Shared Components in a page definiton only.
    Could you please let me know where Can I find this Shared components option.
    Regards
    Kiran Akkiraju

  • Calling a page in a different region

    Hi,
    I am using Apex 4.0 with oracle 11g.
    I have a requirement where I need to call a page in a region in different page.
    For example.
    I have 2 pages page1 and page2
    I need to call the page1 in page2 region.
    can someone help me how to implement this. Let me know.
    I appreciate your help.
    Thanks,
    Rik.

    Hi Rik,
    I am using Apex 4.0 with oracle 11g.I have a requirement where I need to call a page in a region in different page.
    For example.
    I have 2 pages page1 and page2
    I need to call the page1 in page2 region.
    can someone help me how to implement this. Let me know.
    >
    Depends on what is your precise requirement.
    To include a complete page with its header , footer ,etc. you will perhaps have no choice other than using iFrame to display the page.
    If you just want one of the regions from Page2 to be shown on Page1 then you have multiple options.
    The simplest is to put the common region on Page 0 and include that region on both pages.
    Cheers,

  • Need help to fit the records of a table into a particular region

    Hi All,
    Need help in getting the records of table to be fitted into a particular region provided for it. But in my case as the records increases the textbox below are moving down accordingly into next page that i dont want.  
    As shown in the below image i have to fit 22 no. of records in that given area only not disturbing the below textbox alignments.
    Thank in advance...
    Sreekanth Note: Please vote/mark the post as answered if it answers your question/helps to solve your problem.*****

    Hello,
    In SSRS, Report items within a report can be
    kept together on a single page implicitly or explicitly by setting the keep with group or keep together properties.
    In your case, you can try to specify the "KeepTogether" property to True on the Table properties windows.
    If there are other report items  under or above the Table and you want keep all items on the single page, you can try to add a Rectangle and put all items into the Rectangle.
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • Conditional display in  page fragments

    Hi all,
    I have to include a page fragment in one of the pages of my application.
    Certain elements in the page fragment should be displayed based on certain conditions only.
    How can this be done ?
    Thanks in advance
    Ananya

    HI Ananya...
       You can definitely do this....
    You have got two option..
    1. If the Condition is known to you before displaying the page at the first attempt...
    Define an attribute of STRING type say it HID_FLAG
    inside the event ONCREATE...
    On the basis of the condition set the flag to TRUE if want to display that region..otherwise..set it to FALSE..
    Now inside the PAGE LAYOUT....
    <% IF HID_FLAG = 'TRUE'. %>
    Between this define the portion of your layout that you want to show on the basis of condition...
    <% ENDIF. %>
    2. Another option is that you dont know the condition initially....and the condition is defined on the  ONINPUTPROCESSING.....
    For this you can set that flag on the EVENT HANDLING....
    Hope it solve your problem .....Otherwise do revert back....
    Cheers:)
    Mithlesh

  • Sub-pages in a tab-region

    I'm working on Oracle 9iAS release 2. And I have to set up a company portal.
    The first page (the root page) should show/contain a banner, a region with 4 tabs and a footer. My problem is that in one tab I want to create something like a content area. I have three or more topics and for each topic there should be a possibility to add items (like a document management system).
    Well as far as I know the only possibility how I can manage this is through pages and subpages. However if I display a subpage in the tab-region and this subpage itself contains other subpages (like in a hierarchy) and I click on one link to a subpage, the subpage opens in a whole new window. But I want to open the subpage only in the tab-region... (like html and frames)
    Is there a possibility to manage this??
    Thanks

    Have you tried using a page portlet? I don't know what you asked support (if you provide the TAR number I can look it up), but a page portlet allows you to navigate through a series of subpages while remaining in the context of the containing page. The presentation of the page hierarchy will remain within the tab containing the portlet.
    One caveat: if the pages viewed through the portlet use a template, they must all use the same template.
    Regards,
    Jerry
    Portal PM

  • How to display RTE item in a HTML region

    I have a process that is populating a hidden item with a RTE item from another page. I need to display this in its formatted state. I am using an HTML region to display this item but the page shows HTML tags instead of rendering them. I have tried both options under html region (escape special characters and plain HTML text).
    Can someone please help me to display this formatted RTE item on a page? Btw...I am using APEX 4.0.
    Thanks.
    Ashwen
    Edited by: Ashwen on Jul 26, 2010 2:23 PM

    user12601765 wrote:
    did you figure out how to display RTE item in a HTML region? Can you share with me how you did it?No he can't. He's not been active on this forum for over a year, and is totally unaware of your post as watches on threads only persist for a few weeks. Please stop posting follow-ups to ancient threads. Many of the participants in such threads will no longer be active on the forum (check the "recent messages" in their profiles).
    Posting follow-ups to ancient threads/departed users is NOT an effective way of getting help:
    <li>Other users may ignore the thread as it appears to be closed
    <li>Your assumption that the questions are related may be incorrect, leading to confusion about the nature of the problem and potential solutions
    <li>Watches on the thread may have expired, so the original participants may be unaware of the new post, or they may no longer be active on the forum
    <li>You have no ability to mark posts as helpful or correct
    Post your question as a new thread, including at least the following information:
    <li>APEX version
    <li>DB version and edition
    <li>Web server architecture (EPG, OHS or APEX listener)
    <li>Browser(s) used
    <li>Links to related posts and threads using the methods in the FAQ.
    Please read the FAQ and forum sticky threads for more information on using this forum effectively.
    From the information in the Allow users to use Rich Text Editor to build their own HTML/Apex Page you resurrected:
    >
    I am a business user developing apps, so my technical skills are limited.
    >
    you should be considering Websheets. (See this tutorial as well.)
    Also, please update your forum profile with a real handle instead of "user12601765".

  • Display jsp page inside tabset

    Hi
    I want to display different jsp pages inside different tab control of a particular tabset.I got a tabset with five tab controls.Also i got five jsp pages which i want to display inside each tab in the tabset. I tried to connect each page with a particular tab in PAGE NAVIGATION WINDOW.but when i am running the page,the tabs are not displaying the corresponding jsp pages.Anyone plz help me
    Thanks
    Shameer A

    Duplicate of http://swforum.sun.com/jive/thread.jspa?threadID=63106&tstart=0

  • Display first page , 3rd page & consecutive pages / Display 2nd page....

    Hi Friends
    We have a requirement to display first page, 3rd page & consecutive pages (dont display 2nd page) for a sales order particular to a plant in smartforms.
    Similarly, display 2nd page, 3rd page & consecutive pages (dont display first page) for a sales order particular to different plant in smartforms.
    Kindly provide your valuable inputs
    Thanks
    Lavanya

    Hi,
    Write this code in Initilization.
    constants:c_fir(5)  type c value 'FIRST'',
                     c_sec(6)  type c value 'SECOND'.
    DATA:L_NAME(17)   TYPE C VALUE '%HEADER-FIRSTPAGE'.
    FIELD-SYMBOLS: <FIELD>.
    IF werks  <> '1000'.
      ASSIGN (L_NAME) TO <FIELD>.
      IF SY-SUBRC EQ 0.
        <FIELD> = C_SEC.
      ENDIF.
    ELSEIF werks  <> '1010'.
      ASSIGN (L_NAME) TO <FIELD>.
      IF SY-SUBRC EQ 0.
        <FIELD> = C_FIR.
      ENDIF.
    ENDIF.
    By this code you can set the first page. Then to call the disired page in these pages create a command node in main window of each page and select the check box go to page select  third page in drop down .
    Thanks,
    Nethaji.
    Edited by: Nethaji babu on Jul 17, 2009 1:11 PM

  • Row processing and re-display of page

    Hi,
    I'm trying to re-display a page (at least this is what I think I have to do) but have it re-display the cached items and not do an automated row fetch.
    What I'm attempting is:
    I've got a page that maintains user information to be used internally whenever we create new users - all basically checkbox items, start dates, etc - pretty simple stuff. I then have a button to generate a user ID. What I want to do is fire off the process that generates the ID, and then display that ID in a page item. I can get most of that to work, but am I correct that I must re-display the page for that ID to appear in the item? When I do, the page does an automated row fetch, but if changes haven't been saved it displays the contents of the row prior to any changes. I guess I'd like it to re-display the page, but conditionally fetch the row, otherwise display the items in the cache. Is this possible.
    I guess a workaround might be to display the generated ID in the process success message, update the row, and then the item will be displayed within the region on subsequent row fetches, but it would look nicer if I could display it in the region immediately.
    I hope that makes sense.
    Thanks for any help!
    Frank

    Frank,
    You should make all the form fields' Source Used attribute "Only...", then add a condition to the row fetch process so it does not run if REQUEST='NOFETCH', and when the page is submitted with the button to generate the user ID, save the id in the desired page item in an after-submit process, then have a branch that responds to the submit button which branches back to the same page setting the request value to NOFETCH. Then the page will reload and you'll see your altered form items as they were.
    Scott

  • Drill down: new page appears in chart region

    I have a PL/SQL generated SVG chart with drill down to a report page.
    The chart region is calling the procedure from an <embed> command.
    However when drilldown is performed, the report page displays inside the chart region on the initial chart page, rather than replacing the chart page with the report page.
    How can I force the drill down URL to replace the whole page rather then put the chart inside the chart region?
    Thanks,
    Roland

    This worked for me:
    select 'f?p=&APP_ID.:1:&SESSION." target="_top' link
    , label
    , value
    from...

Maybe you are looking for

  • How do I get rid of xml tags but not when the tag has copyright in it?

    I tried this but it does not seem to do anything: temp_string=temp_string.replaceAll("\\<.*?(!copyright)\\>", "");An example of this is that if I have: <meta name ="copyright" > I do not want to get rid of the tag. In other words, I do not want to ge

  • Mod_weblogic and load balancing algorithm

    Hi, we have a problem where we have 2 boxes, each with Apache (doing some header and url rewrites) and configured with mod_weblogic, and weblogic servers with our stateless applications. We have a HW loadbalancer in front, doing round-robin balancing

  • Third-party library for J2ME

    Can I use third-party library in the J2ME wireless toolkit? and How? I have trouble using MathFP library provided by http://home.rochester.rr.com/ohommes/MathFP/ with the J2ME wireless toolkit(1.04, 2.1 and 2.2). If I can not use third-party library

  • New to flash (well, sorta)

    So I just got Flash CS5. I've worked with it before in high school but  I've forgotten some things about it. The most I know right now is how to  motion tween. What I'm asking is for some good tutorials/help or  anything that could help me in startin

  • Losing tool bad customixation when Norton Utilities runs a scan

    I keep losing my tool bar settings and it seems to be related to Norton Utilities running a scan and cleaning clutter. If I add a new tool bar it disappears. If I add addons such as fireFTP and Morning Coffee to an existing tool bar they disappear wh