Displaying an Oracle Report

In order to run an Oracle 10g Report from HTML DB I have done the following
In my application substitutions I have
REPORT_URL http://200.0.1.198:7778/reports/rwservlet?USERID=*****/*****@HTML&
On my report button the URL is
&REPORT_URL.&module=CI_FORM_80.RDF&DESTYPE=FILE&DESFORMAT=PDF
The report runs to a file.
I know nothing about java, so how do I code this to show the Oracle
Report in a new window/browser

http://200.0.1.198:7778/reports/rwservlet?USERID=****
*/*****@HTML&For security reasons you shouldn't hardcode the userid in the url.
Use a mappping in the configuration file cgicmd.dat instead (you find it usually here: $ORACLE_HOME/reports/conf).
You could use a hyperlink with javascript:popUp('&REPORT_URL.&module=CI_FORM_80.RDF&DESTYPE=FILE&DESFORMAT=PDF')
to display the report in a new window.
~Dietmar.

Similar Messages

  • Display Integrated Oracle Report in New Browser Window

    Hi All,
    I am using APEX 3.0.1 and Reports Builder 10g and have integrated my Oracle Reports (.rdf) successfully with APEX.
    The trouble is that the report output (in PDF format) is opening in the same browser window as my APEX application and I would like to spawn a new browser window to display the report output.
    The report is being called from a button with a Target of URL and the URL Target is:
    &REPORTS_URL.&module=DEBITNOTE_REP.rdf&destype=cache&desformat=pdf&P_DEBITNOTEID=&P73_DEBITNOTEID.
    Kind Regards,
    Gary.

    Hi Garry,
    Had to do the same thing last week.
    1. Create a javascript function that accepts the report parameters and calls the window.open function for the reports URL
    2. Change the URL on the report button to call this new function
    It might also be worth using a cmdfile (see reports doco) to simplify the URL
    cheers,
    Ron

  • Japanese Characters (Kanji) to be displayed in Oracle Reports

    Hi,
    We are developing an Oracle Report where we need to display Japanese (Kanji) characters in the report header. The display is static and hence the Kanji script can be a label.
    However when we copy paste the Kanji script on the report layout in a boiler plate text we see only question marks.
    Can someone help.
    Regards
    Harsh

    WITH DATA AS (SELECT 'PO1234' CUST_PO_NUMBER, '1P1' ITEM_NUMBER, 20 QUANTITY FROM DUAL
                  UNION ALL
                  SELECT 'PO3456' CUST_PO_NUMBER, '1P2' ITEM_NUMBER, 15 QUANTITY FROM DUAL
         COUNTER AS (SELECT LEVEL LVL FROM DUAL CONNECT BY LEVEL<1000)
    SELECT * FROM DATA, COUNTER WHERE LVL<=QUANTITYreplace the first with-path (data) with your table

  • Japanese Charaters (Kanji) to be displayed in Oracle Reports

    Hi,
    We are developing an Oracle Report where we need to display Japanese (Kanji) charecters in the report header. The display is static and hence the Kanji script can be a label.
    However when we copy paste the Kanji script on the report layout in a boiler plate text we see only question marks.
    Can someone help.
    Regards
    Harsh

    WITH DATA AS (SELECT 'PO1234' CUST_PO_NUMBER, '1P1' ITEM_NUMBER, 20 QUANTITY FROM DUAL
                  UNION ALL
                  SELECT 'PO3456' CUST_PO_NUMBER, '1P2' ITEM_NUMBER, 15 QUANTITY FROM DUAL
         COUNTER AS (SELECT LEVEL LVL FROM DUAL CONNECT BY LEVEL<1000)
    SELECT * FROM DATA, COUNTER WHERE LVL<=QUANTITYreplace the first with-path (data) with your table

  • How to fixed no.of characters on oracle reports

    hi 2 all
    Anybody know that how to fixed no. of character display on oracle reports.This can also be done through substr function but if any another option is available in oracle report builder so plz inform me.
    Thanks
    Zulqarnain

    When you use 'Fixed' for vertical elasticity property, automatically data will be fixed to size of field. Define the field in layout model in character mode with size required.

  • Display Oracle Report on new window

    Hi,
    How can I display Oracle report from HTML DB on a new browser window? I have branch to this report. Thanks much for your help.
    Lakshmi

    Search this forum for "new window". You should find it. Try:
    checkbox and report page in new window

  • Getting Error While Displaying web page in Oracle Report 11g

    Hi,
    I am new to Oracle reports 11g. I have stuck into an error. While I'm trying to display the web page it says "No such Web command ()".
    I am using following URL to call the report.
    http://hostname:port/reports/rwservlet/?server=repserver&report=a.jsp&destype=cache&desformat=htmlcss&userid=scott/tiger@db
    Please help me out from this.

    Hi Rupesh,
    Thanks a lot removing web solved my problem.
    My second problem is
    1) SAP xMII >Navigation services>Navigation do following
    a) From the account name pull down menu select everyone
    b)In the navigation tree tab page,choose Navigation Item >Add>Child
    c)In the loading content dialog box,enter a name , for example,"Test"
    d)choose."..."
    e)In the File Browse dialog box,open the CM folder and navigate to teh QM folder
    Select ZPPWeb.htm and choose Ok
    After this I get error message as
    "Can't move focus to the control because it is invisible , not enabled or of a type that does not accept the focus".
    It does not add my htm file to the navigation link
    Thanks in advance
    Regards Namita

  • Image not displaying in pdf report using XSL-FO and using Oracle 11g databa

    Good Afternoon,
    I have created over 15 reports using XSL-fo, with the following syntax to display an image on the pdf:
    fo:block margin-left="0.24cm" margin-right="0.27cm" margin-top="0.0cm" ><fo:external-graphic content-width="scale-to-fit" content-height="scale-to-fit" width="1.73cm" height="1.57cm" >
    <xsl:attribute name="src">'url("http://readiness:7780/i/marforcom_symbol_rpts.gif")'</xsl:attribute></fo:external-graphic>
    </fo:block>
    This syntax works fine when using Oracle 10g, now my database has been upgraded to 11g and my image no longer displays in the reports. I have already upload the image into the database as a workspace image.
    I have tried to point the image @ the image by using url(#WORKSPACE_IMAGE#marforcom_symbol_rpts.gif)
    or <img src ="#IMAGE_PREFIX#marforcom_symbol_rpts.gif")
    and it still doesn't work.
    I have searched this forum trying to come up with a solution that will fix my problem and am unable to.
    Current config: Oracle 11g, using pl/sql gateway.
    I need to know how to point the xsl-fo file to the database, where the image now resides.
    Thanks,
    Mary
    Edited by: MaryM on Jul 25, 2012 3:15 PM
    Edited by: MaryM on Jul 25, 2012 3:51 PM

    Hi,
    I think you need load images to database XDB virtual directory /i/ and then use #IMAGE_PREFIX# substitution.
    This might help to access /i/
    http://www.apex-blog.com/oracle-apex/accessing-i-using-ftp-170.html
    Or use this to load images
    http://oracleinsights.blogspot.fi/2012/05/loading-images-into-oracle-xdb.html
    Regards,
    Jari
    My Blog: http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Displaying Image in a an Oracle report

    Hi all,
    I have a problem, I save images in a table, in a column of LONG RAW data type, I want to make an Oracle report using (Developer/2000 Reports Designer), & displaying this image in the report by extracting it from that table as LONG RAW data type, can any help me?
    Thanks in Advance

    Hi,
    Hope the below two links helps you to retrieve image from long raw field
    Image retrieval from long raw field in Oracle
    http://www.justskins.com/forums/image-retrieval-from-long-17134.html
    Converting LONG RAW to image
    http://dbaforums.org/oracle/index.php?showtopic=16800
    Thanks,
    Balaji K.

  • Oracle reports to display PDF/Excel files stored in the Database

    can we use Oracle reports to view/display PDF/Excel files stored in the Database? Thanks Lalitha

    A document stored in the database can be easily retrieved in or via the browser using mod_plsql. Simplified:
    select content, mime_type
    into v_blob, v_mime_type
    from ...
    owa_util.mime_header(nvl(v_mimetype,'application/octet'),false);
    htp.p('Content-length: ' || dbms_lob.getlength(v_blob));
    owa_util.http_header_close;
    wpg_docload.download_file(v_blob);So, the link in your report should point to this database procedure.
    Edited by: InoL on Mar 1, 2011 4:17 PM

  • Oracle Reports to display in IE 5.5 browsers

    Oracle reports (6i) display fine in IE 4/5.0 browsers, butr those with 5.5 display a blank screen.

    hello,
    there are some issues with showing PDFs produced by the reports server in IE55 that should be solved with one of the latest patches.
    please check this issue with oracle support services.
    regards,
    the oracle reports team

  • Displaying files in Reports6 (Oracle Reports Team) URGENT

    HELP! I cannot come up with a solution to this problem as yet and
    I am desperate.
    I have two different file formats
    format 1: 4 fields ==> Branch, Policy Number, Due Date, Amount
    length :43 characters.
    format 2: 8 fields ==> the above plus others
    length :73 characters.
    NB. This is the structure of two separate client files.
    Aim: To display the contents of the files to the client.
    What has been tried:
    1. Text_io.getline was used to read each record from file into
    fields on the screen(this is done within a procedure). In
    the Data Model view the company name was retrieved so that
    the appropriate format (format 1 or 2)could be chosen. In the
    layout model depending on the company the corresponding
    fields were displayed. However when the program was run only
    the last record in the file was displayed. How does one get
    Reports6 to show all the records that was read?
    2. The repeating frame concept does not apply as I simply want
    to display files read and even when a select was done where
    I know the values would be repeated this did not work - only
    the last line of the file was displayed.
    3. Again another dummy select was tried with the intent of
    using the 'Read From File' property. This did not apply in
    my situation. ( Or it could be that I do not understand how
    to use this).
    Any help that is forthcoming is greatly appreciated.
    Thanks in advance.

    hello,
    this request sounds now more as if you want to use the text-file
    as a datasource.
    unfortunatly this is not possible with reports 6i as the support
    for text-files as datasources will be introduced with the next
    (upcoming) release.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to display flex fileld data in Oracle Reports

    Hi All,
    I am using Oracle Reports to display Key Flex field information of Oracle Applications in reports by using SRW.user_exit.
    These are steps which I did during my development time
    P_FLEX_DATA
    P_STRUCT_NUM intial value as 101
    defined as Parameters, in P_FLEX_DATA calling all segment values as shown in standard reports.
    I've used P_FLEX_DATA in sql query of the report and defined two formula cols C_FLEXFIELD and C_DESC_ALL and added below mentioned codes:
    C_FLEXFIELD formula column query:
    SRW.REFERENCE(:P_STRUCT_NUM);
    SRW.REFERENCE(:C_FLEXDATA);
    SRW.USER_EXIT('FND FLEXIDVAL
    CODE="GL#"
    NUM=":P_STRUCT_NUM"
    APPL_SHORT_NAME="SQLGL"
    DATA=":C_FLEXDATA"
    VALUE=":C_FLEXFIELD"
    DISPLAY="ALL"');
    RETURN(:C_FLEXFIELD);
    C_DESC_ALL formula column query:
    SRW.REFERENCE(:P_STRUCT_NUM);
    SRW.REFERENCE(:C_FLEXDATA);
    SRW.USER_EXIT('FND FLEXIDVAL
    CODE="GL#"
    NUM=":P_STRUCT_NUM"
    APPL_SHORT_NAME="SQLGL"
    DATA=":C_FLEXDATA"
    DESCRIPTION=":C_DESC_ALL"
    DISPLAY="ALL"');
    RETURN(:C_DESC_ALL);
    But I did not find any output for these two columns. I want to display flex fileld description as per code combination id wise in reports. I am using reports 10g for developing the reports. Please help in this regard.
    Regards,
    Prasad

    How do you execute the call for a Report?
    URL?

  • Internal Server Error when Displaying Total No. of Pages in Oracle Reports

    Hello all,
    I've already posted an almost similar message in the Developer Tools forums but would like to post it again here since we think that this is a problem with the report server (Maybe we're missing a patch, a configuration value not set properly or resources are not enough like memory).
    We're using Oracle Reports Server ver10.1.2.0.2 and we're encountering an Internal Server Error when a particular report retrieves around 10K records which displays on each page the current page and the total no of pages. When we only display the current page, the report does not encounter any error.
    When we enabled the tracing options, it just showed that it encountered a Null pointer exception.
    [2006/7/13 11:1:4:703] Debug 50103 (EngineImpl:EngineImpl) : CInitEngine returns 0
    [2006/7/13 11:1:4:765] Exception 50125 (java.lang.NullPointerException
    at oracle.reports.engine.RWEngine.init(RWEngine.java:343)
    at oracle reports.engine.RWEngine.main(RWEngine.java:60)
    ): Internal error java.lang.NullPointerException
    And according to metalink (Doc Id:315228.1), we should just remove the total pages in our report. Problem is that this isn't an option for us. The document also mentioned about something about timeouts. We have already tried setting the request timeout parameter of the HTTP server to larger values but it still doesn't solve the problem.
    Is there a workaround for this?
    Any help would really be greatly appreciated.

    Hi All,
    We really need a workaround for this error. When we enabled the tracing options, it just showed that it encountered a Null pointer exception.
    [2006/7/13 11:1:4:703] Debug 50103 (EngineImpl:EngineImpl) : CInitEngine returns 0
    [2006/7/13 11:1:4:765] Exception 50125 (java.lang.NullPointerException
    at oracle.reports.engine.RWEngine.init(RWEngine.java:343)
    at oracle reports.engine.RWEngine.main(RWEngine.java:60)
    ): Internal error java.lang.NullPointerException
    HELP!

  • Displaying Image in Oracle Reports 9i Web view

    I can not just display the image in the web view of the Oracle reports version 9i. It is displaying in the paper layout view though. It is a database field queried with all other columns. Can somebody please tell me how to do this?

    Hi Ujjal,
    Search for a line similar to the one shown below in your report's web source (that is, the code that shows the image) - it will be in the data area generated by the Report Wizard:
    <td <rw:headers id="HFadphoto241" src="HBadphoto241"/> class="OraCellText"><rw:field id="Fadphoto241" src="ad_photo" nullValue=" "> F_ad_photo </rw:field></td>
    You need to change it to the following:
    <td <rw:headers id="HFadphoto241" src="HBadphoto241"/> class="OraCellText"><rw:field id="Fadphoto241" src="ad_photo" nullValue=" " containsHtml="yes"> F_ad_photo </rw:field></td>
    Notice the addition of:
    containsHtml="yes"
    Navneet.

Maybe you are looking for