PDF output keeps on opening/poping

Hi I have created a MVC that when user clicks on a button, it would open a smartform in PDF format in a new window. But when I try to click again anything on my main window, it opens again the PDF file in a new window and the user cannot do anything more because of this. I am using this code:
<%
    IF display_url IS NOT INITIAL.
%>
      <script language="Javascript">
        window.open("<%= display_url%>").focus();
      </script>
<%
    ENDIF.
%>
Please help me solve this. Thanks.

I did a clear after opening the PDF like this:
<% IF display_url IS NOT INITIAL.%>
  <script = Javascript>
  window.open(<%=display_url%>).focus();
  <script>
<% clear display_url.
   ENDIF.
%>
And it is cleared. But when I click another button and the DO_REQUEST is called, the display_url contains the PDF url. that is why it opens again the page. I think the clearing doesn't update my class attribute (display_url).
Where can I clear the display_url so that this class attribute(display_url) will be cleared?

Similar Messages

  • Open PDF-Output in browser window with full height

    Hi,
    I must open some BIP-Reports as PDF in a browser window via URL. The problem ist, that the height of the PDF-Output is fixed, as the PDF is shown in an iframe with fixed height.
    The height can be set in the BIP preferences, but only to a fixed value (not to something like "100%"). If the height is smaller than the users browser window, then there is unused space below the pdf output. If the height is greater than the users browser window, there are two scrollbars to the right: One for the html-Page and one for the PDF.
    I tried the following options:
    1. http://<bip-server:port>/xmlpserver/public/<report-name>.xdo?_xmode=4&_xf=pdf
    -> Output is PDF, only the PDF is shown (_xmode=4), opens in same browser window but height is limited.
    2. http://<bip-server:port>/xmlpserver/public/<report-name>.xdo?_xmode=4&_xf=pdf&_xpt=1
    -> PDF is not opend in browser window, but can be downloaded or opened in a separate PDF-Viewers window.
    I would like to just open the PDF in the browser window in full height. How can I achive this?

    Hello Yesh,
    you can open PDFs as a guest user (without authentification):
    1. Allow Guest Access (Admin -> Security Configuration -> Check "Allow Guest Access" and select a folder name).
    2. Copy your Report into this guest folder
    3. You can open the Report as PDF with a link like this:
    http://(bip-server-name):9704/xmlpserver/(guest-folder-name)/(report-name)/(report-name).xdo?_xpt=0&_xf=pdf&_xmode=4(&report-parameters)
    Just replace the strings in brackets. You find a great description of the URL parameters in Tim Dexters Blog
    http://blogs.oracle.com/xmlpublisher/2006/07/accessing_xmlp_enterprise_repo.html
    I didn't find an option to set the height of the PDF-Output for the guest user in the BIP-UI. Maybe I missed something. But you can manually edit the configuration file. It is located on your BIP server direcory in the subdirectory xmlp/XMLP/Users. Select the guest users subdirectory and edit the configuration file "user~.profile".
    In this XML config file there is an entry "viewerHeight". In the Value-Tag you can enter the PDF output windows height in pixel (but unfortunaly not in % - this was the question of my original posting).
    Hope that helps...
    Sascha
    Edited by: sascha@tesat on Oct 26, 2009 9:02 AM

  • Opening PDF Output in browser

    Hi ,
    When I send a request to Report Server via WEB DB listener for PDF output report, it is generating 2 requests while opening the PDF output in the browser. If you make PDF browser integration off, it opens in Acrobat Reader properly with single request only. Has anybody come across such problem? Your help in this regards is appreciated. Thnaks in advance
    Aniruddha.

    To clarify what you posted:
    When opening the PDF document, your browser closes. When pressing the control key and opening the document, you get a dialog window (with the choices of open or save). What happens when you select open?
    This is browser behavior, nothing to do with this being a PDF file. Which browser and which platform? If you are using IE7, popup blocker is automatically enabled, and if you are viewing this on a 2003 server, you have server security settings to override. Pressing the control key allows popups.

  • Browser closing when opening PDF output in Apps

    Hello,
    When opening the concurrent request/report output (for PDF output), the browser just closes.
    The PDF output were generated thru XML Publisher (reports converted in XML Publisher - rtf).
    PDF is defined in the Viewer Options/ System Options(Viewer). I could open PDF output by
    pressing CTRL key while clicking on the output request Output button. It will give prompt on
    whether to Open or Save the PDF.
    Not sure if it's really related to XML Publisher, maybe more on concurrent request, but idea
    will be very much appreciated.
    Thanks,
    Rownald

    To clarify what you posted:
    When opening the PDF document, your browser closes. When pressing the control key and opening the document, you get a dialog window (with the choices of open or save). What happens when you select open?
    This is browser behavior, nothing to do with this being a PDF file. Which browser and which platform? If you are using IE7, popup blocker is automatically enabled, and if you are viewing this on a 2003 server, you have server security settings to override. Pressing the control key allows popups.

  • Download the trial version.  Open the program and try to convert to PDF.  Keep asking to subscribe.

    Download the trial version.  Open the program and try to convert to PDF.  Keep asking to subscribe.  Don't I haveI trial version to use?  Why do I need to subscribe?

    "the program" being what?  Can you post a screenshot of what you see: https://forums.adobe.com/thread/1070933

  • How to generate a PDF output using batch file in 10G

    Hello,
    I am using .bat file to generate a report PDF output. I have done this many times in 6i but for 10G I am unable to do the same.
    Can someone please look at the syntax below and let me know where I am going wrong.
    I understand that reports are different for 6i and 10G specially .rep file but I am sure we should be able to generate a PDF file using 10G. Please let me know.
    Thanks
    IQ
    Contents of .bat file follow
    ECHO Opening parameter form. Please do not close this window.
    C:\
    FOR /F "tokens=1 " %%I IN ('time /t') DO (SET _TIME=%%I)
    FOR /F "tokens=2 " %%I IN ('date /t') DO (SET _DATE=%%I)
    SET EXP_DATE=%_DATE:~6,4%%_DATE:~0,2%%_DATE:~3,2%_%_TIME:~0,2%%_TIME:~3,2%
    SET FILENAME=SEND_EMAIL_%EXP_DATE%_%USERNAME%.PDF
    CD C:\Users\Documents
    RWCONVERTER REPORT=C:\Users\Documents\send_email.rep USERID=scott/tiger@ORCL1 ORIENTATION=LANDSCAPE DESFORMAT=PDF DESTYPE=FILE
    DESNAME=C:\Users\\%FILENAME% PRINTJOB =NO

    Rwconverter is not used to run reports:
    rwconverter (Reports Converter) enables you to convert one or more report definitions or PL/SQL libraries from one storage format to another.
    I think you mean rwrun:
    rwrun (Reports Runtime) runs a report by starting its own in-process server (not to be confused with the default in-process Reports Server), which runs in the same JVM as the rwrun process.
    This bat file has to run on the server. There is no Reports installation on the client anymore.
    If you want to run a report from a client, you can make a bat file that calls the report url
    See: http://download.oracle.com/docs/cd/E14571_01/bi.1111/b32121/pbr_cla002.htm#i634710

  • Cannot View PDF output in Template Viewer

    Guys
    I am a newbie to the XML Publisher. I installed the following patches for the Publisher.
    Trying to view a PDF output via Viewer and getting the following log
    Log Message:-
    [042407_110204096][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setData(InputStream) is called.
    [042407_110204112][][STATEMENT] Logger.init(): *** DEBUG MODE IS OFF. ***
    [042407_110204112][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setTemplate(InputStream)is called.
    [042407_110204112][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setOutput(OutputStream)is called.
    [042407_110204112][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setOutputFormat(byte)is called with ID=1.
    [042407_110204112][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setLocale is called with 'en-US'.
    [042407_110204112][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.process() is called.
    [042407_110204112][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.generate() called.
    [042407_110204112][oracle.apps.xdo.template.FOProcessor][STATEMENT] createFO(Object, Object) is called.
    [042407_110204112][oracle.apps.xdo.common.xml.XSLT10gR1][STATEMENT] oracle.xdo Developers Kit 10.1.0.3.0 - Production
    [042407_110204112][oracle.apps.xdo.common.xml.XSLT10gR1][STATEMENT] Scalable Feature Disabled
    [042407_110204159][oracle.apps.xdo.template.fo.FOProcessingEngine][STATEMENT] Using proxy for PDF Generator
    [042407_110204237][oracle.apps.xdo.template.FOProcessor][STATEMENT] Calling FOProcessingEngine.process()
    [042407_110204237][oracle.apps.xdo.template.fo.datatype.AttrKey][STATEMENT] WARNING: Found undetermined AttrKey: xmlns:xlink
    [042407_110204252][][STATEMENT] [ PDF GENERATOR ]---------------------------------------------
    [042407_110204252][][STATEMENT] XDO version = Oracle XML Publisher 5.6.2
    [042407_110204252][][STATEMENT] java.home = C:\Program Files\Java\j2re1.4.2_06
    [042407_110204252][][STATEMENT] XDO_TOP = null
    [042407_110204252][][STATEMENT] Config Path = null
    [042407_110204252][][STATEMENT] Debug Cfg Path= null
    [042407_110204252][][STATEMENT] Font dir = C:\Program Files\Java\j2re1.4.2_06\lib\fonts\
    [042407_110204252][][STATEMENT] Locale = en-US
    [042407_110204252][][STATEMENT] Fallback font = type1.Helvetica
    [042407_110204252][][STATEMENT] [ PDF GENERATOR PROPERTIES ]---------------------------------
    [042407_110204252][][STATEMENT] digit-substitution=null(not set)
    [042407_110204424][][STATEMENT] font.ALBANY WT J.normal.normal=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ALBANWTJ.ttf
    [042407_110204424][][STATEMENT] font.ALBANY WT K.normal.normal=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ALBANWTK.ttf
    [042407_110204424][][STATEMENT] font.ALBANY WT SC.normal.normal=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ALBANWTS.ttf
    [042407_110204424][][STATEMENT] font.ALBANY WT TC.normal.normal=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ALBANWTT.ttf
    [042407_110204424][][STATEMENT] font.ALBANY WT.normal.normal=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ALBANYWT.ttf
    [042407_110204424][][STATEMENT] font.ANDALE DUOSPACE WT J.normal.bold=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ADUOJB.ttf
    [042407_110204424][][STATEMENT] font.ANDALE DUOSPACE WT J.normal.normal=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ADUOJ.ttf
    [042407_110204424][][STATEMENT] font.ANDALE DUOSPACE WT K.normal.bold=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ADUOKB.ttf
    [042407_110204533][][STATEMENT] font.ANDALE DUOSPACE WT K.normal.normal=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ADUOK.ttf
    [042407_110204533][][STATEMENT] font.ANDALE DUOSPACE WT SC.normal.bold=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ADUOSCB.ttf
    [042407_110204533][][STATEMENT] font.ANDALE DUOSPACE WT SC.normal.normal=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ADUOSC.ttf
    [042407_110204533][][STATEMENT] font.ANDALE DUOSPACE WT TC.normal.bold=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ADUOTCB.ttf
    [042407_110204533][][STATEMENT] font.ANDALE DUOSPACE WT TC.normal.normal=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ADUOTC.ttf
    [042407_110204533][][STATEMENT] font.ANDALE DUOSPACE WT.normal.bold=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ADUOB.ttf
    [042407_110204533][][STATEMENT] font.ANDALE DUOSPACE WT.normal.normal=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ADUO.ttf
    [042407_110204533][][STATEMENT] font.CG TIMES.italic.bold=type1.Times-BoldItalic
    [042407_110204627][][STATEMENT] font.CG TIMES.italic.normal=type1.Times-Italic
    [042407_110204627][][STATEMENT] font.CG TIMES.normal.bold=type1.Times-Bold
    [042407_110204627][][STATEMENT] font.CG TIMES.normal.normal=type1.Times-Roman
    [042407_110204627][][STATEMENT] font.COURIER NEW.italic.bold=type1.Courier-BoldOblique
    [042407_110204627][][STATEMENT] font.COURIER NEW.italic.normal=type1.Courier-Oblique
    [042407_110204627][][STATEMENT] font.COURIER NEW.normal.bold=type1.Courier-Bold
    [042407_110204627][][STATEMENT] font.COURIER NEW.normal.normal=type1.Courier
    [042407_110204627][][STATEMENT] font.COURIER.italic.bold=type1.Courier-BoldOblique
    [042407_110204627][][STATEMENT] font.COURIER.italic.normal=type1.Courier-Oblique
    [042407_110204627][][STATEMENT] font.COURIER.normal.bold=type1.Courier-Bold
    [042407_110204627][][STATEMENT] font.COURIER.normal.normal=type1.Courier
    [042407_110204627][][STATEMENT] font.DEFAULT.italic.bold=type1.Helvetica-BoldOblique
    [042407_110204627][][STATEMENT] font.DEFAULT.italic.normal=type1.Helvetica-Oblique
    [042407_110204783][][STATEMENT] font.DEFAULT.normal.bold=type1.Helvetica-Bold
    [042407_110204783][][STATEMENT] font.DEFAULT.normal.normal=type1.Helvetica
    [042407_110204783][][STATEMENT] font.GLFALLBACK.normal.normal=truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ALBANWTJ.ttf
    [042407_110204783][][STATEMENT] font.HELVETICA.italic.bold=type1.Helvetica-BoldOblique
    [042407_110204783][][STATEMENT] font.HELVETICA.italic.normal=type1.Helvetica-Oblique
    [042407_110204783][][STATEMENT] font.HELVETICA.normal.bold=type1.Helvetica-Bold
    [042407_110204783][][STATEMENT] font.HELVETICA.normal.normal=type1.Helvetica
    [042407_110204783][][STATEMENT] font.MONOSPACE.italic.bold=type1.Courier-BoldOblique
    [042407_110204783][][STATEMENT] font.MONOSPACE.italic.normal=type1.Courier-Oblique
    [042407_110204783][][STATEMENT] font.MONOSPACE.normal.bold=type1.Courier-Bold
    [042407_110204783][][STATEMENT] font.MONOSPACE.normal.normal=type1.Courier
    [042407_110204783][][STATEMENT] font.SANS-SERIF.italic.bold=type1.Helvetica-BoldOblique
    [042407_110204923][][STATEMENT] font.SANS-SERIF.italic.normal=type1.Helvetica-Oblique
    [042407_110204923][][STATEMENT] font.SANS-SERIF.normal.bold=type1.Helvetica-Bold
    [042407_110204923][][STATEMENT] font.SANS-SERIF.normal.normal=type1.Helvetica
    [042407_110204923][][STATEMENT] font.SERIF.italic.bold=type1.Times-BoldItalic
    [042407_110204923][][STATEMENT] font.SERIF.italic.normal=type1.Times-Italic
    [042407_110204923][][STATEMENT] font.SERIF.normal.bold=type1.Times-Bold
    [042407_110204923][][STATEMENT] font.SERIF.normal.normal=type1.Times-Roman
    [042407_110204923][][STATEMENT] font.SYMBOL.normal.normal=type1.Symbol
    [042407_110204923][][STATEMENT] font.TIMES NEW ROMAN.italic.bold=type1.Times-BoldItalic
    [042407_110204923][][STATEMENT] font.TIMES NEW ROMAN.italic.normal=type1.Times-Italic
    [042407_110204923][][STATEMENT] font.TIMES NEW ROMAN.normal.bold=type1.Times-Bold
    [042407_110204923][][STATEMENT] font.TIMES NEW ROMAN.normal.normal=type1.Times-Roman
    [042407_110204923][][STATEMENT] font.TIMES.italic.bold=type1.Times-BoldItalic
    [042407_110205079][][STATEMENT] font.TIMES.italic.normal=type1.Times-Italic
    [042407_110205079][][STATEMENT] font.TIMES.normal.bold=type1.Times-Bold
    [042407_110205079][][STATEMENT] font.TIMES.normal.normal=type1.Times-Roman
    [042407_110205079][][STATEMENT] font.ZAPFDINGBATS.normal.normal=type1.ZapfDingbats
    [042407_110205079][][STATEMENT] pdf-changes-allowed=0
    [042407_110205079][][STATEMENT] pdf-compression=true
    [042407_110205079][][STATEMENT] pdf-enable-accessibility=true
    [042407_110205079][][STATEMENT] pdf-enable-copying=false
    [042407_110205079][][STATEMENT] pdf-encryption-level=0
    [042407_110205079][][STATEMENT] pdf-hide-menubar=false
    [042407_110205079][][STATEMENT] pdf-hide-toolbar=false
    [042407_110205079][][STATEMENT] pdf-no-accff=false
    [042407_110205079][][STATEMENT] pdf-no-cceda=false
    [042407_110205079][][STATEMENT] pdf-no-changing-the-document=false
    [042407_110205079][][STATEMENT] pdf-no-printing=false
    [042407_110205079][][STATEMENT] pdf-open-password=
    [042407_110205079][][STATEMENT] pdf-permissions=0
    [042407_110205282][][STATEMENT] pdf-permissions-password=
    [042407_110205282][][STATEMENT] pdf-printing-allowed=0
    [042407_110205282][][STATEMENT] pdf-replace-smartquotes=true
    [042407_110205282][][STATEMENT] pdf-security=false
    [042407_110205282][][STATEMENT] ------------------------------------------------------
    [042407_110205282][][STATEMENT] Rendering page [1]
    [042407_110205282][oracle.apps.xdo.common.font.FontFactory][STATEMENT] Type1 font created: Helvetica
    [042407_110205282][oracle.apps.xdo.common.font.FontFactory][STATEMENT] TrueType font created: C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ALBANWTJ.ttf(0)
    [042407_110205282][oracle.apps.xdo.common.font.FontFactory][STATEMENT] Type1 font created: Times-Roman
    [042407_110205298][][STATEMENT] Phase2 time used: 16ms
    [042407_110205298][][STATEMENT] Continue rendering page [1]
    [042407_110205298][][STATEMENT] Phase2 time used: 0ms
    [042407_110205298][][STATEMENT] Continue rendering page [1]
    [042407_110205298][][STATEMENT] Phase2 time used: 0ms
    [042407_110205298][][STATEMENT] Continue rendering page [1]
    [042407_110205469][][STATEMENT] Phase2 time used: 171ms
    [042407_110205469][][STATEMENT] Continue rendering page [1]
    [042407_110205469][][STATEMENT] Phase2 time used: 0ms
    [042407_110205469][][STATEMENT] Continue rendering page [1]
    [042407_110205485][][STATEMENT] Phase2 time used: 16ms
    [042407_110205485][][STATEMENT] Continue rendering page [1]
    [042407_110205485][][STATEMENT] Phase2 time used: 0ms
    [042407_110205485][][STATEMENT] Continue rendering page [1]
    [042407_110205485][][STATEMENT] Phase2 time used: 0ms
    [042407_110205485][][STATEMENT] Continue rendering page [1]
    [042407_110205485][][STATEMENT] Generating page [1]
    [042407_110205485][][STATEMENT] Phase2 time used: 0ms
    [042407_110205485][][STATEMENT] Total time used: 1248ms for processing XSL-FO
    [042407_110205578][][STATEMENT] ProxyGenerator creating new page: 1
    [042407_110205594][][STATEMENT] Starting Generator.close()
    [042407_110205594][oracle.apps.xdo.common.font.FontFactory][STATEMENT] truetype.C:\Program Files\Java\j2re1.4.2_06\lib\fonts\ALBANWTJ.ttf closed.
    [042407_110205594][][STATEMENT] Generator.close() took: 0ms
    [042407_110205594][][STATEMENT] Total time to process commands from ProxyGenerator tmp file: 109ms
    [042407_110205594][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) is called.
    [042407_110205781][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) done. All inputs are cleared.
    End of Process.
    Time: 1.841 sec.
    Successfully generated xdo49386.pdf
    Spawning viewer...
    Error Message:-
    Windows cannot find 'C:\PROGRA~1\Oracle\XMLPUB~1\samples\tmp\xdo49386.pdf'. Make sure you typed the name correctly, and then try again

    Hi
    Can you find the document under that directory ?
    Tim

  • Oracle Report, How to Display Polish Characters in a PDF Output

    Environment :
    Oracle Application Server version 10.1.2.0.2 on Red Hat 4 Enterprise (Kernel 2.6.9-42.0.3 , 32 bit) Oracle Database Version 10.2.0.3.0 Our character set of database is UTF8
    I have trouble to display polish characters in Reports Output. We develop on Windows XP machines. I can see the Polish Caharacters in the Reports Builder using several fonts (arial, arial unicode, Times new roman, verdana...) during design time or when running with the paper layout. But when the report deployed to application server running on the linux, the polish characters are replaced by symbols.
    Even under Windows, when I select 'generate to a PDF' file option, the characters are not displayed correctly (When I open the generated PDF file with Acrobat reader and go to Document Properties / Fonts, I see the Fonts are always replaced with Adobe Sans MM)
    Using the Forms Applications running on the same application server we have no trouble dealing/displaying with the characters (Ąą ĆćĘę Ł ł ŃńÓóŚ ś Ź ź Ż ż ß Đ đ € )
    NLS_LANG setting is AMERICAN_AMERICA.UTF8 on the Linux Box and AMERICAN_AMERICA.WE8MSWIN1250 is on the Development machines. (have tried a number of different NLS_LANG settings on the development box as well with no luck).
    Any direction would be appreciated.

    Hi,
    You have several different approaches to fix this problem. First of all, you would be able to generate the PDF output with Font Subsetting setup and be able to see the Polish characters correctly when running the output with destype=cache&desformat=pdf. The following metalink documents would guide you with this setup :
    Note.207711.1 "How to Use Font Subsetting in Reports 9i and 10g for PDF Output"
    As at design time you use many different Windows specific fonts, I also advice you to check the following document :
    Note.356221.1 "A Practical Methodology on Porting Reports from Windows to Unix with Different Fonts"
    Once the PDF output is generated properly with correct characters, then if you need to use "destype=printer" for direct print, rather than "destype=cache" to display the output in browser, then you can use the "PDFPrint" pluggable destination, which is located in :
    http://www.oracle.com/technology/products/reports/pluginxchange/index.html
    Regards,
    -Bulent

  • How to set the margins for the pdf output in BI Publisher

    Hi There,
    When we view a report in PDF format in BI Publisher, we get pdf output in an iframe.
    There are two scroll bars on the right side. When we scroll down the outer scrollbar to the bottom, there is a white space between the bottom border of the pdf report and bottom portion of the window.
    We are calling BI report from apex by passing the url of the report. In this case the white space at the bottom is quite evident and seems that lot of space is being wasted.
    Can somebody help me, how to remove or minimize this white space.
    Thanks
    Krishna
    Edited by: Yogi on Aug 30, 2010 5:41 PM

    Hello,
    open your report for editing, so you see the page with your layouts. Then click on the Link "Show as List" on the upper right. In the List of the output formats select "FO Formatted XML". This enables FO Export.
    Then execute your report, click on the small menu item at the upper right. The Menu opens, select Export -> FO.
    Hope that helps.
    Greetimgs,
    Sascha

  • Special character displaying as ? in PDF output

    Hi,
    I am generating BI publisher report through Oracle application.
    My Pdf output is ok for Finnish and German language. But for polish font I am getting ? in PDF output. When I open XML file it says
    " The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    An invalid character was found in text content. Error processing resource"
    In database Polish font is stored perfectly.
    I tried this <?xml version="1.0" encoding="UTF-8" ?> for generating XML. But I did not work.
    I do not know what is the problem. Please help me.
    Regards,
    Faiyaz

    create or edit xdo.cfg file.
    For XML Publisher Desktop it is ( in my case) c:\Program Files\Oracle\XML Publisher Desktop\Template Builder for Word\config\.
    Find section fonts, add your font, that support polish. like that
    <font family="Times New Roman" style="normal" weight="normal">
    <truetype path="C:\WINDOWS\Fonts\times.ttf" />
    </font>
    For XML publisher is Note:399518.1. I think it can help you.

  • Adding Hyperlinks in Report shuould take action in PDF Output

    Hi All,
    I had a requirement with reports
    Explanation of the requirement.
    I had a report aaa.rdf which gives a (one)employee monthly details.
    which need to be output in PDF.
    now the requuirement is
    I had added labels "next-month" and "previous-month" labels at either side of report title.
    I need the code to kept in these labels such that when this report is executed and taken into PDF file, when user
    user clicks on the "next-month" or "previous-month" in that PDF file, the action to take is it should re-ran the same report(aaa.rdf) and should display the output in PDF in the same window but now the output should show the
    coressponding next-month or previous-month results respectively of that employee.
    please let me know if this make sense.
    please guide for the above requirement.
    this is very very urgent your help will be appreciated.
    Thanks in advance
    RRM

    Hi,
    it is not too late ....
    It's possible to add such Hyperlinks to the pdf-Output of a report.
    With use of the built-in rw.set_hyperlink('hyperlink') in a format trigge you can realize that. "hyperlink" is for example then something like:
    '/reports/rwservlet?destype=cache&desformat=pdf&report=drilldetail.jsp&userid=scott/tiger@josi&p_deptno='||:deptno
    In your case it's a call to the same report you run before and you had to set your month-parameter in the call depending your current month (next or previous).
    With srw.set_hyperlink_attrs('string') it's possible to add additional attributes like for example
         srw.set_hyperlink_attrs('target=_new')
    which opens a new browser window.
    This works for HTML & PDF.
    Regards
    Rainer

  • Help needed with Bridge PDF Output Module

    Hi:
    I posted this in the Photoshop forum but got no replies except to try here. I created a PDF presentation with 34 jpg images which I want to send to a publisher by using the PDF output module in Bridge. the images have the sRGB color profile embedded in them and the colors look vibrant when the jpgs are viewed in CS 4. However the PDF that opens in Adobe Reader shows the colors looking very dull. Is there a way to view the PDF in CS 4 or a way to make them appear as they should in Adobe Reader? Maybe Adobe Reader has no color management capabilities, I don't know. Any help would be greatly appreciated.

    Hi:
    I posted this in the Photoshop forum but got no replies except to try here. I created a PDF presentation with 34 jpg images which I want to send to a publisher by using the PDF output module in Bridge. the images have the sRGB color profile embedded in them and the colors look vibrant when the jpgs are viewed in CS 4. However the PDF that opens in Adobe Reader shows the colors looking very dull. Is there a way to view the PDF in CS 4 or a way to make them appear as they should in Adobe Reader? Maybe Adobe Reader has no color management capabilities, I don't know. Any help would be greatly appreciated.

  • Line objects not showing in pdf output in xmlp 5.6.1

    Hello,
    Is there a bug or just a version issue when trying to produce pdf output using xmlp 5.6.1 Enterprise Edition from a template built in xmlp 5.6.2 stand alone? Different versions of pdf too. The xmlp 5.6.1 EE uses Adobe 7.0.7 and I use 7.0.0 for my dpf output. The issue is that the template built using 5.6.2 has line objects in the rtf file. When this template is registered in xmlp 5.6.1 EE and the report is generated the lines don't show up in the pdf.
    Any one?
    Ryan

    I opened a TAR and here is the answer. My template definition was wrong because I directly used my data template xml file to define my template using template builder.
    Here are all the steps to use XML data template under apps.
    To use data templates, do the following:
    1- Create the data template similar to the following structure
    2- Login to responsibility "XML PUBLISHER ADMINISTRATOR" -> Data Definition
    2.1 upload the data template (that is made in step1)
    2.2 Insert a new code that is not find the concurrent request short name.
    3- Login to system administrator -> concurrent -> program -> define (define a new concurrent request as following)
    3.1 use execute XDODTEXE (it takes the data definition in step 2 and shall execute the query to obtain XML output)
    3.2 Output format = XML
    3.3 request short name as that defined in step (2.2)
    4- Add the request to a request group
    5- The the concurrent request and get the created XML output
    6- Use the created XML Output in (step 5) to create your template layout using Template builder vers
    ion 5.5
    7- After creating the template go to responsibility "XML PUBLISHER ADMINISTRATOR" -> Templates
    7.1 define a new template
    7.2 use the same data definition that you created at (step 2)
    7.3 Use the same code as in step (2.2)
    After all the above steps you shall get the output as you wish. The main link between Data template and the concurrent request that execute the data template to generate the XML output is the request short name and the data template code.
    Hint:
    request short name = data template code.

  • Barcode in PDF output not coming in Oracle R12.1.3

    Hi,
    We have a rtf template for Invoice report. In this report we have to display barcode in PDF output. In our development instance barcode is coming properly. But in our test instance barcode is not coming(same template is available in Development and Test instance).
    We are using wocrb.ttf and w128l.ttf font files and we have these files available at $OA_JRE_TOP/lib/fonts path.
    Also, we have config file available on $OA_JRE_TOP/lib directory. and this config file has correct path of both the font files.
    Still the barcode is not coming in Test instance.
    Request you all to please help me with this issue.
    Thanks,
    SA

    PDF requires the font be registered correctly, since it is not appearing you have missed something in your configuration.
    The most common error is the font family name does not exactly match the font name in Word. (Open the font on your PC and the name is present there also.)
    You can use the xdodebug.cfg troubleshooting method,  then see what error appears in the xdo.log when the font is accessed.
    See the following note for xdo.log:
    Note 364547.1 : Troubleshooting Oracle XML Publisher For The Oracle E-Business Suite
    Thank you
    Eugen

  • Error in Getting PDF Output

    Hi,
    I am using single RTF for multiple layout. By using Choose syntax i am calling layout based on condition. But its throw an exception when it try to publish pdf output *"There was an error opening this document . This file cannot be opened because it has no pages"*.
    My scenario was want to Publish PO report based on PO type. Different layout for PO type.
    Standard PO -->
    Layout A
    Blanket PO -->
    Layout B
    Created single RTF file , in 1st designed layoutA  and in 2nd page of Same RTF file  designed Layout B .
    Syntax i am using before the loop start was below:-
    *<?Choose?><?when:PO_TYPE='standard'?>*
    Designed layout A structure
    *<?end when?>---------->last statement in Layout A*
    In 2nd page of same RTF
    *<?otherwise?>*
    Designed layout B structure
    *<?end otherwise?><?end choose?> ------------> last statement in Layout B*
    Please help me..
    Thanks in advance
    --Bennett                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi,
    I am not found any error in syntax wise in RTF. When i previewing through desktop version only i am facing these exception.. And when i register in oracle EBS getting the same one..
    Thanks in advance.
    --Bennet                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Video out on ipod 160 classic

    I was looking into buy a classic ipod but dosen't the video out put only work through the bottom of the ipod and i heard on the video cable to the new ipod instead of the cable having a yellow end it has a blue end for video my tv's only have a yello

  • How to start from middle of a hierarchy

    I am looking to put a hierarchy dimension on my rows but want to start, not at the top node, but some two or three levels down. How can I specify this in OBIEE 11 G? For example, my hierarchy looks like this: GL Accounts All Accounts Profit Expenses

  • Cant update n73 HELP

    I have the dutch version of the N73. But the nsu cant fing my N73. I can connect with pcsuite, but nsu dont find it. I have clean install of vista and pc suite 6.84

  • IPhone 4 with Otterbox Commuter Case...Do any third party docks work???

    Hello, I have a Otterbox Commuter on my iPhone 4. Does anyone know of any docks that will allow me to charge my iPhone with its case on? I appreciate any advice!!

  • Elements and Lightroom - working together

    Since I shoot virtually all my images in RAW format I've been playing with Lightroom as I find Elements RAW processing a little cumbersome. I've worked out a process that suits me although it could still do with some refining, so I thought I'd share