Navigate in the same section...

I have a report and one column I have navigation..If I click and navigate to other report,the other report is showed in other window....I want to show it in the same section in the same window...How can I do that?

Hi,
The feature drill in place works for the navigation also if we call the report through an iframe in the narrative view with the parent report as source for the iframe.
expamle iframe would be
<IFRAME src=http://client50:9704/analytics/saw.dll?GO&Path=/shared/Naresh/MAPS/drillreport2 name="frame1" height='380' width='650' FRAMEBORDER=0></IFRAME>
If we include this code in the narrative part of the report layout we can achieve the drill in place feature for the navigation.
Explaining the process
1. Create a report and save it to the shared folders.
2. Go for the narrative view for that report and add the above iframe code, and save it .
Note:- Don’t add narrative view in compound layout. save the narrative as it is.
3. Place the report in the dashboard and after placing the report in a section go to the properties tab of the report. In the show view change the default compound view to narrative view.
4. Save the dashboard.
Hope would meet the requirement.
Thanks Regards
Naresh Meda

Similar Messages

  • Two reports in the same section

    Hi all
    I would like two have 2 different reports in the same section one near to the other (not bellow).
    The dashboard page should look like
    Section1
    prompt
    report1|report2
    is there a way to do that cause I only could add sections vertically and horizontally (not able to put a report next to the other in the same section)??
    Regards

    Add both reports to the same section and click on 'Properties' button on section header. Check "Arrange Horizontally" and both the reports will be displayed side by side.

  • Is there a way to display folders differently in the same section?

    I'm trying to change the view options in my folders, so that the subfolders in one folder don't display in the same way as the main folder. For instance, I'd like my music folder to display the artists with medium size icons, but when I click into an artist,
    I'd like the albums to have the list format, not the medium icons. I've looked around but haven't been able to word it effectively enough to get an answer, I guess. Does anyone know if this can be changed?
    Thanks

    Hi,
    If you want to have a better experience of your music files, how about just use WMP to enjoy all the songs, you can
    sort by Artists or Album or whatever you like. There, you can have a better and easier way to organize all your music
    files.
    For Windows Explorer, did you mean
    medium size icons in artist, while list icon in albums, you can just organize as you want like the following screenshot.
    If I'm missing something, please free contact me.
    Regards
    Yolanda
    TechNet Community Support

  • How to group Table and Graph in the same section in OBIEE 11g

    Hi,
    I have a requirement of showing the table and graphs together for various products in different section. For example, for Product A, the table and graph would be displayed together and after product A, the table and graph for product B should be displayed.
    I have tried using section but it creates the seperate section for tables and Graphs. Is there a way that we can put the section on table and graph together.
    Thanks.

    By any chance are you using a pivot table? If so, you can "Graph Pivoted Results". (When you're editing the pivot table, it's the last button at the top/middle of the page.) Then you can use the products column to break the pivot into sections and you'll have a pivot table and graph per section.
    JB

  • How do I edit/delete the same section of multiple tracks?

    Basically I'm doing a podcast with multiple voice tracks. Once I sync and line everything up, I still have sections of audio I want to take out. But obviously with the tracks synced, I need to delete it from all of them at once and have the audio "snap" back in place. How do I accomplish this?

    Enable the "Arrangement Track" and define arrangement regions. Then you can delete and move regions across all tracks at once.
    See: Edit Arrangement Regions
    Regards
    Léonie

  • Hi, I'm not able to transfer my music in the library of the tunes from the same section of the tunes On Iphone

    Please can you help me?

    You can't drag songs (or other content) from a device back to a computer's iTunes. For music purchased from iTunes you can do File > Devices > Transfer Purchases to copy them back. For music from CDs or bought from other sites you will need to use a third-party program on your computer to copy them back (after you've copied them back you can then add them into your iTunes library via File > Add To Library) - there are some listed half-way down the document that I linked to : https://discussions.apple.com/docs/DOC-3991
    There is also this page for syncing to a new computer : https://discussions.apple.com/docs/DOC-3141

  • PL/SQL web service--all users share the same database session

    Hi, Is anyone else running into this? If I set a package variable in a pl/sql package through the web service from one client and then connect with another client, I can see the value of the package variable set by the first client. So it appears that instead of being 'stateless', as the documentation claims, that all users are actually connecting to the very same session--and sharing the same memory and variable values.
    When I test my application by myself, I don't run into any problems. But the application I'm working on allows over 1000 students to select dorm rooms concurrently. The timing for that large a group is fine enough that I do have more than one person executing the same section of code simultaneously. This is a serious problem! I'm going to try using pragma serially reuseable on my packages to see if that will take care of it.
    Has anyone else run into this problem? What do you do about it? Is this an issue with the web service? Or the application server?

    Hello!
    I have a question. You seem to be getting somewhere. In the reference (in your post) there is no mention of web.xml Is it a generated file or a file created by you? I am getting IOException error when generating EAR file. What could be wrong? Please help
    TAI
    habeeb

  • Is it possible to read and write to a file at the same time and display the results in a RichTextBox?

    Hi All,
    I have a purpose in winforms to have a "notepad like" editor that saves what ever i type to a file on the hard drive and reads from based. 
    So what i have is a tab with a richtextbox docked to fill. I would like to have that richtextbox read from a file on the hard drive, then save the changes i type when i either click off the tab or live if possible.
    I wills state that i am fairly new to the c# game and if this is possible and someone could post an example that would be awesome and totally appreciated.
    Thanks,
    jAC

    For those that are looking for the solution I went with here are the details
    Reading the file:
    // Wish List Section
    wishListRichTextBox.ResetText();
    string wlFolder = Application.StartupPath + "\\wishLists\\";
    string wlPath = wlFolder + selectedProduct + ".rtf";
    // Read from the text file and out put the results
    try
    { // create directory if it does not exist
    if (!Directory.Exists(wlFolder))
    Directory.CreateDirectory(wlFolder);
    } // create file if it does not exist
    if (!File.Exists(wlPath))
    File.Create(wlPath).Dispose();
    var iStream = new FileStream(wlPath, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
    var sr = new System.IO.StreamReader(iStream);
    var readData = sr.ReadToEnd();
    wishListRichTextBox.Text = readData;
    sr.Close();
    // If the read fails then output the error message in the same section
    catch (Exception ex)
    wishListRichTextBox.Text = "Error: " + ex.Message;
    Writing the file:
    private void wishlistTabChanged(object sender, EventArgs e)
    if(menuTabControl.SelectedTab != wishListTab){
    if (productComboBox.SelectedIndex >= 0)
    try
    string wlFolder = Application.StartupPath + "\\wishLists\\";
    string wlPath = wlFolder + productComboBox.SelectedItem + ".rtf";
    var oStream = new FileStream(wlPath, FileMode.Open, FileAccess.Write, FileShare.Read);
    oStream.SetLength(0);
    var sw = new System.IO.StreamWriter(oStream);
    sw.WriteLine(wishListRichTextBox.Text);
    sw.Close();
    catch (Exception ex)
    MessageBox.Show("Wish list for " + productComboBox.Text + " save failed. \n\nError: " +
    ex, "Wish List Save Failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
    I mainly used Ammar.Zaied thought
    process on this. Thanks to everyone though, as you all pointed me in the right direction

  • How Can I change a report with base in another in the same dashboard?

    Hi,
    I need to publish two reports in a dashboard, the first report is a list of values and the second report is a chart. When I click in a value of the first report, the second report must change with the value selected from the first report.
    I first created the first report, and I changed the column properties in the data format, I selected treat text as: "Custom Text Format", the Custom Text Format is:
    @[html]"<f ont class=Nav oncl ick=\"Ja vaScr ipt:GoNav(event, '/path/reporte2','TABLE','FIELD','"@"');\">"@"< /fo nt>";;@
    The second Report has the next filter: FIELD is equal to / is in @{NQ_SESSION.@}
    With this the first and second reports works well, however, when I include the two reports in dashboard, the second report is updated in another window not in the same section.
    How Can I change the second report in the same page or section where this the first report?
    Thanks
    Edwin Guerrero

    I am not sure whether this would work but worth a try. Create a third report which would call the 2nd report using iframe and GO URL. Name the iframe of the narrative view. And use the java script to update the iframe using objWin = window.open(<ur go url>, “biee”,”height=480,width=240,scrollbars=yes,resizeable=yes”);. I had used a similar method to integrate biee with mapviewer. You can check it out here http://oraclebizint.wordpress.com/2007/09/26/oracle-bi-ee-10133-and-mapviewer-step-by-step-integration-phase2-and-phase3/
    Thanks,
    Venkat
    http://oraclebizint.wordpress.com

  • Hyperlink on html to a word document does not navigate to the bookmark

    i am trying to navigate to a word document bookmark from an html page
    <p><a href = "file:///D:\temp.docx#my_bookmark">my_bookmark</a></p>
    When we click on the link, we get a pop up from internet explorer asking "What do you want to do with temp.docx?"
    When, we click on "Open", the work document opens up but does not navigate to the bookmark.
    i am able to navigate to the same bookmark when i create a hyperlink inside another word document
    ie. navigation from one word document to another work document bookmark works.
    i am using windows 7  , microsoft office 2010 
    Thanks for your Support

    Hi,
    After adding this link into your HTML page, did you check the URL of the link in browser? Did you see the complete URL with the
    #my_bookmark at the end?
    It should be a query about HTML code, there is not so much we can do on Office client side. For your case, I would suggest you post in the MSDN forum of
    Word for developer, where you can get more experienced responses.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Jsf VS wcm servlet- combine JSF & WCM tags in the same page

    Hey all,
    I wanted to get to you a problem I've encountered and see if you can direct me.
    Note: I found a way to work around the problem, we will see later -
    but this will not bring me to full integration.
    The problem arises when I create a region\page template file in the ucm system and make use
    of - (Jsf component (for example: h: outputpanel.
    In this situation, there are two servlets in the web.xml file that mapping of
    url which comes.
    1. wcm site template servlet that maps tree placement (that is when I
    went in url to the servlet
    http://localhost/application-name/context-root/section1/index.html
    know to map the url to the template defined tree under the same
    section.
    2. jsf servlet - when i used jsf components.
    When I turn to the page for wood and is defined in the UCM, the jsf
    servlet does not handle the request and therefore I get an error: Can
    not find facesContext.
    The problem: Can we find a way to make 2 the servlets work together
    and perform this mapping for us? Is there a way or example of a jsf
    page which can be combined with the ucm system defined tree (this
    detail is important, because if I just set up a page in application
    and came back to it, not through the tree can I combine Jsf -It's
    important for me to do it in the form submitted by the link mentioned
    above).
    Note: I found a roundabout solution like I mentioned, working with the
    iframe as separate jsf pages and read them from a page in the system.
    While this solution meets the requirements but still ran into some
    combinations between the two issues resolved was not trivial.
    I'd appreciate it if somebody could help \ guide me to resolve the problem.

    Thanks a lot for your answers.
    I just want to clear my point, the real problem is when i want to define in my site's tree(at jdeveloper) page X for Section SX
    but page X should include jsf tags.
    When we defined page(region template) in section properties placeholder, meaning at the site's tree, the explorer will show the page as http://machinehost:7001/context-root-site/sectionX/index.html.
    Each page in the site tree will had this pattern, therefor when we add a jsf tags to our page there is a conflict between the servlets (Faces VS WCM)
    because that jsf servlet could'nt map this url to faces url and i got faces context Error.
    I am just trying to clean my point, so it's not relevant to contributor mode...
    i just want to know for sure that there is no way to define region template at site tree for section X with jsf tags.
    I will very glad to know yours opinion about my solution- working with iframe, meaning that the page at site tree will include iframe to jsf page which exsit in the application. this solution solved the conflict problem because i have now two pages.
    thanks you again,
    Regards
    Eran zizler

  • Assign same Section Code to two Business Place

    Hi
    We have a scenario, where in there are two Plants in the same state and the same legal entity and one TAN Number. we would need a single Section Code for the TAN Number. However, for evey plant there should be only one Business Place. Can we assign the same section code to two Business Places. What would be the effect on the returns?
    Regards
    Sanil Bhandari

    HI Sanil
    What i understood that you have created two business place and some are coming under one section code,actually this is normal scenario there will not be any effect on return as well as certificate printing also coz you have to run the return program on section code basis not on the business places.
    Hope it will help you.
    Regards
    Dipak

  • When I try to go on the internet with my iPad 2, the whole section is greyed out.  I can see the webpage, but can not navigate any further.

    When I try to go on the internet with my iPad 2, the whole section is greyed out.  I can see the webpage, but can not navigate any further.  I do have wifi access, though.

    Try:
    - A reset. Nothing will be lost.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears
    - Power off and then back on the router
    - Reset Network Settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections

  • How to get Report Builder to print a section on the same page

    I have a section of my report that is three bands. A header
    band, the detail band, and a total line band. Sometimes this
    section will get split up and print part on the next page. So
    basically I need for this section to print on the same page. I know
    that I could insert a page break right above the header, but this
    will make my report way longer than it needs to be. I have also
    unchecked "split allowed" for that band also but that didn't make a
    difference. Is there some way to group three bands together so that
    if it is two big to print the section on the current page then
    print the whole section on the next page. It is driving our
    accounting lady nuts because when she likes to verify that the
    totals are coming out right and sometimes she has to flip over to
    the next page to continue calculating.

    you need to create a multi-instrument in the environment next to your audio-instrument,then push a cable from there to your audio-instrument.in the arrange window your multi-instrument will appear in the window where you select the track-type next to the audio tracks, audio-busses etc. these midi tracks now trigger your vsti on the selected midi channel.you have to record your midi now on these tracks and not on the audio-instrument track,because there you only trigger its own channel. i hope i explained it well but i think you have understood what i ment.

  • My phone has the correct AppleID in the in settings section but asks me to login with one that isn't mine.  I deleted the ID from my itunes but it still won't let me login with mine. How do I get my iPhone on the same page?

    My iphone4 has the correct Apple ID in the information settings section and asks me to login to my ID most of the time but when I try to update my apps, it asks me to login with an ID that isn't mine.  I deleted the wrong ID from my itunes but it still won't let me login with my own ID to update apps.  How do I get my iphone on the same page?

    How did you obtain these apps? All apps are DRM protected & tied forever to the account used to originally obtain them. They cannot be transferred to another Apple ID(account), nor can they be updated using any Apple ID other than the one that was used to originally obtain them.

Maybe you are looking for

  • Can't revert to ical backup  database

    I backed up my ical database, when I tried to open it up again it on a different computer it doesn't open up. It gives me a massage Revert failed. I've started to save my address book on a yearly bases and i need to look up appointment from last year

  • ITunes/App Store account got hacked...what about my money?

    Hey guys, i'm in a really bad situation right now and I hope you guys can feel a little empathy for me... So, I traveled for 3 day and when I got home, the first thing I checked was my email and there it was a huge app store billing telling me that I

  • Help moving photos from starter edition 3.2 to Elements 11

    How do I move photos from Photoshop starter edition 3.2 to Photoshop elements 11?

  • 7303033 Patch failed

    Hi we are upgrading our instacne from 12.0.6 to 12.1 and then 12.1.2 all steps to make Base Release for 12.1 is done sucessfully when we apply patch 7303033 to upgrade 12.1 to 12.1.2 the patch error out here showing the Autopatch logfile ************

  • Restore one full backup(need to move), 1 differential backup,2 transaction log backup

    Is following script correct? I don't need to add "move" when do restore differential, log later. Correct? RESTORE DATABASE AdventureWorks FROM DISK = 'C:\AdventureWorks.BAK' WITH MOVE 'Adventureworks_DB' TO 'C:\test\Adventureworks.mdf', MOVE 'Adventu