OpenDocument/Document Link DNS Redirect

Hello,
We have changed the URL Redirect of BI4 Installation <BO sever>:Port/BOE/BI to an alias example "xyz".
However, when we rightclick on the BO Document and click on Document link, we get the FQDN:port number. What we'd like is that it would replace it to:  http://xyz/BOE/OpenDocument....
How should I achieve this result?
I've searched a lot regarding this, but cannot find the solution. Maybe I am not looking in the place.
Thank you for your help.

go to CMC, Applications, Open Document, Right-click, Processing settings -> Update the new server name there.
Best regards,
Victor

Similar Messages

  • Web Application Designer - Redirect document link to external documents

    Dear all,
    within a Web report we actually show document links (master data) by setting the parameter
    DOCUMENT_ITEMS_MASTER_DATA in the corresponding Web Template to 'ON'.
    Clicking the document link icon the corresponding document out of the BW document store is shown
    This is standard.
    We now want to replace this functionality by presenting documents (one per master data entry) stored on the application server of the BW-system in a separate window; means - a click oh the document icon shall lead to an 'external' document.
    Is it possible to do this (f.e. using Javascript ?!)
    Thanks in advance
    Hagen

    Dear Hagen,
    I saw, that you worked and solved by your own the topic in
    http://scn.sap.com/thread/2066463
    Could you provide your solution--- we have the same request ( do not broadcast empty queries with empty results)
    Thanks,
    Thomas

  • Can't log into BOE system using SAP Authentication when using Document Link

    Hi all.
    We are setting up our dev SBOP 4.0 SP2 system and are working on getting everything configured to our requirements.
    What I am currently struggling with is the Document Link functionality.
    If you browse to a document (WEBI or Crystal) in the folder view in the BI Launchpad and right click and select Document View, the system presents a static link to the report. The problem is, when I execute that link in another browser window, the system prompts me with the default login screen that consists of the User Name and Password which utilizes the Enterprise authentication by default. Our login authentication is set to SAP everywhere else.
    I've already set the parameters for BILaunchpad.properties to allow us to log into the BOE server using our user IDs and that works without a problem. I've also configured the OpenDocument.properties file as well. Neither of these two files seem to have any impact on the screen I'm seeing when I try to use the Document Link. (And yes, I've restarted the tomcat server each time I've made a change to the config files.)
    I'm running out of ideas - have any of you encountered this issue before and do you have any suggestions?
    Thanks.
    -Brian

    Hi,
    i saw this also a couple of times that the changes to the "custom" folder wont take affect.
    Try the following:
    1. Stop the Tomcat
    2. Rename the properties file in the custom folder
    3. take a backup of the properties file from the config folder
    4. make the changes to the properties file in the config folder
    5. start tomcat
    Maybe this will solve the issue but if you deploy a new Fix Pack or Service Pack these Settings will get override.
    If this solved your problem i would recommend you open a Support Message with the SAP Support.
    Regards
    -Seb.

  • Authentification Open Document Link

    Hello
    I'm using WebI in BO Edge with SAP authentification. The Report has an open document Link to a Crystal Reports. The Databas configuration of this Report (CMC) is set to SSO.
    When I stert the WebI and click on the Link, a window pops up with a logon prompt.
    I it possible to avoid this second authentification?
    Regards
    Alex

    Hi Stratos
    Thx for your answer.
    I am using the hostname directly.
    Over CUID:
    http://boeserver500:8080/OpenDocument/opendoc/openDocument.jsp?siDocID=8811&sType=rpt&lsSZ_POSID=([param_value])
    Or over Document Name:
    http://boeserver500:8080/OpenDocument/opendoc/openDocument.jsp?sDocName=Material&sType=rpt&lsSZ_POSID=([param_value])
    Regards
    Alex

  • Adding Document Link

    I am trying to insert a shortcut 'Add DocumentLink' like 'Add Document' inside a document library (just replacing upload.aspx with newlink.aspx (id=idHomePageNewLink) it brings up the first form to upload the Document URL & Title when click on OK gives
    error message. We have created views in library with filters to show only specific documents to control access; from any view when they use 'Document Link' from ribbon it always lands up in a different view. please let me know how i can add shortcut link

    Hi M Raki,
    You seems to add custom action in the Ribbon to replace the upload document function.
    You can create custom action using CustomAction element in CAML, the following sample shows how to do this. And to achieve the upload function, if you don’t want to use default upload page, custom a layout upload page to achieve the upload, then redirect
    to the default list view page.
    Add Custom Button to the SharePoint 2010 Ribbon:
    http://blogs.msdn.com/b/jfrost/archive/2009/11/06/adding-custom-button-to-the-sharepoint-2010-ribbon.aspx
    Thanks,
    Qiao Wei
    TechNet Community Support

  • WEBI Opendocument.jsp link

    I am trying to use OpenDocument.jsp to open another WEBI report based on the drilled values of the first report. I have come accross two problems:
    1) How can I use a URL in a crosstab without it showing every combination of the fields in the URL? (i.e. I want the cross tab to show Region level information but I also want to drill down to a more granular level whilst following this with the URL)
    2) If one of my parameter values includes any spaces the open document link doesn't work even if the parameters are URLEncoded.
    Any ideas?

    I think I have worked it out!
    Please see the example below:
    =
    If(IsError(ReportFilter([Customer : Branch Number])) OR Count([Customer Name]) > 1;
      If(IsError(ReportFilter([Customer Name])) OR Count([Group Corporation Name]) > 1;
        If(IsError(ReportFilter([Group Corporation Name])) OR Count([Salesman Name]) > 1;
          If(IsError(ReportFilter([Salesman Name])) OR Count([Sales - Sector Name (INV)]) > 1;
            If(IsError(ReportFilter([Sales - Sector Name (INV)]));
              "Error in report";
              [openDocumentURL] + "&sReportName=Sector&sRefresh=Y&lsMSector=" +
              URLEncode(ReportFilter([Sales - Sector Name (INV)])) +"'>View sector level info</a>");
            [openDocumentURL] + "&sReportName=Salesman&sRefresh=Y&lsMSalesman=" +
            URLEncode(ReportFilter([Salesman Name])) +"'>View salesman level info</a>");
          [openDocumentURL] + "&sReportName=Group&sRefresh=Y&lsMGroup=" +
          URLEncode(ReportFilter([Group Corporation Name])) +"'>View Group Corp level info</a>");
        [openDocumentURL] + "&sReportName=Cust&sRefresh=Y&lsMCustomer=" +
        URLEncode(ReportFilter([Customer Name])) +"'>View customer level info</a>");
      [openDocumentURL] + "&sReportName=Branch&sRefresh=Y&lsMBranch=" +
      ReportFilter([Customer : Branch Number]) +"'>View branch level info</a>")
    What this does is it basically checks the level of information displayed in the Cross-tab (useful for drill-down) and returns the corresponding hyperlink.
    I hope this is useful to someone.
    Edited by: Andy Lord on Jul 15, 2008 11:22 AM

  • 4.x: Document Link passing range parameter to a WebI rpt using BEx query

    I'm new to working with BEx queries, so I may use the wrong terminology.  I'm trying to create a document hyperlink from one WebI report to another.  Both are based on BEx queries, which I didn't create, nor do I have access to modify.  The BEx query for the target report has a parameter, Fiscal year/period, which is a range parameter.  The displayed value in a report or in pick lists is in the format "JUL 2010".  The key is in the format "K4/007/2010". 
    I have tried using the Document Link expert to configure passing the range parameter, but have been unsuccessful.  The typical result is an error message, ERR_WIS_30270, which is most likely the result of an incorrect format for passing the range.  I've not been able to locate adequate documentation that describes the syntax for passing a range value to a BEx parameter.  I've successfully created Document Links to reports using BEx queries that have a parameter that requires a single value, and I've done Document links in non-Bex reports in 3.1 without issues.
    Has anyone successfully passed a range value to a BEx paramter?   If so, what syntax did you use?
    The environment is BI 4.0, sp 2 (14.0.2.439)
    Edited by: Steve Green on Oct 7, 2011 8:04 PM

    Marianne,
    Thanks for the heads up on the fixpack.  I tried looking at the note # you sent, but a search of SAP Notes says that the note has not been released.  However, reviewing the Fixed Issues in fixpack 6 shows the following item:
    ADAPT01580012
    Link to a WebIntelligence report using syntax OpenDocument fails when target document contains a prompt
    based on a BEx variable of type Interval. Error message is "An internal error occurred while calling
    'answerPromptEx' API. (Error: ERR_WIS_30270)".
    Behavior is now correct and refresh operation takes into account interval answer passed in OpenDocument URL.
    Now we just need to upgrade to fp 2.6 to see if it resolves this issue.  I've also opened a ticket with support, so I'll see what they say.
    Edited by: Steve Green on Oct 12, 2011 7:27 PM

  • Difference between hyperlink and open document link

    Hi experts,
    Currently i am using sap bo 4.0
    when i see the both hyperlink and open doc link the options are same like link to web page and link to document.
    if there is no difference what is the exact use

    Hi Venkat,
    For linking 2 reports you need to go with hyperlink/document link which uses opendocument concept. please refer the URL for opendoc tutorial.
    IT Developer's World: OpenDoc URL's with SAP BI4.0

  • Add new document link not working in upgraded sharepoint 2013?

    Hello there,
    Upgraded SharePoint team sites from 2010 to 2013. add new document link not working for shared document in upgraded sharepoint 2013?. it is specially not working on machine where Office web apps set up with this sharePoint server and it
    is working fine with environment  Office web apps not configured with Sharepoint.
    Looking resoluion /suggestion, thanks in advance.
    Regards,
    Sushil

    Hi  Sushil,
    According to your description, my understanding is that the add new document link was not working on machine where Office web apps set up with this SharePoint server after you upgraded SharePoint team sites
    from 2010 to 2013.
    For your issue, it can be caused by integrating Office Web Apps with upgraded SharePoint Site.
    Firstly please make sure claims-based authentication is used by the SharePoint web application that is used to create the new document. Only web applications that use claims-based authentication can open
    files in Office Web Apps. To determine the authentication provider for a web application, follow these steps:
    1.In SharePoint 2013 Central Administration, click Manage web applications.
    2.Select the web application that you want to check, and click Authentication Providers on the ribbon.
    The authentication provider must be displayed as Claims Based Authentication for Office Web Apps to work correctly with the web application. To resolve this issue, you can delete the web application and recreate
    it using claims-based authentication, or you can change the authentication method of the web application.
    Secondly, make sure the WOPI zones match on the SharePoint 2013 and the Office Web Apps Server farm.
    To do this, run the following command on the SharePoint Server:
    Get-SPWopiZone
    The result will be one of the following:.
    internal-https
    internal-http
    external-https
    external-http
    Next, run the following command on the SharePoint Server.
    Get-SPWOPIBinding
    In the output, look for WopiZone: zone. If the results from Get-SPWopiZone don’t match the zone that is returned by Get-SPWOPIBinding, run the Set-SPWOPIZone -Zone cmdlet on the SharePoint Server to change
    the WOPI zone to match the result from Get-SPWOPIBinding.
    If not work, you can try to disconnect SharePoint 2013 from Office Web Apps Server and re-configure Office Web Apps for SharePoint 2013.
    For more information, please refer to the article:
    http://technet.microsoft.com/en-us/library/ff431687(v=office.15).aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Open Document Link on PO Approval WF

    In the PO Approval Workflow, if you have the proper responsibility, an "open document" link is displayed that, when clicked, takes the user to a screen entitled "Notifications to Releases".
    This function is available to our Purchasing Super User responsibility but is not available for the Purchasing Approver responsibility. I'm trying to change that.
    Using help, I determined that the form associated with "Notifications to Releases" is POXPOERL. That form is assocated with the following functions and menus:
    FORM_NAME     FUNCTION_NAME     MENU_NAME
    POXPOERL     PO_POXPOERL     CHV_CHVSSWKB_FUNCTIONS     
    POXPOERL     PO_POXPOERL     PO_POXSTNOT_FUNCTIONS     
    POXPOERL     PO_POXPOERL     PO_POXPOVPO_FUNCTIONS
    POXPOERL     PO_POXPOERL     PO_PURCHASE_ORDERS_GUI
    POXPOERL     PO_POXPOERL     POS_INTERNAL_HP_MENU
    POXPOERL     PO_POXPPOERL_VIEW     PO_POXSTNOT_FUNCTIONS     
    POXPOERL     PO_POXPPOERL_VIEW     PO_REQUESTOR_GUI
    POXPOERL     PO_POXPPOERL_VIEW     PO_POXPOERL_FUNCTIONS
    POXPOERL     PO_POXPPOERL_VIEW     PO_POXBWVRP_FUNCTIONS     
    I've tried, under Functional Developer, to add several of these to the menu for Purchasing Approver. When they show up on the menu and I click them, I get a message stating: "You are not setup as a buyer. To access this form you need to be a buyer."
    All I want is for people to be able to see and use the "Open Form Command". Am I going about this the wrong way?

    I was probably not clear enough in my original question.
    We want people who are approvers - but not necessarily buyers - to be able to open the form from the link. I'm not set up as a buyer, but I have the Purchasing Superuser responsibility and I can open the form.
    I guess, bottom line... some more information on how to make links to eBiz forms work from WF would be helpful. I've not found much in the Oracle-supplied documentation that we have; I've read what's in the Developer's Guide and the Admin guide. Can anyone suggest a web link or two that might shed more light on the process?

  • How to get "Open Document " link

    Dear  Friends,
    I have customized a Requisition Notification based on PL/SQL documents and work flow concepts.
    I have created no.of requisitions to test. Each requisition have 3 persons involved say A ,B , C
    One for submitting ,other two for approval .
    After person B approves., it will go to C. till now  Everything working fine ,
    But In person C's notification list ,  the link called "Open Document " is missing to open the submitted requisition.
    Do I NEED TO SET UP ANY THING .
    How to resolve this .Any idea .Plz share.
    Let me know for any clarification.
    Thanks
    Aravinda.

    Dear friends
    It's solved.
    Just add Purchasing responsibilty to that user to whom  that "open document link " is not visible in the notification.
    Thanks
    Aravinda.

  • How to get the custom integrator in Manage Document Links

    Hi All,
    My requirement is "Creating Word Documents Using Web ADI", I am following the document
    Oracle® Human Resources Management Systems
    Configuring, Reporting, and System Administration Guide
    Release 12.1
    Part No. E13509-02
    From page no. 194.In that section, No.8. Use the Manage Layout Document Links page to create a link between the
    integrator and layout and the Word template.
    See: Creating Links between Template Letters and Layouts, page 2-33
    2-33>>
    Select Manage Document Links from the Web ADI menu.
    But when I click on the "Manage Document Links", I couldn't see my custom integrator to associate my word document with my integrator.
    I could see only the standard integrators.
    How to get my custom integrator in "Manage Document Links". I could see my custom integrator in define layout but not in this page.
    Thanks.
    With Regards,
    Kali.

    Hussein,
    Thanks for your reply.
    I followed the
    Note 360105.1 -Understanding and Using Web ADI in Oracle HRMS, and the section "Letters",
    I could follow all the steps, except the following,
    The reason is, when I click on Manage Documents Links, I am not getting my newly created integrator.
    If I link a standard integrator "HR People Details" to my document, that is opening properly.
    But I am not able to link my document with my integrator(which is based on my view).
    c.  Now link the template letter to the Letter Integrator and Layout.
    If not already done so, Add the function WebADI Manage Document Links to your Web ADI menu, and give it a prompt of Link Document.
    Select Link Document option , and Web ADI Mail Merge page displays. Choose your Letter Integrator. Link it to the Layout, and a list of template documents uploaded to the database is displayed. Select the template letter to be linked with the layout.
    Thanks.
    With Regards,
    Kali.

  • BO 4.1+ IE9 document link in webi?

    Hello All,
    We are using BO 4.1 & IE8 previously. Recently we upgraded the version of IE8 to IE9. When I open Master - Detail Reports, the tool is not behaving properly and its not opening up the detail report when clicked from master report. Is there any possibility to do any settings to work with IE9 for document link in webi 4.1? Thanks in advance.
    Regards,
    Anila.

    Hi Sathish,
    Thanks for your help. I have changed it in the preferences--WebI--modify--to web. I worked and created the report using document link on IE8. But very recently client has upgraded the version of IE. So because of which the master-detail is not working properly. Are there any settings to be changed in order to work with IE9??
    Thanks & Regards,
    Anila.

  • I have a new Mac Pro.  I want to use my old Mac Pro as a storage drive for photos and old documents, linked to my new Mac Pro.  How do I set up the old computer?

    I have a new Mac Pro.  I want to use my old Mac Pro as a storage drive for photos and old documents, linked to my new Mac Pro.  How do I set up the old computer?  Both computers have OS X10.9.3.  Currently they are connected by a Firewire 800 cable.

    You certainly could keep the old Mac Pro in Firewire mode (hold down the T key on its keyboard as you boot) to show its drives on the new MP. This is basically as fast as putting the drives into a Firewire enclosure.
    Or you could boot it normally and share its files over the network using the Sharing panel of System Preferences. If you turn on both File and Screen Sharing, you don't even need to have a monitor attached - you can do all administration using screen sharing. However, this method requires that you open all files over the network, which will be slower than the direct-connect method above, and may also not work with all applications.
    Matt

  • Not able to see document when I click Generate Document link in SSHR

    Hi,
    I have created a 'Generate Document' link on 'Change Hours' page of SSHR.
    But When I click on that link,I am seeing a blank screen and could not get the document.
    Please help me in this tio resolve the issue.
    Thanks,
    Srinivas

    Dear Srinivas,
    Since I am not able to understand the specifics of the SSHR Page, its slightly difficult to suggest something. If you can share the technical details of the page, it might be easier to make a guess. Btw, in case this is standard page behaviour, Oracle Metalink might be a place to look out for resolution.
    Regards
    Sumit

Maybe you are looking for