Navigation between 2 different facts reports tables OBIEE 11 g

Hello

I have 1 Summary report, built from 1 and 5 dimension tables. I have 1 report detail built from 1 and 5 dimension tables. Here, 2 fact tables are different, but the dimensions are confirmed. I want to navigate between summary and detailed report of the common column circuit. Is there a way I can pass the values?

Thank you

Prasanna

Thank you all for your response. I found the solution in Google. Here is the solution.

Actually when we deal with 2 links fact tables of action will not filter the data.

I created an interim report and the second report based on the interim report of the filter.

Thank you

Prasanna

Tags: Business Intelligence

Similar Questions

  • The way of writing to a wireless bridge between two different routers.1:broadband and dir 2:dlink 605 l

    I want to bridge.and wireless I can't do that... Please send me how to write to a wireless bridge between two different routers.

    1:broadband
    and
    2:Dlink dir 605 l,

    Hi Mohammed Ehsan Jourah,.

    Thanks for posting the request in the Microsoft community forums.
    I understand that you need to know how to make a wireless bridge between two different routers

    What version of the operating system is installed on the computer?

    To connect multiple computers, install a network adapter in each and run a network CAT5 cabling to connect each one to a hub (and thus the other.) The computer that will serve as a transition will have a standard network card for wired and a wireless network adapter that will connect to the wireless (WAP) access point or gateway on the second network.

    A network bridge is software or hardware that connects two networks or more so that they can communicate. You can create only a single bridge network on a computer, but a bridge can handle any number of network connections.

    You can try the steps at the bridge between two different routers wireless.
    a. determine the coverage area. When using two or more routers, the coverage area should be divided, and each router should be placed in a central location in each subdivision. If you add a wireless router to an existing network, this may mean moving the first router.
    b. decide which router is the main router. The main router is connected to the Internet, a LAN cable or other networks. It should be as close to the wired network connections or who has the best line of sight to another wireless network. In addition, the main router should be a high range router, allowing large tables of State and more users.
    c. buy a spare antenna, as the antennas that come with most routers do not have very good range. Quality omnidirectional antennas can push the range and signal strength of each of the routers, which, in turn, will reduce the cost by allowing routers less cover more space overall.
    d. deploy the primary router carefully. This router is the most important and requires most of the time of installation and options. Set the WEP (Protocol) encryption Service Set Identifier (SSID) and wireless, set up the Internet connection and test the router with some clients (computers). Once you get the main router deployed, deploy other routers should be easy.
    e. deploy the secondary routers, which must be configured to operate in "mode of transition." Secondary routers should be deployed around the perimeter of a large area or 'hot spots' where users placed - for example, will convene a bench Park or the table.

    Links:
    Create a network bridge:
    http://Windows.Microsoft.com/en-us/Windows7/create-a-network-bridge

    Add a connection to a network bridge:
    http://Windows.Microsoft.com/en-us/Windows7/add-a-connection-to-a-network-bridge

    Hope this information helps you. If you need to get help or information with decision-making wireless bridge between two different routers, I'll be happy to help you.

  • Dynamic calculation of the number of days between two dates in a table

    Hello

    I'm working on request where I dynamically calculate the number of days between two dates in a table.

    The calculation must be dynamic, i.e., when I recover the Start_date and End_date and move to the field following (call_duration) in the same row, the difference must be calculated dynamically in this area and make sure the field read-only.

    APEX version: 5.0

    Hi BO123,

    BO123 wrote:

    Hello

    I'm working on request where I dynamically calculate the number of days between two dates in a table.

    The calculation must be dynamic, i.e., when I recover the Start_date and End_date and move to the field following (call_duration) in the same row, the difference must be calculated dynamically in this area and make sure the field read-only.

    APEX version: 5.0

    one of the way to do this by calling ajax on change of end_date.

    See the sample code given below to fetch the resulting duration and making the field read only after calculation

    Step 1: Change your page

    under CSS-> Inline, put the code below

    .row_item_disabled {
      cursor: default;
      opacity: 0.5;
      filter: alpha(opacity=50);
      pointer-events: none;
    }
    

    Step 2: Create on demand Ajax process I say CALC_DURATION

    Please check Procces Ajax, see line 6.7 How to assign a value to the variable sent by ajax call

    Declare
      p_start_date  date;
      p_end_date    date;
      p_duration number;
    Begin
      p_start_date  := to_date(apex_application.g_x01);
      p_end_date    := to_date(apex_application.g_x02);
    
       --do your calculation and assign the output to the variable p_duration
      select p_end_date - p_start_date into p_duration
        from dual;
    
      -- return calculated duration
      sys.htp.p(p_duration);
    End;
    

    Step 3: Create the javascript function

    Change your page-> the function and the declaration of the Global Variable-> put the javascript function

    You must extract the rowid in the first place, for which you want to set the time, see line 2

    assuming f06, f07 and f08 is the id of the start date, and end date columns respectively, and duration

    See no line no 8 how set the value returned by the process of ajax at the duration column

    Replace your column to the respective column identifiers in the code below

    function f_calulate_duration(pThis) {
      var row_id  = pThis.id.substr(4);
      var start_date = $('#f06_'+row_id).val();
      apex.server.process ( "CALC_DURATION", {
      x01: start_date,x02: $(pThis).val()
    }, { success: function( pData ) {
    // set duration to duration column
    $('#f08_'+row_id).val(pData);
    // disable duration column
    $("#f08_" + row_id).attr("readonly", true).addClass('row_item_disabled'); }
    });
    }
    

    Step 4: choose the end date call the javascript function

    Go to report attributes-> edit your Date column end-> column-> Attrbiutes element attributes-> put the code below

    onchange="javascript:f_calulate_duration(this);"
    


    hope this helps you,

    Kind regards

    Jitendra

  • How can I get the lines for the date between 2 different days

    Hi all,

    How can I get the lines for the date between 2 different days.

    Sample data:
    Table name: Articles
    Title start_date end_date
    Heading1 08-22-2011 2011-09-11
    2011-08-01-2011-09-01 Title2
    Title 3 2011-08-21 08-21-2011
    title4 2011-08-28 2011-09-11

    Result will be:
    Title start_date end_date
    Heading1 08-22-2011 2011-09-11
    2011-08-01-2011-09-01 Title2
    title4 2011-08-28 2011-09-11

    This is my example query:
    SELECT * FROM items WHERE trunc (es.date_start) > = TO_DATE('2011-08-22', 'YYYY-MM-DD') AND trunc (es.date_end) < = TO_DATE ('2011-08-28', 'YYYY-MM-DD')

    but I can not get the expected results. Any help would be much appreciated.

    Thanks in advance

    not read your question properly before...

    Please try this

    Select * FROM items
    WHERE (TO_DATE ('2011-08-22', 'YYYY-MM-DD') between TRUNC (es.date_start))
    AND TRUNC (es.date_end)) OR
    (TO_DATE ('2011-08-28', 'YYYY-MM-DD') between TRUNC (es.date_start))
    AND TRUNC (es.date_end))

  • Navigation between the SWFs in the output of the aggregator

    The CP4 aggregator is an excellent tool again, but I need some advice on customization. Because the aggregator generates an HTML and SWF that serve as the skin for the films Captivate it loads, on-board navigation in Captivate movies (i.e. "chaining" films using "Load project" or "load URL / file ') no longer works. "Load project" fails because there is no HTML file to launch, and "Load URL or file" throw the user off course and the target SWF in the parent window. That means the user depends on the table of contents to navigate between Captivate movies.

    I hope that somebody figures a way to control the SWF aggregator since in Captivate movies so navigation between Captivate movies can be achieved with a next button or other object.

    After that play with it some more, Steve is right... Captivate movies added to a project aggregator do default Garland. Specifically, what has worked for me puts the end action 'Stop' in the project preferences, the last slide on the the exit action to 'Go to the next slide' and the next button or click action box to "continue". Works great!

  • OAF-navigation between pages

    Hello

    I need code for below exercises

    (1) by clicking on a button, another page has open (i.e., navigation between code pages using the OPS, which must carry the item values to another page). I tried this using the setForwardUrl method, but he demonstrated error like invalid characters in a url.

    (2) I need code to display the data in the table on a new page (not in a table) by clicking a button.

    can u please help me for above tasks...

    Hello

    Use pageContext.setForwardURL method to navigate to another page and for passing parameter, we can use

    pageContext.putSessionValue ("ProjectId", ProjectId);

    pageContext.putSessionValue ("ProjectNumber", ProjectNumber);

    and on the next page process controller requires entry of these settings as

    pageContext.getSessionValue ("ProjectNumber");

    Thank you
    -Anil

  • Utility FNDLOAD between two different servers

    Hi friends,
    For the phase of the UAT of our project, we have a new server (server with RedHat Linux ES4 HP).
    We need to migrate reports form the unfounded (IBM - AIX 5.3 p) server to the new.
    FNDLOAD works between two different servers?
    If not, please tell me the reason why it doesnot work between servers.
    I would also like to know if there is a way to migrate data between two servers.

    As indicated in the documentation, it does not work between servers. You export the metadata and get an output file. Then, you take the output file and transfer it to the new source. Complete with examples, including the necessary part of XDOLoader.

  • Since the upgrade to 8.0, when navigation between screens, my computer screen becomes black for 1 second before the screen is redrawn. This happens regularly and is a major nuisance. It simulates a power failure. It does not happen with IE.

    Since the upgrade to 8.0, when navigation between screens, my computer screen becomes black for 1 second before the screen is redrawn. This happens regularly and is a major nuisance. It simulates a power failure. It does not happen with IE.

    Here I answer to my problem: I upgraded my graphics card and the problem seems to have disappeared.

  • Using variables shared between the different versions of labview

    Hello

    I look at the use of variables shared between two different versions of LabVIEW. We have a 2 of the PXI system and a single PC. We are currently updating the code on the PXI system to 2014, but the PC still work 8.2.1. We now need a map of ARINC-429, which is executed only 2009 +, that is why we are to day. First tests show that shared variables do not communicate between the two. I think that the reason may be that the PXI running the version of variable motor 2014 shared, while the PC is running 8.2.1, but I don't know if it is precisely for this reason it does not work. Is there a way to communicate between two different versions of LabVIEW with shared Variables?

    Thank you!

    SOLUTION

    There are two key elements in the process of installing software that are essential for PXI to communicate with another version of LabVIEW: Legacy Server Support Variable and Variable Support of Legacy Protocol. The first, in charge of the Protocol, was automatically installed through the selection of the other ingredients (although I do not know which triggered its installation). The second has been nested in the Protocol, but was not selected automatically.

    The Protocol allows the PXI 2014 connect to shared variables hosted by devices 8.6 or an earlier versions, while the server allows before 2009 devices to communicate to shared variables hosted on PXI of 2014 (which was the initial problem)!

  • How to manage Navigation between pages using Cascades

    Hello

    I want to make navigation between the current page and new Page, I tried to use the navigationPane, but I still don't get, again, I'm new to C++, if I create a new FirstPage Class, which contains .cpp and h. files there if ranging from waterfalls, and iin the click button, I should be going to the page? Any sample code will be useful,

    Concerning

    Rakesh shankar, P

    Hello

    I have posted the solution in your other thread.

    http://supportforums.BlackBerry.com/T5/Cascades-development/doubts-regarding-the-creating-stack-of-s...

    In the future please try to stick to one thread to make it easier for others to find solutions to the problems.

    See you soon

    Swann

  • Navigation between Pages

    Hi all

    I am developing an app for z10, I have 4 pages with a lot of custom inside each other UI controls.

    But I don't have a navigation page, if anyone can help me to know what is the best way of navigating between pages?

    Kind regards

    Neo

    usually, you have a navigationPane, that is not a visible element, but is used to control the navigation (using push/pop, etc.).

    If you do not want to use one (or another like tabbedpane) you will need to control the user interface of c ++

  • How to calculate the top 100 in analytical report of obiee 11g?

    Hello

    I am creting report Analytics obiee 11g.

    I plug 5 columns, balance, status of the loan, district loantype.

    I want to display the data from the highest of 5 columns in the analytical report...

    For this report, I would like to add customized lines...

    My requiremt, I want to show the top 100 sales, the total amount outstanding

    and I want to add personal calculation as (total of balances / top 100 outstanding balance) * 100

    Please help me,

    I tried, I don't get.

    Please help me, how calculate these?...

    Thank you and best regards,

    A.Kavya

    Hello Kayva,

    First of all, must be defined, the grade you want, ask yourself, if you want to rank by period, branch etc, so you must use "RANK (according TO SIZE).

    I made a sample with the similar columns you use, please give.

    I've done 4 criteria using 'UNION' (not 'UNION ALL', not 'INTERSTECT', 'LESS'):

    And my results are:

    Check it out:

    1st test:-J' have the sum 187 157 538.57 as the sum of the top 10 projects, the Company (Empresa) and period (Mesanodocum)

    2dont criteria: -check the second line "SumaTotalProyectos" which is the sum total of society in Ene-2015 (January 2015) for all projects. Who is 211 249 318,42

    3 criteria:-check the 187 157 538.57 which is the sum of the top 10 projects

    4 criteria: -which is the percentage of it, 187 157 538.57 / 211 249 318,42 = 88.60%

    How can you put?

    1. allows you to check the criteria 1: the sum of the top 10 projects

    Check the filter of RANK

    2 to check the 2 criteria: total sum of society

    3 to check the 3 criteria: ranking of the sum

    4 to ensure criteria 4: percentage

    Note:

    As you can see I have two projects "columns", I need to get the sum of ranking, for example, you must do a ranking by branch and get the same, has twice this column to your criteria and after it allowed you to exclude.

    Kind regards

  • What is the difference between variable presentation and application of OBIEE 11 g

    What is the difference between variable presentation and application of OBIEE 11 g

    Hello

    presentation and application of variable responses only but fluctuating demand can temporarily ignore the presentation and the session variable has nothing to do with the variables of repository.

    Everything what Oracle

    Thank you

    Prasanna

  • Connect between two different applications. A call to the other application.

    I would like to know if it is possible to connect between two different applications in oracle apex IE appeal one request for the other? If the applications are allowed even say LDAP.

    Yes,

    Refer to the post office, requested by me and answered by fac586

    How to use one login for all applications in one only workspace

  • When I generate the table of contents from a new .book, I get blank pages between each page of the table of contents

    With FrameMaker 2015. When I generate the table of contents from a new .book, I get blank pages between each page of the table of contents, they are totally blank does not even a block of text. I click on Add> autonomous Create TOC. I keep the default settings. And that's what I'm left with.

    TOC Frame 2015 small.png

    I can get rid of them by special> Delete page. But I never had to do before the 2015 version. I tried with older files generated in frame 10. same thing. If someone has encountered this?

    Master Pages are part of each document.

    You can import master pages from another document (i.e. a ' model') in your current document using the file > import > Formats... option and select layout from the list (deselect all others).

    If you have changed the current TOC for the problem of the Page Master on the left, then simply save the file and use the Edit > update book option for that OCD regenerated by using the new page templates.

Maybe you are looking for

  • Cannot change Subvi

    Hello I'm trying to change an existing program of LV. There a few SubVIs that cannot be changed. However, there is no possibility of using a probe or an execution Higlighting. So I'm stuck unbale to view the stream, nor able to add indicators to see

  • Pavilion n201ax: upgrading the GPU, the CPU and the RAM of my laptop n201ax

    Maybe it's a very long post, but please answer because I really need answers to each of these questions and I really want to upgrade my laptop to the best configuration, if I CAN. Let me make this clear first. * In the next contained the words 'this

  • Search for answers

    How can I find answers to my question specific whichI presented two weeks ago?

  • 4.3 "touchscreen of the Officejet Pro 8600 Premium could be established in the Spanish language? Help me!

    I just sent an e-mail to HP support, but unfortunately they never told me anything. I need to buy a printer for trade muy and I would like to acquire the Officejet Pro 8600 Premium, but I don't know if his screen 4.3 "touchscreen could be implemented

  • repair and recovery poster error 0 * 570

    Hello Mr President! Jemy my name is. I have a problem in terms of repair and recovery Windows Vistar. When I repair and recovery there. It still shows the error 0 * 570 problem and the system cannot adapt the automated problem.