Value interaction navigate in new page

Hi all,
I want to jump to another report from a column using the Navigate option from the column properties. So far so good.
But I want to open the report in a new page, is that possible?
Also, I know about the possibility to use the Custom Text Format on the column using HTML code, but unfortunately I cannot use this because it doesn't take all values if there is a space (New York = only brings "New"). And I don't want to use the Column formula because it will then print all the HTML code when printing to a PDF. Very annoying though!
E.g. I have to use the Navigate option :-)
Have a nice day!

Hi Joe
Actually, I can drill/navigate from any of the buckets individually to the detail report. The basic requirement is to detail the value that is clicked on in the top-level report.
So if I click on 20 in the 20k to 30k bucket measure, the detail report should show me the breakdown of those specific 20 products that make up that measure (same for all the buckets, show the specific products that make up the value for that bucket).
The value in the 20k to 30k bucket will pass to the detail report if I use a 20k to 30k is prompted in the detail report. Now what if I navigate from 50k to 10k measure value. The detail report will need to have 50k to 60k is prompted as well, in addition to 20k to 30k is prompted.
So now what will happen is, if I click on a value from 20k to 30k measure, it'll prompt the 50k to 100k measure as well (same report both measures are prompted). Hence, I 'll get the data for both measures instead of just the detail for 20k to 30k which is what I need when I click on a value in that column.
eg. if the Top report looks like this:
Region/Revenue 0 to 5k , 10k to 20k , 20k to 30k , 30k to 40k
Eastern 20 12 23 21
Southern 5 10 50 100
If I click on 20k to 30k for Eastern (value 23), I should navigate to the details of the products that make up 23. So I have to use a 20k to 30k filter is prompted. Similarly for other measures. But the moment I do it for 2 of the bucket measures, say I use 20k to 30k is prompted and 30k to 40k is prompted, and I now click on 23 again, now 23 and 21 are both prompted
and I get 23+21 records in the detail report instead of just 21 (since both the measures are now prompted).
I don't think this is really possible in a single report because what I'm trying to achieve is essentially selecting prompting of columns.
Hope this explains it clearly. Any suggestions?
Thanks
Ananth
Edited by: Ananth V on Dec 27, 2009 1:56 AM
Edited by: Ananth V on Dec 27, 2009 12:46 PM

Similar Messages

  • Value Interaction Navigate to another App

    I currently use Presentation Services to write reports against the Database for our Incident Tracking Software. I have built a Form in BIP to mimic the look and feel of an Incident Ticket and using Value Interaction Navigate to this BIP Form is working well (I pass through the Incident Number). Would like to bypass this and navigate directly to the Incident Tracking App and actually expose the Incident Ticket (again clicking on the Ticket Number in my Presentation Request and passing that number through to my Tracking Software). I can construct the URL to a given Incident in my Incident Tracking App directly into my browser and I can get there. Has anyone had any luck in using Value Interaction Navigate in navigating to another App other then a Presentation Request or BIP...Thanks

    Yeah, using goURL you can pass some custom parameters. I used to configure such functionality for linking to SiebelCRM.
    Check this doc http://download.oracle.com/docs/cd/B40078_02/doc/bi.1013/b31766.pdf (Web Services) around page 208
    Edited by: wildmight on May 27, 2009 1:43 PM

  • Clicking on 'ADF Calendar Component activity' should navigate to New page

    Jdeveloper Version - 11.1.2.0.0
    We implemented the ADF calendar component and it displays fine. However, we have a requirement that by clicking on the activity, it should navigate to another new page. For an activity, there are options like contextMenu, acitivtyHover, activityDetail etc.., where all shows the details in popup of the same page. We want to navigate to new page by clicking on the activity. Is it possible?
    Thanks in Advance.

    Hi,
    I don't think it is possible.
    All the facets you mentioned support only af:popup as child to them.
    http://jdevadf.oracle.com/adf-richclient-demo/docs/tagdoc/af_calendar.html
    -Arun

  • "Value Interaction" - "Navigate" not working properly in pivot table

    hi,
    if there is a column, columnX (the properties: value interaction -> navigate -> target : requestB) in request A
    and one of the columns in requestB is also columnX
    and in requestB, in the filter part, "the columnX is prompted" is set
    if the view of the requestA is "table",
    when the user clicks one of the value on columnX in requestA, it will redirect to requestB and only show the results (where columnX = selected value)
    HOWEVER, IF THE VIEW OF requestA is "pivot table",
    when the user clicks one of the value on the Measures (columnX is put in Measures in pivot table of requestA), IT WILL REDIRECT TO requestB BUT SHOWING ALL DATA (WHERE 1=1)
    are there any properties that needed to be set ?
    or it is a bug/limitation ??

    if the columns for x-axis and y-axis are computed (not loading data directly),
    navigate is disabled.

  • Used value interaction navigate!

    I have multiple Automobile dashboards,suppose says dashboard names are AUX auto Dashboard,Baolong Motors Dashboard,Beiqi Foton motors Dashboard,chery auto Dashboard,fujian motors,fudi,geely Motors Dashboard.
    Each dashboard is linked with comform dimension in rpd.
    My Question is if we open a report suppose AUX dashbaord in that if i click customer column it should hit other baolong motors dashboard customer column and show the results.
    what i did is in answers i selected customer column in column propeties column format used value interaction navigate, But these one only work column heading,i need for values some one said me i need to pass parameters,
    I really dont know how to pass these parameter
    can any one help me out ?
    Thanks
    Chi(shangai)

    Let's say you have 2 reports, EMP and Account. Let's say you want to be able to navigate from emp to account once user click on emp id or emp name, it will take you account report showing the emp's account. In that case, you are passing values from emp to account..
    If you click on "John smith" from emp, it will navigate to account report that has only john smith's account information. In this case, on your account report, you will need to have emp name column, and you will need to put a filter on it as "is prompt", therefore when "john smith" from emp report is passed to account report, emp column of account report will be able to receive "john smith" and filter account report base on it.
    Hope this helps

  • Select value then navigate to another page

    All,
    I am doing something which sounded simple but doesnt seem work for me. Ive a select List item and when a value is selected on change eg EMP_ID value i need to pass that selected value to another/navigate to another page and pass that values to that page item eg P2_EMP_ID.
    i tried below DA but its always showing value=undefined  ?
    $('#P1_NAGIVATEPAGE').change(function() {
    alert('val = ' + $("#P1_XXX option:selected").val() );
            var ac = $('#P1_XXX').val();
            alert(ac);
            if (ac == 'CAMPING') {
                window.location = 'f?p=&APP_ID.:2:&SESSION.::&DEBUG.:P2_XXX:&P1_XXX:';   etc,
    how can i solve in apex 4.2?
    thanks.

    Hi,
    You are using &P1_XXX in your code. This is the value of the item from the moment the page loaded. This means it is not changing on the change of the item value. Your code should be something like this:
    window.location = 'f?p=&APP_ID.:2:&SESSION.::&DEBUG.:P2_XXX:'+ac;
    Regards,
    Kees Vlek
    Company: http://www.orcado.nl
    Blog: http://www.orcado.nl/blog/blogger/listings/69-kvlek
    Twitter: http://www.twitter.com/skier66
    +If the question is answered please change it to answered and mark the appropriate post as correct/helpfull.+

  • Multiple Behaviours on EventTrigger, how to have an animation play and then navigate to new page?

    Hi
    Very new to this and coming from a VB6 background.  I have a Login Grid that I want to scroll off the screen on a successful login attempt and then navigate to a new page in a WPF application.  How do I achieve this please, I have added a ControlStoryboardAction
    that plays the animation and also a NavigateToPageAction but I don't seem to be able to get them to work in a sequence, i.e. do the ControlStoryBoardAction first and when the animation stops then do the NavigateToPageAction. Its the sequencing that I'm
    having trouble with.
    I'm used to different Forms for each 'screen' coming from my VB6 days so maybe my approach is off?  Any help is much appreciated.
    Thank you

    Split the button from the image of the button:
    Put your 'poster' graphic on a PDF entirely on its own and import it as a layer with print turned off, as you've done, but add the sound and the button to the PDF as normal - setting the button to the 'invisible rectangle' style. The button will still "print" but of course there's nothing visible.
    The Import as layer feature in Acrobat works, but to be blunt it's a bit of an afterthought, and doesn't like anything strange on the layers you bring in. OCGs (layers) came from Illustrator as a way to move files between applications, and Acrobat needed to have some basic grasp of them just to fiddle about with stuff like watermarks, but it's not a full-featured OCG editor.

  • Error message: 'Could not add a new page. An error occurred.' (CS6)

    Hi all -
    Every time I navigate to a new Page in FW CS6 I get the above error message. I also get it every time I try to create a new page. It lets me navigate/create new pages after I click 'OK' but seeing that error message every time is really starting to put a damper in my work flow...
    Anyone have any suggestions? David Hogue mentioned that I might of deleted/overwrote something in my config file...
    Cheers,
    Ryan

    I have never seen that, maybe re-install

  • What code to navigate from page without opening a new page?

    Hello, I have a flash button embedded into a css/HTML page that I want to use to navigate into a new page without opening a new window. Here's the code I'm using in the SWF which I got from the adobe tv tutorial:
    http://tv.adobe.com/watch/adc-presents/buttons-and-interactivity-in-flash-cs4
    Here is the test page that I have embedded the flash button in: http://ianmartinphotography.com/testers/index-flash.html
    The flash button is the "about Ian" button on the upper left. I want the navigation to be like the traditional rollovers on the page. (I'm working my way up to having the embedded flash button fade into place, that's why I'm using flash.)
    // 1. Event handler function
    function clickHandler (Event:MouseEvent): void
       trace("CLICK!");
       navigateToURL(new URLRequest("http://ianmartinphotography.com/about.html"));
    // 2. Assign listener 
    about_btn.addEventListener(MouseEvent.CLICK, clickHandler);
    I just want to go to a different page, not open a new window. How should I change this code to do that? Thanks!
    -Ian

    If you look up the navigate ToURL function in the help documents it lists all of the window options available.  For your case you can use:
    navigateToURL(new URLRequest("http://ianmartinphotography.com/about.html"), "_self");

  • Navigate to Web Page always opens a new window

    Hi,
    I am using action link "Navigate to Web Page" for column interaction. The source report is in a dashboard page and by clicking on this column should navigate to another dashboard page carrying some parameters.
    It works fine but everytime it opens a new browser window for navigation. But my requirement is to make this navigation happen in the same browser window. Can anyone please help me with a solution on this?
    My version of OBIEE is 11g.
    The URL I am passing looks like this: http://localhost:9704/analytics/saw.dll?Go&Path=/Shared/Test/target&Action=Navigate&col1=@{1}&val1=%22@{2}%22&op1=@{3}
    Thanks
    Mano
    Edited by: 820723 on Jan 24, 2011 9:54 PM
    Edited by: 820723 on Jan 24, 2011 9:54 PM

    Did you check to have the results to be 'embedded in section' in your dashboard section properties?
    kris

  • 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
    -------------------------------------------------------------------

  • New Page in ALV for Value Change on a Field

    Is it possible to trigger a new page while prinitng from ALV whenever a value changes in a column.
    Thank you,
    Shashi Reddy

    Hi,
    Yes it is possible to add page breaks on a particular column while previewing/printing from ALV.
    Declare a structure like
    DATA:  gs_print    type lvc_s_prnt.
    and before calling set_table_for_first_display, write
    gs_print-grpchgedit = 'X'.
    Now pass this structure to the method as follows:
        call method grid->set_table_for_first_display
             exporting
               is_print         = gs_print
               is_layout        = gs_layout
               is_variant       = gs_variant
               i_save           = 'A'
               i_default        = 'X'
             changing
               it_fieldcatalog = gt_fieldcat[]
               it_outtab        = g_t_outtab[]
               it_sort          = gt_sort[].
    Run the report. Now when you are in the print preview mode, press the sort ascending or descending button on toolbar (without selecting a column). A dialog box appears asking for sort order. Add the required field, from the available list on right hand side, on which you want a page-break. In the last column titled NG of this sort order dialog box, write * for page feed or UL for line feed. Press Copy button to see the effect.
    Hope this helps.
    Regards
    Shehryar

  • To open a new page by appending some values

    Hi,
    I created a button and on click of the button it should open a new page based on a few flag conditions.There are 4 URL's which are stored in a standard table.Please let me know how i can open the page by using the respective URL and then appending the opportunity value to it.
    Thanks,
    Sirisha N

    To open url on button click, you can use the following example, that I used in one of my cases...
    Z P/L analysis
        ls_button-text     = 'P/L analysis monitor'.
        ls_button-tooltip = 'P/L analysis monitor'.
        lv_string1 = 'javascript:window.open( "'.
        lv_string2 = '" );'.
        CONCATENATE lv_string1
        lv_url2
        lv_object_id
        lv_string2
        INTO lv_string3.
        ls_button-on_client_click = lv_string3.
        ls_button-page_id  = me->component_id.
        ls_button-enabled  = abap_true.
        APPEND ls_button TO rt_buttons.
        CLEAR ls_button.
    Comments:
    - lv_string3 represents the URL
    - lv_url2 contains the url of bsp component, which you can build manualy or read from any table with select single statement
    - lv_object_id represents the id of opportunity which you can read from BOL or with one of crm_order_read function modules
    Regards.

  • Displaying values in a new page

    I have a java script code. At the end when the user clicks on the button after entering the values in the 3rd page, the values shall be displayed in a new page. Please help me out with the final approach:
    <html>
    <head>
    <script language="LiveScript">
    function WinOpen() {
    if (document.form1.cap.value == "")
    alert("Enter value in text box");
    return;
    msg=open("","DisplayWindow","toolbar=no,directories=no,menubar=no, scrollbars=yes");
    msg.document.write("<HTML><HEAD><TITLE>Yo!</TITLE></HEAD>");
    msg.document.write("<CENTER><h1><B>This is really cool!</B></h1></CENTER>");
    msg.document.write('<BODY><form name="form2">');
    for(var i =0; i < document.form1.cap.value; i++)
    msg.document.write("<INPUT type=text name=tbAlphaNumeric>");
    msg.document.write("<br>");
    msg.document.write('<input type="button" name="Button2" value="Steal" onClick="javascript:window.opener.WinShow();">');
    msg.document.write('</form></BODY></HTML>');
    function WinShow() {
    msg=open("","DisplayWindow","toolbar=no,directories=no,menubar=no, scrollbars=yes");
    msg.document.write("<HTML><HEAD><TITLE>Great!</TITLE></HEAD>");
    msg.document.write("<CENTER><h1><B>Display of second page text elements!</B></h1></CENTER>");
    for(var j =0; j < document.form1.cap.value; j++)
    msg.document.write(document.form2.tbAlphaNumeric[j].value);
    msg.document.write("<br>");
    msg.document.write('</form></BODY></HTML>');
    </script>
    </head>
    <body>
    <form name="form1">
    <INPUT type= "text" name=cap>
    <input type="button" name="Button1" value="Push me" onClick="WinOpen()">
    </form>
    </body>
    </html> 

    This is a Javascript related question, not a Java related question. Those two languages have nothing to do with each other but a slight similar name and syntax. Although the most Java web developers also understand Javascript, it is not the intention of those Java forums to discuss about Javascript. The forums should not be polluted with unrelated questions.
    Post this question in a Javascript related forum. There are ones at [http://www.webdeveloper.com] and [http://www.dynamicdrive.com].

  • Navigate Value Interaction not working with UNIONs displayed as pivot

    hi all - If created dozens of requests the uses drilling. Now I'm getting strange behavior in a certain scenario...
    I have a request that is a pivot view and contains UNIONs. One of the columns, employee name, is set up as 'Navigate' for the Value Interaction property. The request drilled to has employee name set up as 'Is Prompted' in the criteria.
    If the main request is displayed as a table view, the drilling works fine - the drilled to request opens with the intended employee that was clicked on in the main request. However, if the main request is a pivot view (which is the view I want) instead of a table view, the drilling does not work as intented - the drilled to request opens with all the employee names. I just want to drill on the clicked upon employee, not all the employees.
    I'm using OBIEE 10.1.3.4.
    Any suggestions as to why this would work as a table view but not as a pivot view?
    Thanks!

    The best solution is to define hyperlink for the detail report in the report column itself. Change the expression of column to HTML hyperlink. (Make sure value interaction is disabled) Use Go URL syntax to navigate to detail report and pass parameter, something like below:
    <pre>'&lt;a href=”saw.dll?Go&Path=/Shared/ReportName&Action=Navigate&P0=1&P1=eq&P2=Emp.Name&P3=’ || Emp.Name || ‘">’ || Emp.Name || ‘&lt;/a>’</pre>
    This link has more details:
    http://www.iwarelogic.com/2010/09/integrating-oracle-obiee-content-using-go-url-850/
    http://www.iwarelogic.com/wp-content/uploads/blogimg/2010/09/image006.jpg
    Hope this helps

Maybe you are looking for

  • Tab character missing in the end of the line in file2file scenario?

    Hi,gurus: Our scenario is file to file,and both transport protocols are FTP. We are using content conversion both in sender and recevier side. But when we test the scenario,we found the tab character('0x09') is missing if the tab character is in the

  • Not diaplsy buttons on alv grid display

    Hi, In the below code,i dont understand where i made a mistake,i used a user command on alv it's working but not display the buttons on a output.Please check the below code and solve it. REPORT  Y_ALV_VERSION. TYPE-POOLS : SLIS. DATA : BEGIN OF ITAB

  • Transform no longer saves last move

    transforms for rotate, reflect and scale no longer read off of the hand transformed objects -- ever since the expansion and focus of the rounded rectangles. transform dialog boxes only interact with itself inside the dialog box, and kick back to fixe

  • Accessible PDF: How do I get the screen reader to pause?

    Hello, Does anyone know how to create a pause in an accessible PDF? Right now the screen readers reads the whole PDF without breaking at all, the whole thing is one long sentence. Any ideas? Thank you!

  • 975X Platinum Power Up Edition v 2.1 - Will not Boot!

    Hi All, I have what seems to me to be a major issue. I've just built a new machine with the following specs : PSU : Coolermaster eXtreme Power 650W PSU - ATX 12V V2.01 120mm Fan 20+4pin MBO : 975X Platinum Power Up Edition v 2.1  CPU : Intel Core 2 Q