Problem Creating Hyperlink to another workbook

I am having a problem creating a hyperlink to a worksheet in another workbook.
Here is what I have done:
Created the master and detail reports in 2 different workbooks.
Executed the master worksheet to display the data
Right clicked the field in the first row where I want to create the hyperlink, and chose Manage Links
Clicked the New Link button
Chose Worksheet for Where do you want to link to?
Clicked Browse by the Destination Worksheet
Clicked the detail report from the list of workbooks but the select button is grayed out
Does anyone have any idea why it won't let me select the detail report to link to?
I have OracleBI Discoverer Plus 10g
Any suggestions would be deeply appreciated.

Yes, I did add a parameter to the detail report so that I could get detail just for that one item. The part that is giving me trouble is specifying the Destination workbook/worksheet. I see the detail report when I browse but the Select button is grayed out so I haven't made it to the part where you identify what values to pass to the detail report yet.

Similar Messages

  • Creating Hyperlink to Another Report in Same Document

    Hi
    Is it possible to create a hyperlink from a cell in one report, to another report in the same WebI document, that doesn't involve the entire reloading of the document.
    Also, I want to be able to pass through a filter value.
    The reason for the request is we have a report which list certain information about an article. The 2nd report (still in the same WebI document) lists all sorts of other information about the article. The 2nd report contains a lot of information about the article, which doesn't make sense including in the 1st report.
    I can create a hyperlink on the article number, which uses the OpenDoc functionality to reload the report and navigate to the 2nd tab (report). If the article number is provided as a prompt on the query, then the data is filtered according to the selected article. That works, but it is not nice, as the report has to reload, and when you click on the tab to go back to the 1st report, that article prompt has been applied there as well.
    To get rid of that last error, we could conceivably create 2 queries, 1 for each of the reports, and only have the article input prompt on the 2nd query ... getting messy though.
    I would prefer to pass the article number and have that applied to the filter on the 2nd report ... doesn't seem possible in OpenDoc format though, unless I just can't find the querystring parameter to use.
    Is there not a way of linking to the tab, without reloading the whole document?
    Cheers,
    Andrew

    Hi Andrew,
    try getting the parameters to be displayed in a cell and use the parameter lsS or lsM(for multiple values) and pass the parameters to report 2 using openDoc.
    The document here lists the options with openDoc,  might be helpful otherwise
    http://help.sap.com/businessobject/product_guides/boexir31SP3/en/xi31_sp3_opendocument_en.pdf
    Thanks,
    Rajesh

  • How to create hyperlink in BEx workbook?

    All, I have 2 queries in a BEx workbook on 2 different worksheets. Both queries have 0materials in the row. The user wants to be able to click on material XYZ in worksheet 1 and then be directed to the corresponding line (i.e. for that material XYZ) in worksheet 2. Is this possible to do via a hyperlink?
    Cheers!

    Cheers but a simple hyperlink will not do. I need to link to the same material number in a different worksheet. So in worksheet 1 I have for example the following lines
    Mat nr
    123
    333
    444
    555
    in worksheet 2 I have lines
    Mat nr
    904
    768
    123
    333
    444
    555
    If I click on 333 in first sheet I want to jump to the line with material 333 in worksheet 2.

  • Feature Request: The Ability to create hyperlinks to another program

    Hi,
    I am hoping someone at Apple reads this! I have a program I use called Logos 4, and it works with both a Mac (or yuck a PC) on the PC side they have the ability to do this http://www.youtube.com/watch?v=wZMW1Mw3ZgI in PowerPoint. I would like to be able to do the same type of thing with Keynote. Is there anyway to make this possible. Thank you!

    Click here and fill out the form.
    (53872)

  • Problem in create Hyperlink

    Hi All,
    I create hyperlink by finding http and www in my active document.                //Works well
    But the problem is, if the url or websites contents coming twice or above then I found error   //not able to create hyperlink source with the same name
    i.e., www.gmail.com (comes 2 or more time in the document, then the below code is not working fine)
    var myDoc = app.activeDocument;
    app.findGrepPreferences = app.changeGrepPreferences = null;
    //Find http and www
    app.findGrepPreferences.findWhat = "(?i)(http|www)\\S+[\\l\\u|\\d]"
    var myFound1 = myDoc.findGrep();
    count = 0
    for(k=0; k<myFound1.length; k++)
        var myFind = myFound1[k];
        var myHyperlinkSource = app.activeDocument.hyperlinkTextSources.add(myFind)
        var myHyperlinkURLDestination = app.activeDocument.hyperlinkURLDestinations.add(myFind.contents)
        var myHyperlink = app.activeDocument.hyperlinks.add(myHyperlinkSource, myHyperlinkURLDestination, {name: myFind.contents})
    //    var myHyperlink = app.activeDocument.hyperlinks.add(myHyperlinkSource, myHyperlinkURLDestination, {name: myFind.contents+count++})
    Please find the screenshot for your more references.
    Please help to find the solution.
    Thanks in advance
    Beginner_X

    I solved this problem by adding an incrementing number in round brackets if a hyperlink name is already taken.
    Another (simpler) solution is to put "add hyperlink" line into try-catch block, but in this case you'll have a default name if the error occurs.
    Here's the function:
    function MakeHyperlink(text, url) {
        if (url.match(/https?:\/\//) == null) {
            url = "http://" + url;
        url = url.replace(/\.$/, "");
        var name = text.contents;
        var oriName = name;
        if (doc.hyperlinks.itemByName(name) != null) {
            var increment = 1;
            while (doc.hyperlinks.itemByName(name) != null) {
                name = oriName + " (" + increment++ + ")";
        try {
            var dest = doc.hyperlinkURLDestinations.itemByName(name);
            if (!dest.isValid) {
                dest = doc.hyperlinkURLDestinations.add(url , {hidden: true});
            var source = doc.hyperlinkTextSources.add(text);
            var hyperlink = doc.hyperlinks.add(source, dest, {highlight: HyperlinkAppearanceHighlight.NONE, visible: false});
            try {
                hyperlink.name = name;
            catch(err) {
                //$.writeln(err.message + ", line: " + err.line);
            if (hyperlink.isValid) {
                hypCount++;
                if (set.tempColors) source.sourceText.fillColor = swatchOK;
                if (set.charStyle) source.appliedCharacterStyle = charStyle;
        catch(err) {
            errorsCount++;
            var swatchProblem = MakeSwatch("===== PROBLEM =====", {
                model : ColorModel.PROCESS,
                space : ColorSpace.RGB,
                colorValue : [255, 0, 0]
            text.fillColor = swatchProblem;
            //$.writeln("Error message: " + err.message + ", Line: " + err.line + ", URL: " + url);
            arr.push("Error message: " + err.message + ", Line: " + err.line + ", URL: " + url);       

  • How do I create a hyperlink to another file?

    How can I create a hyperlink to another file on my Mac?

    Do you really mean "Hyperlink" as in a web page link to your file?
    Or do you want a Mac OS X Alias icon placed in a different folder or on your desktop to a file?  Hold Command-Option keys while dragging the file to a new folder, will create an Alias.
    Or perhaps a Unix Symbolic Link (similar to a Mac OS X Alias, only different).  This is done from a Terminal session using "ln -s /path/to/your/file /path/to/folder/where/symlink/to/be/placed"

  • Problem with creating site from another computer!

    Hi
    I have WebDB 2.2 and Oracle8i instaled on the same computer. I have a problem to create site from another computer. There is not any process when I try to create site. There is always 0%.
    But I have no problem with creating site on the origin computer.
    Does anybody know something about it?

    I am just not clear what to do once I have made changes and have published the new information.
    You shouldn't have to do anything. iWeb will save the information in the Domain.sites file. You can keep this file in a folder, or even on your desktop and iWeb will launch from a double-click on the file.

  • I'm exhausted of trying to find a solution to a problem created by Apple. I have moved to iCloud, following your instructions and now I can not use my mobileme e-mail address. How can I contact directly with Apple, not just an automatic reply phone number

    I'm exhausted of trying to find a solution to a problem created by Apple. I have moved to icloud following all your instructions and now I can not use my mobile me e-mail address. I can not activate icloud because when I put my e-mail address it answers that somebody is already using my address. I have my old e-mails, but I can not receive any e-mail or send them.
    I have contacted Apple Technical Support in Spain and I was sent an e-mail saying that I have to call a phone number and when I call it is always an answering machine who answers that says that I have to pay 50€ for a consultation or wait for 10 minutes. When I have made the consultation it was never mentioned that I have to pay 50€ for a phone consultation. If I don't want to wait I have to pay for the Apple Tecnical Support which cost 250 €, this was not mentioned in the technical support page.
    Can somebody let me know how can I contact Apple in another way in order to talk with a human being or chat directly? I was very happy just using my mobileme e-mails, I didn't need any clouds and I was force by Apple to registered if I want to continue using my mobileme e-mail address.

    Sandra,
    See this Apple support document for information on reporting an issue with your iTunes purchase.
    http://support.apple.com/kb/HT1933
    B-rock

  • How to automatically create hyperlink destinations based on numbered list?

    I am very new to InDesign and am creating a template for an academic journal. Each article contains a list of references at the end and the references are cited in the main text (like what you see in Wikipedia if you are not familiar with scientfic journal articles). In exported HTML, the citation in the main text should be hyperlinked to the coressponding reference in the reference list. I have two questions:
    1) It is possible to ask paragraphy style to assign each numbered item a hyperlink destination? If this is possible, I can then manually inserted hyperlinks in the main text.
    2) one step further, is there any way (e.g. script) which can then insert hyperlink to those destinations based on pattern match? For example, in main text, the citation to reference #1 appear in the text as [1] which should be hyperlinked to reference #1.
    One more question, is there anyone who knows how academic journals handle the flow from InDesign to html? Certainly, the exported html cannot go directly online without further editing.
    Thank you.

    Hi Eric,
    I posted the script here. But it should be adjusted to your particular document. (Anyone with basic scripting knowledge can do this). I am sure it won’t work as it is. I assume that “comments” and “references” are in two different stories.
    Can I have the scripts from you (for a fee or free)?
    I don't sell my scripts: they're free.
    Can the scripts handle the pattens like these [3], [1-5], [3,4], [6, 8, 11-13]?
    This script can't, but another handles both single page numbers and page ranges like so:
    I can post it as well.
    Now I’d like to make one thing clear:
    I made a set of scripts for creating hyperlinks in InDesign documents for further exporting them to ePub/HTML. I can’t make a script that would work for everyone because all books are very different. I simply adjusted scripts for every book I had to work with (mainly changing GREP expressions and names of styles) and I have numerous variations of scripts. I can post them if someone is interested but you should be aware that they have to be reworked.

  • Is annotation for a hyperlink to another video is possible from the original video?

    hi there,
    i have been working on Adobe Presenter trail period for a while and thanks to adobe it's a tremendous help.  i have a doubt- is it possible to hyperlink to another video from the original video.
    i.e after creating a video i want to integrate another video into the original one through an annotation that will be displayed on the original video which provides a link for my second video.

    Thank you, Ian. That sub-menu is what eluded me all right. It certainly seems to me to be one way I can do this: using the Paste Formula Results sub-menu under Edit. But before I copy the cells as you say, I will have to take several prior steps.
    In the new sheet I have to select the top left cell of the subject range and there enter "=". Then, in the original sheet, I must select the corresponding cell. Returning immediately to the new sheet, I need to drag the cell right to extend the formula to two adjoining two cells. Now I need to drag those three cells to extend the formula to the bottom of my table (quite a number of rows, but the number matches that of the original sheet). Only at this point am I in a position to apply your suggested method: that is, copy what's already selected and use Shift-Command-V to paste the formula's result throughout the range.
    I feel sure that will do it. But if anyone has any further suggestion as to how this could be done less cumbersomely, I would be very happy to hear it before I embark on the task ahead - because that will have to be repeated for another 24 new sheets in a couple of files. Quite a lot of work.
    So, whilst you've helped me materially, a question still remains as to whether some other method might be possible?
    Regards,
    Peter White

  • Problem with hyperlink to a file

    Hello!
    I have created an interactive pdf that is intended to be our interactive Table of Contents for our server. The files listed in the table of contents are linked to the files that are on the server. I thought that hyperlinks to files directed the file to open in its native application? If this is in fact the case, then I'm not sure what I am doing wrong because my files are opening with Chrome/Internet Explorer/Firefox. I would really like these files to open with their native application, so if anyone can offer some help that would be awesome!
    Thank you :-)

    It should work, though Indesign can not create hyperlinks in PDFs that link to actual files (action "Open file"), but only link to web adresses starting with file: protocol handler.
    Means, if you export your PDF from Indesign, no matter if Print or Interactive, and then open in Acrobat and check the hyperlink properties, it says "Open hyperlink". If you click it, it is handled depending on you system settings. In your case, files open in browser. In my case (tried with linking PDF to PDF), it worked as expected.
    But you could edit the link in Acrobat to "Open file" and voila - it works. Problem is, it is annoyingly cumbersome to edit every link in Acrobat.
    I just tried to avoid hyperlinks to files in my documents.

  • Problem Creating Internal pdf Links In Preview

    I am trying to create internal links in a pdf file within Preview. When I "Set Destination" to a particular page within the file, the link always goes to the page after the one I set. The strange thing is that when I view the same file on a Windows PC it works right. Any ideas how to fix?

    Did you ever find out why this happens? I am having the same problem and so is another mac user I know. We can't figure it out!

  • Problem creating transactional iview for BW system

    Hi gurus
    We are facing one problem creating a transactional iview for a BW 3.5 system . We wanto to call transaction SU01 in our BW system using an iview. When we use SAP for html, we have all the menu on the iview , I mean the same result as if we use smen, not SU01.
    And if we use SAP GUI , we are always having the same GUI Error
    Sapgui 640 [Build 8986] Wed Apr 01 12:25:05 2009
    : 'service '' unknown
    Time          Wed Apr 01 12:25:03 2009
    Component     NI (network interface)
    Release          640
    Version          37
    Module          ninti.c
    Line          505
    Method          NiPGetServByName2: service '' not found
    Return Code     -3
    System Call     getservbyname_r
    Counter          1
    Please, can you help us?
    Thanks in advance and best regards.

    Thanks Bala for your quick reply. I´ve tried with function module RSBB_URL_PREFIX_GET  and all the settings were OK. Still the same result.
    Adding more information. We have another WAS 6.40 server with different Module(we have RM and XRPM , not BW) and we are having the same problems. I am wondering if its related with some special config or activation 
    Maybe  I´ve forgot some service activation in SICF? I´m able to reach the SMEN, but not the SU01
    or I´m missing some config elsewhere?
    Thanks in advance.
    Best regards.
    Edited by: Jose Ignacio Arlandis on Apr 2, 2009 8:41 AM

  • Problems creating an spatial index with srid=4326

    Hi!
    I would like to know if somebody can help me with the following problem: We are using the 10.2.0.1 version and we need that our SRID value is 4326. We do not have problems with 8307 or another value. However, when we tried to use srid = 4326, appears the following error message:
    Error on line 17 CREATE INDEX SIDX_D3M_SDO_GEOMETRY ON DAT_3DM_MODEL (DM3_SDO_GEOMETRY) INDEXTYPE ORA-29855: an error in the execution of routine ODCIINDEXCREATE has taken place ORA-13249: internal error in Spatial index: [mdidxrbd] ORA-13249: Error initializing geodetic transform ORA-06512: in “MDSYS.SDO_INDEX_METHOD_10I”, line 10
    The PL/SQL that we used is the following one:
    DELETE FROM USER_SDO_GEOM_METADATA WHERE TABLE_NAME = “DAT_3DM_MODEL”
    COMMIT
    INSERT INTO USER_SDO_GEOM_METADATA (TABLE_NAME, COLUMN_NAME, DIMINFO, SRID) VALUES('DAT_3DM_MODEL', 'DM3_SDO_GEOMETRY', MDSYS.SDO_DIM_ARRAY ( MDSYS.SDO_DIM_ELEMENT ('LONGITUDE', -180, 180, 0,05), -- MDSYS.SDO_DIM_ELEMENT ('LATITUDE', -90, 90, 0.05) ), 4326 )
    CREATE INDEX SIDX_D3M_SDO_GEOMETRY ON DAT_3DM_MODEL (DM3_SDO_GEOMETRY) INDEXTYPE IS MDSYS.SPATIAL_INDEX
    Thanks in advance,
    Susana.

    I cannot reproduce the error, in my environment. However:
    Your insert statement into USER_SDO_GEOM_METADATA appears to have included some typos. They might have happened, when transcribing. Please make sure you use the following:
    INSERT INTO USER_SDO_GEOM_METADATA (
    TABLE_NAME,
    COLUMN_NAME,
    DIMINFO,
    SRID)
    VALUES(
    'DAT_3DM_MODEL',
    'DM3_SDO_GEOMETRY',
    MDSYS.SDO_DIM_ARRAY (
    MDSYS.SDO_DIM_ELEMENT ('LONGITUDE', -180, 180, 10),
    MDSYS.SDO_DIM_ELEMENT ('LATITUDE', -90, 90, 10)),
    4326);
    However, the actual culprit is most certainly different. As I suspected, it might be related to the "decimal comma": In Germany, for instance, a decimal comma is used, instead of a decimal point. You have used a decimal comma in your original INSERT, as well (0,05 instead of 0.05).
    Please try the following:
    SQL> select wktext from cs_srs where srid = 4326;
    WKTEXT
    GEOGCS [ "WGS 84", DATUM ["World Geodetic System 1984 (EPSG ID 6326)", SPHEROID
    ["WGS 84 (EPSG ID 7030)", 6378137, 298.257223563]], PRIMEM [ "Greenwich", 0.0000
    00 ], UNIT ["Decimal Degree", 0.01745329251994328]]
    On your system, you will likely find a decimal comma, where my output has a decimal point. This is bug 5097326, which has been fixed, and backported to 10.2.0.3 and 10.2.0.4.

  • Creating hyperlinks in form region

    How can I create hyperlinks in the form region.when clicked on hyperlink it should take to a different page.Thanks in advance.

    Jari,Thanks for your help.
    The form is not a tabular one. For exapmle I have couple of items say username and password. Below the username I would like to place a hyperlink.Similerly I would like to place another hyperlink below the password. how can I do that?
    I tried to create a text below the username filed using the display item.How can I hyperlink the text so that it can take to another page?

Maybe you are looking for

  • How to recover mail from time machine

    I need to recover all my emails - thousands of messages in numerous mailboxes - from Time Machine. What is the best way to do this?

  • Differences between MDM 3.0 and MDM 5.5?

    Hi, Can anybody tell, what are the differences between MDM 3.0 and MDM 5.5? I heard that, there are lot and lot of changes... Thanks for your reply, regrads, cg

  • Question about Filters in Java.

    Hello , I want to make a filter over a JTable , so that data that appears in the JTable is filetered with the characters that are typed in the Field , each time a new character is entered the table is filtered. What can I use to make that happen? Tha

  • Help? wayyyy to many choices...

    Hey guys ok i just kept looking here theres MILLIONS of cameras obiously but this is a question how do you know witch one suits you and witch one you should get when it comes dfown to the finals..... all i know is read reviews goods bads etc... anywa

  • Java inherited static operations on static variables

    How does one force a static method in a base class to operate (read/modify) on static variables in the base class and all of its subclasses ? From what I've seen, static methods aren't truly inherited; just invoked from the sub-classes within the sup