Embedd URL inside Answers report?

Is it possible to embedd a url (to an external link) inside an answers report? The navigate option allows for links to other answers reports. Main goal is to add a link to a publisher report directly from answers. Know this is possible in dashboards, but am interested to achieve in answers. Thoughts/suggestions?

hi,
Adding some salt use iframe tag point out the src as publisher report which u will get by copying link from the hyperlink LINK to REPORT
thanks,
saichand

Similar Messages

  • Open URL from a report

    Hi, I need to make a connection to URL from a report. Is it posible? thanks.

    hi jose,
    please try the following.
    CALL FUNCTION 'GUI_RUN'
      EXPORTING
      command ='IEXPLORE.EXE'
      PARAMETER ='WWW.YAHOOMAIL.COM'.
    CD =
    IMPORTING
    RETURNCODE =
    and if u want hyperlink then,
    *REPORT ZURL NO STANDARD PAGE HEADING.
    DATA: BEGIN OF URL_TABLE OCCURS 10,
    L(25),
    END OF URL_TABLE.
    URL_TABLE-L = 'http://www.lycos.com'.APPEND URL_TABLE.
    URL_TABLE-L = 'http://www.hotbot.com'.APPEND URL_TABLE.
    URL_TABLE-L = 'http://www.sap.com'.APPEND URL_TABLE.
    LOOP AT URL_TABLE.
      SKIP. FORMAT INTENSIFIED OFF.
      WRITE: / 'Single click on '.
      FORMAT HOTSPOT ON.FORMAT INTENSIFIED ON.
      WRITE: URL_TABLE. HIDE URL_TABLE.
      FORMAT HOTSPOT OFF.FORMAT INTENSIFIED OFF.
      WRITE: 'to go to', URL_TABLE.
    ENDLOOP.
    CLEAR URL_TABLE.
    AT LINE-SELECTION.
    IF NOT URL_TABLE IS INITIAL.
      CALL FUNCTION 'WS_EXECUTE'
           EXPORTING
                program = 'C:\Program Files\Internet Explorer\IEXPLORE.EXE'
                commandline     = URL_TABLE
                INFORM         = ''
              EXCEPTIONS
                PROG_NOT_FOUND = 1.
      IF SY-SUBRC <> 0.
         WRITE:/ 'Cannot find program to open Internet'.
      ENDIF.
    ENDIF.

  • Page break not applying when using sub report inside main report

    I have a main report inside which there is subreport (using SQL Server 2012). I placed some page breaks inside subreport but they were not working. I read on technet forums that this is a a known issue with SSRS. 
    One solution I found is to put a table inside main report, then in first row add a rectangle and set its property "Add a page break after" and then add subreport after this rectangle in that table in main report. I did that and now in some cases
    it does show sub report on a separate page but sometimes it shows subreport on same page.
    Could it be because in some case sub report has no or less data (hence it cannot cover whole page) and in that case it will always show on one page? How can I show empty subreport on a separate page?

    I fixed it by clicking both "Add a page break before" and "Add a page break after" in rectangle.

  • Open URL in Oracle Reports

    Hello Every one,
    I am using Oracle Reports 10G and would like to open a URL via Oracle reports. Basically, I am trying to open a weblink that is a pdf. Is this possible in Oracle reports?
    any documentation or help would be really appreciated.
    Regards

    Yes. You should be able to create a link on basically any field or text.
    You can create the somthing similiar in a program unit (property inspector >Advanced Layout>format triggers)
    BEGIN
    IF UPPER(xxx_xxx) = 'XXXXXX'THEN
    return('http://www.google.com')     
    END IF;
    END;
    OR
    You can just set the hyperlink to the appropriate url within the property inspector >Web Settings>Hyperlink

  • Create a url from a report program

    Hi All,
    Could anyone please suggest me how do i generate a url from a report program. I need to use this generated url then, as a link in an excel sheet.
    Thanks in advance,
    Warm Regards,
    Preethi.

    Hi Preethi,
    REPORT  ZAZUURL                                 .
    DATA: BEGIN OF URL_TABLE OCCURS 10,
    L(25),
    END OF URL_TABLE.
    URL_TABLE-L = 'http://www.lycos.com'.APPEND URL_TABLE.
    URL_TABLE-L = 'http://www.hotbot.com'.APPEND URL_TABLE.
    URL_TABLE-L = 'http://www.sap.com'.APPEND URL_TABLE.
    LOOP AT URL_TABLE.
      SKIP. FORMAT INTENSIFIED OFF.
      WRITE: / 'Single click on '.
      FORMAT HOTSPOT ON.FORMAT INTENSIFIED ON.
      WRITE: URL_TABLE. HIDE URL_TABLE.
      FORMAT HOTSPOT OFF.FORMAT INTENSIFIED OFF.
      WRITE: 'to go to', URL_TABLE.
    ENDLOOP.
    CLEAR URL_TABLE.
    AT LINE-SELECTION.
    IF NOT URL_TABLE IS INITIAL.
      CALL FUNCTION 'WS_EXECUTE'
           EXPORTING
                program = 'C:\Program Files\Internet Explorer\IEXPLORE.EXE'
                commandline     = URL_TABLE
                INFORM         = ''
              EXCEPTIONS
                PROG_NOT_FOUND = 1.
      IF SY-SUBRC <> 0.
         WRITE:/ 'Cannot find program to open Internet'.
      ENDIF.
    ENDIF.
    <b>Regards,
    Azhar</b>

  • Generate a url from a report or function module

    Hi,
    I'm trying to generate a url from a report and tried using the function module WWW_ITAB_TO_HTML in the report program, as , but i'm not able to get the expected results. The code is given below. Could someone please try and help me resolve this issue. Thanks in advance.
    DATA: emp_name TYPE char80.
    DATA: it_itabex TYPE zdb_ex_tty,
    it_emp TYPE TABLE OF zis_emp,
    it_org TYPE TABLE OF zis_org,
    it_pos TYPE TABLE OF zis_pos,
    it_pos_alloc TYPE TABLE OF zis_pos_alloc,
    it_res TYPE TABLE OF zis_res,
    it_res_alloc TYPE TABLE OF zis_res_alloc,
    ls_itabex TYPE zdb_ex_s.
    DATA: lv_filename TYPE string,
    lv_path TYPE string,
    lv_fullpath TYPE string,
    lv_replace TYPE i.
    DATA qstring LIKE it_itabex OCCURS 10.
    DATA: url(200), url2(200), url3(200), fullurl(200).
    FIELD-SYMBOLS: <fs_emp> LIKE LINE OF it_emp,
    <fs_org> LIKE LINE OF it_org,
    <fs_pos> LIKE LINE OF it_pos,
    <fs_pos_alloc> LIKE LINE OF it_pos_alloc,
    <fs_res> LIKE LINE OF it_res,
    <fs_res_alloc> LIKE LINE OF it_res_alloc.
    ** Report Program to export data from database to Excel.
    ** Populate all the tables that have to be exported.
    SELECT * FROM zis_org INTO TABLE it_org.
    SELECT * FROM zis_pos INTO TABLE it_pos.
    SELECT * FROM zis_pos_alloc INTO TABLE it_pos_alloc.
    SELECT * FROM zis_emp INTO TABLE it_emp.
    SELECT * FROM zis_res_alloc INTO TABLE it_res_alloc.
    SELECT * FROM zis_res INTO TABLE it_res.
    ** Append the Column Header
    CLEAR ls_itabex.
    ls_itabex-ipp_pos_id = 'IPP Pos ID'.
    ls_itabex-emp_name = 'Name'.
    ls_itabex-dt_of_join = 'JoinedOn'.
    ls_itabex-emp_status = 'Status'.
    ls_itabex-org_name = 'Org'.
    ls_itabex-prj_name = 'Project'.
    ls_itabex-mgr_name = 'Line'.
    ls_itabex-designation = 'Designation'.
    ls_itabex-specialization = 'Specialization'.
    APPEND ls_itabex TO it_itabex.
    ** Append all the tables into one internal table
    LOOP AT it_pos_alloc ASSIGNING <fs_pos_alloc>.
    CLEAR ls_itabex.
    ls_itabex-ipp_pos_id = <fs_pos_alloc>-ipp_pos_id.
    READ TABLE it_emp ASSIGNING <fs_emp> WITH KEY emp_guid = <fs_pos_alloc>-emp_guid.
    IF sy-subrc = 0.
    CONCATENATE <fs_emp>-emp_fname <fs_emp>-emp_lname INTO ls_itabex-emp_name SEPARATED BY space.
    ls_itabex-dt_of_join = <fs_emp>-dt_of_join.
    ls_itabex-emp_status = <fs_emp>-emp_status.
    ls_itabex-specialization = <fs_emp>-specialization.
    ENDIF.
    READ TABLE it_pos ASSIGNING <fs_pos> WITH KEY ipp_pos_id = <fs_pos_alloc>-ipp_pos_id.
    IF sy-subrc = 0.
    ls_itabex-designation = <fs_pos>-designation.
    READ TABLE it_org ASSIGNING <fs_org> WITH KEY org_id = <fs_pos>-org_id.
    IF sy-subrc = 0.
    ls_itabex-org_name = <fs_org>-org_name.
    ls_itabex-mgr_name = <fs_org>-mgr_name.
    ENDIF.
    ENDIF.
    READ TABLE it_res ASSIGNING <fs_res> WITH KEY org_id = <fs_org>-org_id.
    ls_itabex-org_name = <fs_org>-org_name.
    APPEND ls_itabex TO it_itabex.
    ENDLOOP.
    url = 'http://testweb/scripts/wgate/zvw10a/!?~language=en'.
    url2 = '&~OkCode(LGON)=LGON&login-login_user='.
    url3 = '&vbcom-vbeln='.
    CONCATENATE url url2 url3 INTO fullurl.
    WRITE: /'Staffing Excel'.
    CALL FUNCTION 'WWW_SET_URL'
    EXPORTING
    offset = 12
    length = 10
    func = fullurl
    TABLES
    query_string = qstring
    EXCEPTIONS
    invalid_table = 1
    OTHERS = 2.
    Thanks & Regards,
    Preethi.

    Check the below example program :
    data: begin of itab occurs 0,
          matnr type mara-matnr,
          mtart type mara-mtart,
          matkl type mara-matkl,
          groes type mara-groes,
          end of itab.
    data: ifields type table of w3fields with header line.
    data: ihtml   type table of w3html   with header line.
    select * into corresponding fields of table itab
              from mara up to 100 rows.
    call function 'WWW_ITAB_TO_HTML'
    EXPORTING
      TABLE_ATTRIBUTES       = 'BORDER=1'
      TABLE_HEADER           =
        ALL_FIELDS             = 'X'
      tables
        html                   = ihtml
        fields                 = ifields
      ROW_HEADER             =
        itable                 = itab
    check sy-subrc = 0.
    call function 'GUI_DOWNLOAD'
         exporting
              filename = 'c:\test.html'
         tables
              data_tab = ihtml.
    Reward points if it is helpful
    Thanks
    Seshu

  • How to download Answers report in XML format?

    I would like to send the developed Answers reports in the form of XML so that it can be sent to various Govt and 3rd Party systems. Any idea how to achieve this?
    Thanks
    Edited by: user12242480 on 05-Feb-2010 01:52

    Use the go url:
    http://gerardnico.com/wiki/dat/obiee/presentation_service/obiee_go_url
    And specify the format as XML.
    Example:
    saw.dll?Go&Path=/Shared/Test/SB2&Format=XML
    May be you can add the XML to the menu. But i never do it, you have to search in the custommessage.
    Cheers
    Nico

  • How to get Page URL inside a JSR168 Portlet

    Hi,
    How can i get the Portal's page URL inside a JSR168 Portlet?
    All I can see in renderRequest Object is information about the portlet itself not about the page it is inside.
    Thanks,
    André

    Hi Andre
    Please see this note on My Oracle Support. 433507.1
    Hope that helps!
    AMN

  • Links (urls) inside a pdf document are not enabled by the New firefox pdf preview feature but are in Chrome & IE

    The new pdf preview feature in firefox desktop does NOT seem to activate any links (urls) inside the pdf meaning they are no longer clickable.
    Is anyone else experiencing this problem.
    I send out product information using pdf's with clickable links inside (as do lots of businesses) and this loss of clickable links functionality is a problem.
    I also tried the same pdf files in IE and Chrome and their inline pdf previews keep all links fully working.
    I know the pdf preview in firefox can be deactivated and the adobe reader can be used instead but in reality lots of people won't know how to do this or won't be troubled to find out how and will just move on.
    Does anyone know if this feature is going to be fixed or supported or is it a deliberate security feature.
    Thanks.
    JP.

    Hey JPEdwards,
    The PDF.js team is still hard at work on the built-in viewer. It looks like there is already a bug on file for this and they are aware of it:
    https://bugzilla.mozilla.org/show_bug.cgi?id=821599
    Please don't post in the bug if you are just confirming that you've seen the problem too. That clutters the tickets ;)

  • How to Import Js file inside Webi report ?

    hello People,
    i have one question regarding webi report.
    As per web documentation i can directly inscribe javascript logic inside the webi report and can read it as html content .
    But what if i have javascript file which i want to simply import inside webi report (like src command inside javascript for js file location). where shall i place the js file inorder to let understand webi report to read it .
    please let me know if anyone have done importing js file inside webi report .
    thanks in advance 

    Hey ,
    i can able to write my js code inside the webi report. my js functionality is working fine too.
    i have created a cell and write my js code inside it and then set it as html read content.
    the js code will work.

  • Task List URL (to FR Report) opens in new window, but not for all users!

    Hi all,
    I am not sure if this is the correct forum to ask the question (for me it looks like an IE topic), but perhaps anybody can help me anyway...
    In one of our Planning apps (9.3.1) we defined several task lists and tasks that link to relevant FR Reports (URL Tasks). If I open the URL task in basic view the relevant FR Report opens in the same IE Window (in the main frame of the planning app). If my colleague opens the same task the FR Reports opens in a new IE Window.
    My problem is that I dont have any ideas where I can set the relevant property. Is that a planning property, a workspace property or an IE property setting??? Where can I adjust the settings that for ALL users the URL opens the Report in the same window??????
    Thanks in advance!!!!
    Kind Regards
    André
    P.S.: We are on IE8.

    Have you both got the same settings in Tools > Internet Options > Tabs Settings
    There was also a bug though I can't say if it is related to your issue
    9549216 - Instead of a new tab, a new window is displayed after you create a Financial Reporting task in Workspace.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Passing Parameters for Dashboard Prompts to Answers Report

    I have the following requirement.
    I want to pass the value of a 2 dashboard prompts to an answers report. What is the syntax using GO URL method.
    Thoughts anyone?

    Refer to this link on how to achieve this: http://www.iwarelogic.com/2010/09/integrating-oracle-obiee-content-using-go-url-850/
    Regards,
    -Amith.

  • Programatically load URL inside a portlet

    Hi Super Solver(s) of Problems,
    Is there a way to programatically load a given URL inside a portlet?
    For example, if I have Portlet A and Porlet B, and I want to make a B load up,
    say, "http://www.google.com", when I click a button in A, how would I go about
    doing that (preferably without using a Webflow that can see both A and B)?
    Hanson

    Hanson,
    Please post the contents of the page that is not rendering correctly.
    Thanks!
    Sincerely,
    Daniel Selman
    "Hanson" <[email protected]> wrote in message
    news:[email protected]...
    >
    Hi again,
    I've written a page that displays what my servlet ought to without usingany session
    data, and parts of that page still won't render inside the portlet (thoughin
    its own browser window, it displays fine).
    I guess my question then becomes: what can/can't you render with the<ws:uriContent>
    tag?
    Hanson
    "Daniel Selman" <[email protected]> wrote:
    Hanson,
    It sounds like a problem with your Servlet. If it requires certain
    session
    variables, how do you intend to be able to hit it with a brand new
    Session?
    What happens when you hit your Servlet directly with a web-browser?
    Sincerely,
    Daniel Selman
    "Hanson" <[email protected]> wrote in message
    news:[email protected]...
    Hi Prady,
    Thanks for all your input! If I want to direct my page to somethinglike
    Yahoo
    or Google, the method you showed me works. However, the URL I'm
    getting
    the portlet
    to load points to a servlet, and for some reason, that servlet can'tget
    the session
    variables it needs to render its contents (retrievals return null whenother portlets
    in the session can read them fine). Is there any way around that
    problem?
    >>>
    >>>
    Hanson
    "Prady" <[email protected]> wrote:
    Try this:
    1. Go to developer.bea.com and download/install the web services
    portlet
    wizard. This will modify your EBCC to include the web service wizard
    tool.
    2. Using the URI tool of that wizard (from EBCC), create yourPortlet-B
    for
    a default URL such as http://www.google.com. The URI tool has couple
    of
    tags that help us load the URI content within a portlet.
    3. Write your Portlet-A with a simple form. Eg.
    <FORM>
    MyURL:<BR>
    <INPUT TYPE=text NAME=myURL SIZE=30>
    <INPUT TYPE=submit NAME=submit VALUE=go>
    </FORM>
    4. In Portlet-B (generated by the URI tool), there is a "defaultURL"
    variable that will have the default URL that you provided while
    creating the portlet-B (in our example from step 2. it will be
    http://www.google.com). Change it to get the "myURL"
    variable from the request object. Eg.
    String myURL = request.getParameter("myURL");
    5. Test.
    6. you can modify portlet-B and portlet-A to use webflow to
    pass information via pipeline session.
    Let me know if this works.

  • Load URL inside Flex 2

    How do you load a URL inside a targeted area (a container for
    example) of a Flex 2 application? Basically the same way you would
    load a URL into a frame in an HTML page. I see that there is a
    <mx:HTML> tag in Flex 3 but I believe that tag doesn't exist
    in Flex 2.

    Flex has a limited support of HTML as it does not have a
    built in browser functionality. If you would like to load an actual
    URL you can use an IFRAME loaded on top of your Flex application.
    If you search the web you can find a few examples of this. If you
    need real HTML rendering, Apollo is your only real solution at this
    time.
    Al

  • URL to run reports

    What is an URL to run reports directly in the Browser without going to Report Manager? Also can I run a report and specify a format like PDF?
    Thanks

    http://msdn.microsoft.com/en-us/library/ms153586.aspx
    This may also be interested for you
    http://dimantdatabasesolutions.blogspot.co.il/2009/02/how-to-render-report-to-pdfexcel-format.html
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

Maybe you are looking for

  • Repeating field on each page

    Dear all, My XML source: <?xml version="1.0" encoding="UTF-8"?> <!-- Generated by Oracle Reports version 10.1.2.3.0 --> <XXAP_INVOICE_REGISTER> <LIST_G_HEADER> <G_HEADER> <INVOICE_ID1>212884</INVOICE_ID1> </G_HEADER> </LIST_G_HEADER> <CP_OPERATING_UN

  • New macbook pro - can i use my old hard drive?

    Have a new MacBook Pro coming tomorrow to replace to an older MBP.  Everything is on the old HD and have been reading that I can switch the HDs out but would have to reinstall the operating system so all the different components from the new MBP are

  • India localization patch tool issue

    Hi, I am applying india localization patch using india localization patch tool. Getting below error while applying patch ***Error! Cannot find executable /app/oracle/UAT/apps/tech_st/10.1.2/bin/f60gen . Exiting.. ***Failed validating arguments. Exiti

  • How can i get a LONG RAW size? Please help me.

    Hi, I have one table (record) that contain 2 fields, image as LONG RAW and staffid as string. How can i make the select statement to get the actual size for each image? I have try to do " Select dbms_lob.getLength(image) as actualsize,staffid from re

  • Window Component, swf, and PHP

    Hi everyone, I have a simple mail form, which communicates with a PHP script on the server. When I go to the swf directly it works just fine. When I put it inside the window component it stops working. I think it has something to do with how the data