Link Webi Report to External URL using URL contained in Dim Object

I am trying to create a link in my WebI report to an external URL which is stored in a Dimension object.
The object is simply a string format which contains a link to a Lotus Notes database
Example:
Notes:///CA2573920000079B/0B4D8972EDD5DE7CCA257109000682B7/32250ACFEAF2B80FCA2573AB00831255
When I put the link into Internet Explorer I get the appropriate Lotus Notes databse, however, when trying the same in WebI using the following formula:
="<a href=[Notes url1] target='_blank'>Test</a>"
I get the following URL when clicking the link from InfoView
http://auyhoz04.an.orica.net:8080/businessobjects/enterprise115/desktoplaunch/viewers/cdz_adv/[Notes%20url1]
If I hardcode the URL into WebI
="<a href='Notes:///CA2573920000079B/0B4D8972EDD5DE7CCA257109000682B7/32250ACFEAF2B80FCA2573AB00831255' target='_blank'>Test</a>"
It works without a problem.
I'm sure I'm missing something simple...is anyone able to help?

Nathan,
When you build a URL on the fly it requires a certain way to encapsulate everything.  Here is another way for you to try it:
="<a href="+Char(34)+[Notes url1]+" target='_blank'>Test"+Char(34)+"</a>"
Plz note the use of Char(34) which generates a double-quote.  This method should help you with getting a dynamic product delivered to your audience.
Thanks,
John

Similar Messages

  • Error in Creating a WebI Report on SAP Source using Rich client in BOxi 3.1

    Hi
    I tried to create a webi report using rich client on sap source. I get a error message " A Database error occured. the Database text is 'unable to connect to SAP BW server name and password is incorrect(repeat logon) (WIS 10901) .
    SAP Integration kit installed
    BO XI 3.1 is installed on windows server 2003
    Application server - Tomcat 5.5 server.
    Any configuration or sap files/folders should be added?
    how can I move forward to solve it ?
    Thanks!
    J.M Raj

    Hi
    Ya I used SAP authentication - then also get same error.
    Connections are created with username, password to access SAP Source
    Thanks!
    J>M>Raj
    Edited by: John Milton on Jun 25, 2009 10:03 AM

  • Error in WEBI report and MDXTEST  when using Dimensions in Prompt

    Hi,
    I am using BOXIR3.1 SP2, SAPBI 7.0
    I m creating a webI report (Universe is on SAP BI Query.) which include following objcets in Query section of WebI pannel:
    Business partner, Account Class, Total Arreas count.
    The Condition pane of Webi Includes Prompt on object "Account Class".
    When I run a report, I get List of values for Dimension Account Class, when I select one of available value eg: Commercial Customer,I get Following Error.
    A database error occured. The database error text is: The MDX query SELECT  { [Measures].[4EITIDWAFWLLZD2ONIAVCKD56] }  ON COLUMNS , NON EMPTY CROSSJOIN( [Z_BPATNER].[LEVEL01].MEMBERS,  { [Z_FCACTBP__0UCACC_CLAS].[Commercial Customers] }  ) ON ROWS FROM [ZFC_M07/Z_FC_M07_Q002]  failed to execute with the error Value Commercial Customers for characteristic Z_FCACTBP__0UCACC_CLAS unknown. (WIS 10901)
    I tried running same query in MDXTEST editor of BI. I got same error!!!
    Then I tried changing the MDX Query as:
    SELECT  { [Measures].[4EITIDWAFWLLZD2ONIAVCKD56] } 
    ON COLUMNS , NON EMPTY CROSSJOIN( [Z_BPATNER].[LEVEL01].MEMBERS,  { [Z_FCACTBP__0UCACC_CLAS].[COM] }  ) ON ROWS 
    FROM [ZFC_M07/Z_FC_M07_Q002]
    Then it worked Fine!!!  If you observe the change is in the value of Prompt Account Class [Z_FCACTBP__0UCACC_CLAS].[COM]
    By default Dimension object in Universe shows text value, but when I changed the MDXQuery with Key value (This is one of the value of value is for [Z_FCACTBP__0UCACC_CLAS].[Level01] object in mDX test Editor.) It works fine.
    I wonder How do i solve this problem!! List of values available in dimension cannot be changed at universe level.
    Please let me know if any solution for this exists.
    regads,
    Nisha.

    Hi Ingo,
    I am creating the prompt on the dimension "Account Class" at WebI level.
    The Technical name of this object is: [Z_FCACTBP__0UCACC_CLAS].[LEVEL01]
    Also,
    I confirmed that Index Awareness is applied on this dimension as [Z_FCACTBP__0UCACC_CLAS].[LEVEL01].[TECH_NAME].
    This Dimension has detail object called "Account Class (Key) "and "Account Class (Medium name)".
    MDXtest editor in SAP, shows me text as well as [ Level01] values:
    Eg: Account Class InfoObject has values "Commercial Customer " (This is text value)and  "[Z_FCACTBP__0UCACC_CLAS].[COM]".
    COM Refers to Commercial Customer .
    So In WebI when I use Dimension "Account Class" as prompt, I get Text value of this InfoObject which is "Commercial Customer ".
    and MDXQuery Fails. But when I modify this query in mDXTEST Editor with value as "[Z_FCACTBP__0UCACC_CLAS].[COM]", It work fine.
    I donu2019t understand the reason, since this problem is with almost 90% of Dimension object.
    When I delete this object from universe, and refresh the universe then webI works fine.
    But, if for some reason I refresh the universe again, the Dimension object as a prompt doesnu2019t work!!!
    This error occurs every time I refresh the universe.
    We are in UAT phase and soon to go Live!!  We cannot afford to delete the object every time I refresh the universe.
    Please let me know your inputs.
    regards,
    Nisha.
    Edited by: Nisha Makhija on Oct 15, 2009 4:56 PM

  • How can I set time-out while accessing a url using URL object?

    Hi
    I'm trying to get the content of a URL using the following code. How can I set timeout
    (example, 10 secs), if the webserver takes a while to respond.?
    BufferedReader inbuf=null;
    URL url=null;
    try {      
         String urlString="http://host-machine/sms/index.jsp";          
         url = new URL(urlString);
         inbuf = new BufferedReader(new InputStreamReader(url.openStream()));
         String inputLine;
         String LongString="";
    while ( (inputLine=inbuf.readLine()) != null)
              LongString=LongString+inputLine;
              retString=LongString;          
              inbuf.close();
         catch (Exception e) {System.out.println(e)}
    Thanks a lot for your kind help
    Regards
    Kandasamy

    If you're using Java 5, see this thread (reply 10)
    http://forum.java.sun.com/thread.jspa?forumID=31&threadID=576157

  • Webi Reports unable to Edit using JRE6u18

    Hello,
    I am unbale to edit/modify Webi reports in Inter Explorer after I installed JRE6u18 version. The report is not responding in edit mode for very long time, then session expired.  Many times tried and the result is same.
    With that JRE version I am able to edit Webi report using Firefox browser.
    I am using BOXI 3.1 SP3 and I have tried in Internet Explorer 6 and 8 versions, still it is not working in I E 6/8.
    Can any one help me and provide a solution.
    Thanks in advance.
    Jayakrishna

    Hi,
    With Firefox, only 3.0 and 3.5 are supported with XI 3.1 SP3  - see here http://service.sap.com/~form/sapnet?_SHORTKEY=01200252310000087200&_SCENARIO=01100035870000000202&_OBJECT=011000358700000555642010E
    Your desktop O/S will have a part in this too.
    --> Are you in-line with support requirements?
    Regards,
    H

  • Linking webi reports dynamically

    Hi,
    I have a main report linked to a sub report. The customer can run the main report or schedule the main report.
    So here my question is how to create the open document url (with refresh on open option or with the latest instance option)?
    How to change this dynamically based on how the user is accessing the main report?
    Because if customer runs the main report on-demand and clicks the hyperlink then it should open the sub report (with refresh on open) option and fetch the latest data.
    Else
    if customer schedules the main report and clicks the hyperlink then it should open the latest instance of the sub-report.
    How to achieve this?
    Thank you

    Hi,
    i think the solutions is to create a hyperlink based on an IF - ELSE.
    best is to have like a difference between scheduling user : scheduler AND BO user=his credentials
    you could go IF CurrentUser()="scheduler" THEN <url+sInstance=Last> ELSE <url+sRefresh=Y>
    If there is no difference, then you can go via last time report was excecuted ...
    using LastExecutionDate() and/or LastExecutionTime() comparing with currentdate() and/or currenttime()
    But that's more tricky

  • Lync Office Web App Farm External Access using IIS ARR

    When i try to present a powerpoint app when logged in externally i get an error saying that it could not connect to the office web app server.  I need some help with (maybe screenshots) of what the reverse proxy settings should be. Here is some info
    so maybe someone can fill in the blanks.  
    My Office web app server has a private address and sits on the inside. The DNS name is owasrv.mydomain.com 
    The internal url is https://owasrv.mydomain.com
    The external url is https://wacsrv.mydomain.com
    i have a public A record pointing to wacsrv.mydomain.com and my ssl cert has a SAN entry for wacsrv.mydomain.com
    ***NOTE our public and private domain names are the same...that is not a mistake.
    I mostly need help with the what to put in for the url rewrite rules and what to put in when creating the server farm.  Also is it OK that the name of my server is different than the external url address.
    Gerald Csakany

    Hi Gerald,
    Did you follow this guide here http://blogs.technet.com/b/nexthop/archive/2013/02/19/using-iis-arr-as-a-reverse-proxy-for-lync-server-2013.aspx
    and mainly the section down the bottom which refers to publishing the WAC by matching this pattern ((?:^en-us/|^hosting/|^m/|^o/|^oh/|^op/|^p/|^we/|^wv/|^x/).*)
    and moving the rule to the top?
    What happens when you try to browse to https://wacsrv.mydomain.com/hosting/discovery from external?
    They can be different, I usually make them the same for simplicity, but as long as they're set on the Webfarm it shouldn't be an issue.
    If this helped you please click "Vote As Helpful" if it answered your question please click "Mark As Answer"
    Georg Thomas | Lync MVP
    Blog www.lynced.com.au | Twitter
    @georgathomas
    Lync Edge Port Check (Beta)

  • Web service proxy - how to use server side in/out objects

    We have logic in oracle database. We have pl/sql api with oracle object types as in/out parameters. On server side we have pojo classes with method to convert from/to sql structs, arrays.
    pl/sql apis are exposed as web services.
    When I create web service proxy, all required pojo classes are created from wsdl on client side.
    Currently we are also writting client part of the code(where we also have oracle database and we want to reuse server pojos). Server pojo classes are in separate jar file and used also on a client side.
    Is it possible to tell jdeveloper when creating web service proxy, to not create client side pojos, exception classes, ... , but use those from jar file.
    Currently I just copy server pojo over generated client ones, make some modifications and it works. But each time I regenerate web service proxy I have to do this step manually.
    Edited by: zgrega on Sep 24, 2010 7:43 AM
    Edited by: zgrega on Sep 24, 2010 7:47 AM

    best is to wrap the generated WS proxy in a JavaBean. This way you can create the exception handling once and apply it to all uses of the WS proxy by overriding the generated code
    Frank

  • Direct (External) Link to Report

    I am trying to figure out how I can create a direct link to a report. 
    We wish to have a "Portal" page that resides outside of InfoView.  The portal will have numerous links, some of which will be WebI reports.  How can I get the URL for these reports?  I'm okay that the user has to sign into Infoview.  I just don't want them to have to navigate to the report.
    Any input is welcome.

    Hi Ryan,
    You can get the URL for any particular webi report from the CMC Central management consoleof the business objects.
    Locate the report in the CMC folders and preview the report.
    Copy the URl of the report and use it in the Portel after applying the opendoc parameters.
    for e.g.-
    "http://d-3281:808/businessobjects/enterprise115/desktoplaunch/opendoc/opendocument.jsp?iDocID=4766"
    Hope it helps.
    Regards,
    Ritesh

  • How  to use url iview???

    how  to use url iview???
    HI all
    I need to use url iview as back button in the same page with saptransaction iview.
    url iview to used as back button to the home page.
    pl suggeest how to use url ivew....what sort of properties need to be  used.

    HI chander
    thank u for ur response
    I have done an  aplication in which  i have called sap transsaction ivew usind quick link property in .html(page) language.
    where we will be fetching saplogon server using this sap trans saction ivew into the portal frame work  .
    when i loging into the server and log off  with in the portal frame work i am not able to go to my aplication home page. since back/ forward link are disabled.
    atleast i want know how to enable those links.
    or else
    i thought to use url ivew along with sap transaction ivew with a  same page with diffrent layouts.but that is also fine.
    and one   more option  was
    i thought it to be used as pop up as so that when user  login and log off into the server  they will close  that seperate window.
    for that i have set the  ivew property
    "launch in a new window property As : display in a seperate head less portal window"
    but even that is also not working.
    i dont know y  that property is not working
    finally i have coded with java script , now i am able to open the portal in a seperate window but with headed portal.
    for that i have coded some thing like below mentioned.
    problem here is still i am getting the headed portal
    but i want head less portal.
    here headless in the sence i want it like the preview of the ivew.
    please help me in this regard how to get the head less portal when i click on the link.
    Regards
    Gayathri

  • BO3.1 to BO4DeskI to WebI report conversion using RCT (2 database)

    Hello,
    I have to convert reports from BO 3.1 to BO 4.0 version.
    I have a DeskI report which has 2 Freehand SQL and both are pointing to different databases.
    So my questions are:
    1. Is it possible to convert DeskI report which uses multiple databases?
    2. RCT will convert these SQL and generate different universes for both databases?
    Do we have any other suitable approach to convert DeskI reports which uses multiple db?

    Hi
    1. yes, it is.
    2. I think for this you need to follow below steps:
    Refresh the Query in DeskI make sure it is refreshing perfectly.
    Convert the DeskI report using RCT to WebI report
    Refresh the converted WebI report make sure it refreshes prefect.
    Find out which connection has been used for Default FHSQL universe
    Find out any universe has using the same connection.
    Create a derived table using the same query from WebI report
    Export the universe to RCT universe folder.
    Open the WebI report and to point the universe.
    Map the objects to existing WebI report objects
    If you need more help on this kindly revert me back.
    Hope it must help you!
    Cheers,
    Shardendu Pandey

  • Linking 3 tabs in single webi report

    Hello,
    I am working on WEBI 4.0 reports. Can you please help me for the following requirement.
    I have to create single webi report with 3 tabs, each tab contains one report and on top i have to create 3 radio buttons. If user selects any radio button according to that it has to display that specific report.
    I will tell you with example
    I have 3 reports A, B, C. these shoud be in single webi report with tabs
    radio button A, radio button  B, radio button C.  If user selcts A it should display A report, if B then B report........
    Is there anyway to achieve this requirement?
    Please help me SAP gurus

    try this work around .
    1st = create variable "radio"
    2nd = go to input control
    create a new input control select a radio variable
    3rd = click on custom
    new window will come insert the list of value as shown below
         click on ok
    create a 3 report(vertical table) which u want to show
    select report A and right click on it and select format table
    select HIDE WHEN FOLLOWING Formula is true
    write the above formula in A table(report)
    and some for B
    = [radio]<>"B"
    and for C
    = [radio]<>"C"

  • Webi Reports Hyperlinks on top of OLAP Universe

    Hi Webi Gurus,
    my BoBJ version 3.1 sp3
    BW-OLAP universe.
    I checked below Link for the solution, but couldn't
    get answer, as these are based on relational universes.
    /people/erika.atencio2/blog/2011/04/14/creating-hyperlinks-between-webi-reports-in-infoview
    I have a OLAP universe. On top of it, there are two reports
    One parent report and one child report.
    Question: I have a column called Auction Id on parent report.
    Now, when I click on any of the Auction Id values, child report
    should only bring data for that Auction Id alone and not other Auction Ids.
    In the child report, I have Auction Id as query filter.
    Now while in Webi's Interactive Mode, I chose the option
    Select Column--> Create Hyperlink --> Link to a document -->
    Document prompts: Prompt User in runtime.
    This option works fine.
    However, when I change the Document Prompt to:
             Select Object (or) Build Formula
    report throws MDX error, during run-time,
    Please suggest.
    MDX error:
    ========================================================================
    The query failed to execute with the error Value for the Characteristic.....WIS 10901
    ==================================================================================
    Regards,
    AK

    Still getting error...I tried this
    >> 1. In the detail webi report, create a query filter for AuctionID and use Equal operator. Give the prompt text as ActionID.
    AK: Done
    >> 3. In the column properties, in the display section select display cell content as HTML.
    AK: Done
    When I provide the URL and Parse it throws following error.
    "Invalid identifier a at position 15. (WIS 10022) "
    I gave following URL and parsed it.
    ="<a href="http://sapbojdev:8080/OpenDocument/opendoc/openDocument.jsp?
    iDocID=18774&lsSAuction ID="URLEncode([Auction ID])"&sRefresh=Y
    Q: Is there any problem with syntax?
    Q: Secondly, for OLAP universe based webi report , can't we use the hyperlink option:
    Link to  Document
    Thanks,
    AK

  • How to disable refresh button in webi reports in BOXI3.1SP2-Java SDK

    Hi all,
    We have integrated Java with BO, here end users will give parameters through java screen. After submitting all the parameters webi reports will opens in separate window.
    Here requirement is end users should pass the parameters from java screen and they should able to save the report in to excel/PDF.
    Refresh/edit buttons should disable/hide in the webi report.
    below is the sample url we are using in the java.
    http://" + CMS + ":8080/ OpenDocument/opendoc/openDocument.jsp?"+ "iDocID=" +ReportID + "&sType=wid&sRefresh=N&sWindow=New&lsSEnter List Name: =+List&token=" + token
    we tried with using &buttonrefresh=hide in above URL.
    Note: We are also having hyperlink reports in the Webi.
    Please provide me inputs to disable refresh button.
    Thanks,
    Subash

    Hi,
    why do not set this over the authorization scheme? Just deny your users the right to refresh/edit the report.
    Regards,
    Stratos

  • Report data ( value ... tag) missing in the Webi report retrieved through RestFul Webservice

    I am trying the below URL to get the WEBi report from SAP BO using the Rest Webservice support that is now available.
    http://{serverIP:serverPort}/biprws/raylight/v1/documents/{documentId}
    I am able to get the report but as I compare the same report response when using SAOP Webservice, there seems to be a mismatch in the response. Here is what I see in the SOAP response:
    </td><td c="1" ><cell  ref="1.E.4t" bid="14" h="26" w="231" pad="6,7" sid="-10"><ct >Some arbitrary value</ct><value type="xs:string">Some arbitrary value</value></cell>
    But when I run it through REST, I am missing the <value ..> tag:
    </td><td c="1" ><cell  ref="1.E.4t" bid="14" h="26" w="231" pad="6,7" bt="1" sid="-10"><ct >Some arbitrary value</ct></cell>
    Apart from this right at the start of the xml response, I see some property mismatch as well.
    SOAP has this property extra:
    <property name="output.format.xml.valuemode">yes</property>
    While REST has these property extra:
    <property name="output.format.xml.option.style">1</property>
    <property name="output.format.xml.styledict.fontplatform">html</property>
    <property name="output.format.xml.td.bandinfo">yes</property>
    <property name="source.selected">data</property>
    <property name="xelement.xml.object">yes</property>
    <property name="xelement.xml.object.usemap">yes</property>
    <property name="xelement.xml.object.usersupportedformat">image/png</property>
    I am not sure if:
    the <value ...> tag miss is because of these missing/extra properties or
    current REST support has some issues
    For my application the value tag is a must and I can't do without this, but with REST it seems no way to obtain that.
    Any help or pointer(s) in this regard is appreciated!

    Hello Milind,
    According to our Product Owner Sam Polichouk, the solution should be available for you in 4.1 SP3, which is currently scheduled for release by the end of March 2014 (subject to change).  The product team recommends that you get the raw, unformatted data values from within the Dataset specific call.  This data contains a type to tell the end user what kind of data it is, so you can format it or use it properly.
    The updated documentation for the SDK will be available at SAP BusinessObjects Business Intelligence platform 4.1 – SAP Help Portal Page once the Support Pack is publicly released.

Maybe you are looking for

  • What is the excel button in alv grid supposed to do?

    Hi All. In the ALV reports, we see an Excel button too. But on pressing it, a blank excel sheet opens, and there is no way to go out of it. We have to exit the report. What is it supposed to do? Thanks everybody !

  • Notes on Asha 311

    I can't find notes on my Asha 311. But according to official specification in nokia website, asha 311 does have notes. So where canI find my notes? Thank you.. Solved! Go to Solution.

  • I have One Question about java security

    In java.security file, there are many option... (Ex) java.security # Class to instantiate as the system Policy. This is the name of the class # that will be used as the Policy object. policy.provider=sun.security.provider.PolicyFile but, I can't unde

  • Greenish hue when printing - in Leopard (not Snow Leopard)

    I use to be able to print to my Epson 2200 letting Photoshop CS4 extended manage my colors, and get beautiful prints.  I'm not sure what changed, but now all of my prints have a greenish/blueish hue.  I'm still using the same ICC profiles, same print

  • Adding a Patch to a Pocket and keeping the Folds and Wrinkles - CS3

    I have a photo of a gentleman wearing a typicl denim shirt and I would like to add a patch, or an emblem, to the shirt pocket.  I would like the patch to follow the contours of the shirt, including the folds and wrinkles.  How can that be done in CS3