Dashboard using PortalNav Page navigation

Hello

I'm developing a dashboard with two pages. Page 1 containing a summary level, which is developed by the Union and in Pivot mode.
Page 2 contains 6 reports, which are the normal table. When I click on, click Client in Page1, there go to page 2 and filter the dynamicaly of value based on the client. Page 2 a filter on column customer with Option IS prompted. I am Portalnav using function Dataformat tab on customer column. I am not able to navigate or filter the customer.
This is the portal nav I used.

[html] "< class font = onclick = nav-" JavaScript:PortalNav (event, ' / shared/Agnes/_portal/ERG3/A ', 'CUSTOMER', 'CLINET','"@" '); ------">" @"" < / police > ""

Suggesrt me where I'm wrong, please.

Thanks for the help.

Kind regards
Agnes.

Published by: user13006253 on October 5, 2010 12:35 AM

[html]""@""

Why is there a slash more after ERG3. Please post here your name, the name of dashboard page and the path of dashboard.

Also, check the link below to see the description of PortlapageNav

http://gerardnico.com/wiki/dat/OBIEE/dashboard_url

Again one thing, his portalPageNav and not PortalNav.I am not aware of all the functions with the name PortalNav.

Kind regards
Sandeep

Published by: Teresa Sanchez on October 5, 2010 01:04

Published by: Teresa Sanchez on October 5, 2010 01:05

Published by: Teresa Sanchez on October 5, 2010 01:11

Tags: Business Intelligence

Similar Questions

  • Obtaining huge Ariane in Dashboard using links between action pages

    Hello

    My question is simple: I have a dashboard with 3 pages. I created links between these three action pages. The user can then navigate between the pages by clicking the columns with the action links in the analysis.

    The problem is that the user can also navigate between the 3 pages by using the tabs in the dashboard. This creates a huge fool of Ariane!

    Action is to have a link between the pages of dashboard is recommended? I feel that I am doing this wrong.

    Thank you for your help,

    João

    You can hide these pages of dashboard.

    Thank you

    http:/cool-bi.com

  • JavaScript doesn't work is not on the page navigation

    Hello

    I have a manual tabular presentation on the emp table. There is a javascript function that calls for the deptno column change. If deptno is RESEARCH (20), then it turns off the field for this employee hiring date.


    The same function is called on page load using the threshold:

    $("[name=f04]').change ();


    It works fine when the page is loaded for the first time. When I navigate to see the next set of rows (for example, 16 to 30) then the javascript code does not work.


    An example can be seen on apex.oralce.com:

    https://Apex.Oracle.com/pls/Apex/f?p=30264:28


    Workspace: apex2014

    Username: forum

    Password: abc123

    Application: 30264 Dev2

    Page: 28

    Can someone explain why it behaves like this?

    Thank you

    ZKay wrote:

    I have a manual tabular presentation on the emp table. There is a javascript function that calls for the deptno column change. If deptno is RESEARCH (20), then it turns off the field for this employee hiring date.


    The same function is called on page load using the threshold:

    $("[name=f04]').change ();


    It works fine when the page is loaded for the first time. When I navigate to see the next set of rows (for example, 16 to 30) then the javascript code does not work.

    Can someone explain why it behaves like this?

    This occurs because the function is called only once the page loads, and therefore affects only the lines that existed when the page is initially rendered. Page navigation performs a partial page of AJAX (PPR) refresh that completely replaces a set of lines of form (including their properties dynamically applied) with a new series with different properties. It is necessary to apply the function whenever a new set of lines is displayed. The best way to proceed is to call the function using an dynamic after Refresh with a dynamic range action:

    Event: After refresh

    Selection type: Region

    Region:

    Action: Run the JavaScript Code

    Scope of the event: Dynamics

    Fire on Page load: Yes

    Code:$('[name=f04]').change();

    Note that rows 13 & 18 in your function cause errors of execution. As I do not understand the purpose of these that I commented on them in order to demonstrate the dynamic action solution:

    function test2(pThis){  // orpheus4192
      var v_item_value = pThis.value;
      var v_hiredate_item = $(pThis).closest('tr').find('td[headers=HIREDATE] input[name=f05]');
      var v_hiredate_button = $(pThis).closest('tr').find('td[headers=HIREDATE] button');
      var currIndex = $('select[name="'+pThis.name+'"]').index(pThis);
      var currRow  = currIndex+1;
    
        //alert(pThis.name);
      if ( v_item_value == '20' ){
          v_hiredate_item.prop('readOnly',true);
          v_hiredate_button.prop('disabled',true);
    
          //document.getElementById("f08_"+[currRow]).disabled=true;
      }
      else{
          v_hiredate_item.prop('readOnly',false);
          v_hiredate_button.prop('disabled',false);
          //document.getElementById("f08_"+[currRow]).disabled=false;
      }
    }
    

    Things are not helped by the mixture of techniques here. The code would be easier to understand and maintain if a coherent approach was followed. It is recommended to always use jQuery to select and manipulate items, then select the items of dynamically across the table from the declarative mode headers attributes, rather than trying to understand the absolute values of ID from the control of the name and line numbers. It's much more intuitive, generally requires less code and is waterproof later insertions and changes in the order of the columns. Potential problems are only the changes to the control type or the column alias (because the latter is generally required in the selector), but these changes are likely to occur less frequently.

    Do not forget that to get the headers consistent and understandable static ID selectors must be applied manually to the IR columns in APEX 5.0...

  • passing the parameter through links page (navigation)

    Hello

    suggest me the way to pass the parameter through links in the page navigation.

    I tried it in EL, I'm not able to get on the page.

    is it a right approach or any other.

    Thank you

    A

    After showing the steps in the similar thread, I found this thread then re-post here.

    Pass the connection parameter to connected in portal Builder page


    Here are the steps to pass the parameter in a URL to another page:

    OR

    Sign in to your personalized Portal (say MyPortal1)

    http://127.0.0.1:8888 / webcenter/Portal/MyPortal1

    Click the settings (e.g. Pages & portals Actions)-> manage-> all settings

    It will take you to the page view of all of the current portal (i.e. MyPortal1).

    Then click attributes in the left pane, and you can create/edit/delete the custom attributes for the current portal on the right side.

    • Click Add an attribute and specify the following information:

    Attribute name = myvar

    This is the attribute that we will refer to any page using the EL "MyVar".

    Attribute value = #{param.myvarval}

    "Myvarval" is the name of the query parameter (i.e. suffix query param & myvarval = TestSuccess will be passed as part of the URL later)

    • Now, create a new page "TestPage" and add the element of HTML markup on the page using the composer.
    • In the Properties window, change the HTML markup element.

    Replace the existing value

    #{componentExtensionBundle.OUTPUT_TEXT_TEXT}

    with

    #{spaceContext.currentSpace.metadata.customAttributes ['myvar']}

    • Click apply and then click OK to close the pop-up window.
    • Click on save and view Portal


    • CHECK: Replace/change the URL the following OR open in a new tab in the browser

    Http://127.0.0.1:8888 / webcenter, portal, MyPortal1, TestPage ? myvarval = TestSuccess

    and you will see "TestSuccess' message in the"TestPage"rendered using the HTML markup component.

    This confirms passing the parameter to a page URL works as expected.

    Now, to add a link to the "TestPage" passing a parameter in the URL of the page in another page (Home Page say).

    • Now goto homepage, correct it in composer and add the hyperlink element. Click change to set the hyperlink in the Properties window.
    1. Set the title to display (i.e. the value of the title TestPage)
    2. Set the Destination URL by clicking on the search icon and choose "TestPage".

    Destination is defined with values that resembles

    /faces/Oracle/WebCenter/page/scopedMD/sf5926dd1_9e6a_45ab_a99c_d79fabb362c0/Page1.JSPX

    Add a suffix '& myvarval = TestWorks' to him.

    • Click apply & OK.
    • Click on save and view Portal
    • CHECK: Since your home portal or the home page, click on the link "TestPage" which brings you to the TestPage and you will see "TestWorks' message in the"TestPage"rendered using the HTML markup component.

    I hope it helps.

    References:

    How to pass a parameter of argument the query URL to a parameter input workflow? (Doc ID 1545808.1)

    https://mosemp.us.Oracle.com/epmos/faces/DocumentDisplay?ID=1545808.1

    Works with the global attributes in portals

    http://docs.Oracle.com/CD/E29542_01/WebCenter.1111/e27738/wcadm_ps_attrib.htm#WCADM11701

  • Redirect to an Apex Pl/Sql by using the page

    Hello

    I want to redirect it to a page of the apex using pl/sql.

    I m using the following code.

    Begin

    htp.p (utl_http.request (": http://application-tier server: port/apex /'"));

    End;

    Get the following error: parsererror - syntax error: token Unexpexted.

    Help, please.

    Concerning

    Far87 wrote:

    Fac586 thank you very much for your reply,

    Sorry for the unclear issue, I will make you understand.

    My requirement is to navigate between the pages.

    I have a form with field x and a button to send in the same region.

    whenever you press submit, it should check

    If x = 1 then

    GoTo page 3

    elsif x = 3 then

    GoTo page 4

    on the other

    GoTo page5

    end if;

    To do this, I created a dynamic action using the code below.

    Begin

    If: P5_x = 1 then

    HTP.p (utl_http.request (": http://application-tier server: port/apex/f?")) p = 159:3'));

    elsif: P5_x = 3 then

    HTP.p (utl_http.request (': http://application-tier server:port/apex /f? p = 159:4'));

    on the other

    HTP.p (utl_http.request (': http://application-tier server:port/apex /f? p = 159:5'));

    end if;

    end;

    Get the following error: parsererror - syntax error: token Unexpexted.

    I replaced the htp.p (utl_http.request (": http://application-tier server: port/apex/f?")) p = 159:3"))

    with owa_util.redirect_url (": http://application-tier server: port/apex/f?") p = 159:3');

    apex_application.stop_apex_engine ();

    Always make the same mistake.

    This is completely the wrong approach for normal inter-page navigation in the APEX. The use of dynamic action is not here. In this situation use branches for navigation, with conditions to control which branch is used according to the logic that you need...

  • Popup before the page navigation

    Hello.

    I'm showing a popup before I have a navigation page. The popup is designed as a loading screen with and animated GIF.

    There is a button on the screen, when you click on it it should show the popup and then make navigation. (If the window is displayed until the next load of the page, the navigation link in the taskflow bacuse calls several methods between the two screens)

    First tried to use the ShowPopupBehaviour, which I discovered was not possible because he cancel the action of the button when encountered.

    Then I tried to do a program like this:

    public String cb1_action() {}
    FacesContext context = FacesContext.getCurrentInstance ();

    PopupUtil.invokePopup (p1.getClientId (context)); same as popup.show (hints)


    context.getApplication () .getNavigationHandler () .handleNavigation (null, "next_method_in_taskflow", context);

    Returns a null value.
    }

    However, it does not, since the popup is not showed.

    The question is, how to display the pop-up window before the page navigation is performed.

    TIA

    TIA, please tell us your jdev version.

    Your use case is best done using the #027 examples (http://www.oracle.com/technetwork/developer-tools/adf/learnmore/27-long-running-queries-169166.pdf) of http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html

    Timo

  • Urgent Page Navigation display the naming of files like 03_02.JPG

    Hi all

    I got the PDF of my client, he do some stuff in the display of pdf file name in the page navigation bar, how they made this view, please find below for your referecne snapshots.

    1 see the pag navigation tab shownin the 03_00C0.jpg next to the (1/54), it's the 1st page.

    Picture 2.png

    2. This page also showed the name of the file in the navigation page tab this page is 2nd 03_01.jpg actual page is (2/54)

    Picture 3.png

    Please help me how to do this and get the same view of the navigation tab of page mentioning the name of file as photos.1jpg or 05 - 115.tiff.

    I have more jpg file 200 how do like that. Please help it is very urgent. I can't ask my client.

    The system configuration:

    I use Acrobat 9 Pro Mac OS 10.5.6.

    THX

    csm_phil

    It may not be easy, but you must use the dialog box Page numbers by right clicking on the page in the thumbnails of Pages and enter the name of the file as the page number like this

  • States in Flex and Page Navigation

    I have a doubt regarding the page navigation in flex. How to navigate from one page to the other for example on the presentation of a flex form? If the States are used so not the entire application will be a file single mxmxl?

    Please help me

    Hi there, you can use viewstacks instead of viewstates or any other navigator container, and divide you app as files as much as you want you can read more about this here:


    http://livedocs.Adobe.com/Flex/3/HTML/modular_1.html

  • Firefox always opens to the last used web page

    Firefox always opens to the last used web page. I tried the suggested solution (delete user. js the file of the profile folder) but cannot find such a file in the profile folder. Can you please help?

    What is your computer system and Firefox?

    Type of topic: preferences #general< enter > in the address bar.

    There are two settings;

    • At the start of Firefox

    When the browser is started, what you want
    view. Many of us choose view my homepage.

    • Homepage

    When a new page opens up, what do you want displayed.

    1. Use current Page. Use the pages that are never open at this time.
    2. Use the bookmark
    3. Restore by default. topic: Home shows a home page of Mozilla with tools.

    You can use one of these as you want;

    topic: Home (Default Firefox homepage),
    on: newtab (displays the more visited sites),
    Subject: vacuum (a blank page),

    or you can enter any web page or Subject: page you want.

  • Options-use current pages now let the tab options

    When I click on use current pages, the page option now remains as a current page.

    This is a Bug that has been reported for a year and a half when the system of preferences 'in the content"was created. This "in content" has been postponed and apparently the developers leave this 'pass through the cracks '.
    https://Bugzilla.Mozilla.org/show_bug.cgi?id=1043586

    You can use the Home Page 'box' and remove the : subject: preferences characters at the end of the line to fix.

  • How can we use this page Windows Genuine?

    How can we use this page once the developers of Firefox has removed the option "Enable Java"?

    Now, I downloaded this tool to check if the Windows Genuine or not! But kept getting the error message during the installation of the application.

    This is not sound/look like a problem of firefox at all, but could be a problem with the integrity of your windows system (perhaps related to malicious software): http://support.microsoft.com/kb/2617842/en-us

  • "Use current Page" to save the Home/tab pages is gray, even though I have a new install of ver 22 without adding plugins or extensions. How can I fix it?

    When I try to save my pages / tabs, I can not, because this option is grayed out. I even uninstalled FF with Revo Uninstaller completely reinstalled without new plugins or extensions, and it remains greyed out. The only thing I can do is pin the tabs, but I wish to use this option. If I can't, I don't know whether its Firefox or malware or? Thanks in advance for any help. Windows 7 family Premium SP1, Firefox ver. 22

    Thank you very much for your time and effort. It was not the solution, but I couldn't find a place to close the ticket/request. I discovered that I had pinned tabs, in doing so, it grayed out this option. Once I have this marking tabs, I was able to use the option ' use current Page/s. Thanks again for responding so quickly.

  • NoScript 2.1.0.2 causes double hearder more loss of page navigation arrows

    Noscript 2.1.0.2 installation caused a page header double (blue lines with minimize/maximize/output double, X) with a Firefox button and the loss of the page navigation arrows.

    Disabling Noscript corrects the situation.

    XP service pack 3 and Forefox 4.0 version

    http://forums.InformAction.com/viewforum.php?f=3

  • Using the page submit after elements in the process of treatment page

    Hi all

    I have a form of DML in which the user can update a column.

    After clicking the Apply Changes button that I need to send an email saying the record has been updated with some page elements in the body of the email.

    I am able to send email, but I'm not able to display the page elements in the body.

    After changing the save the session state for the 'yes' also he did not.

    Y at - it another option that must be set so that I can use the page elements in the body of the email.

    Thank you

    MJ

    Make sure that after settlement it is normally a reset page call, is perhaps what kills the variables you are trying to access.  You should put your mail send processes PRIOR to the reset page process...

    Thank you

    Tony Miller
    Los Alamos, NM

  • InDesign crashing whenever I use the page tool

    InDesign CC 2015 (11.3.0.34) on Mac OS X Yosemite 10.10.5

    Whenever I select the page tool it crashes... new existing document document, no way to use the page tool, a few seconds after selecting it, closed InDesign itself!

    Even with a few members of my team on their machines.

    Anyone experienced the same problem?

    so, it looks like delete the Preferences file has solved the problem!

    Preferences in InDesign and support files

Maybe you are looking for