Viewing output of report

When I submit my request and open it using Oracle applications (via clicking on the Output button), the reports appears correctly integrated with teh template. However, when I transfer the output file to my c drive and open it, it only opens as XML format. How do i get the formated version (ie the RTF version?)

Hi
What flavor of BIP are you using i.e. EBS, PeopleSoft, etc? Im assuming the EBS flavor.
When you say transfer are you transferring the oXXXXXX.out file? If so, this is the XML file. In 11.5.10 the conc manager now generated two files - the XML goes to the 'out' file and the formatted output e.g. PDF will go to a new file of the format
REPORTNAME_REQID_COUNT.PDF|RTF|EXCEL|HTML
where COUNT is used to track re-published versions of the file. Example name
XDOBURSTREP_2916106_1.PDF
Regards
Tim

Similar Messages

  • View output of report

    When i try to view the output of any report in oracle apps 11i on sun solaris, i am getting an error saying Document contains no data, Contact administrator. Can anybody help in this regard

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Malarvizhi:
    When i try to view the output of any report in oracle apps 11i on sun solaris, i am getting an error saying Document contains no data, Contact administrator. Can anybody help in this regard<HR></BLOCKQUOTE>
    Check if your output file exists on $PRODUCT_TOP/$APPLOUT, where PRODUCT stands for GL/FA/AP etc..
    null

  • View output from report output,display with null row

    Hi ,
    I view report output through browser,but the output content include with a null row inside.

    Hi
    That doesn't possible, so don't worry
    what U need to consider is zoption-tdprogram has to have the name of main program, so the program where the variable are defined.
    This field isn't usually filled, because the main program is the driver program (i.e the program where the sapscript is called), it need to fill it only if the program where the variable are defined is not the driver program.
    So i believe this (your) code:
    REPORT  z_sapscript.
    DATA TEST_NAME(20) TYPE c.
    CLEAR usr01.
    SELECT SINGLE * FROM usr01 WHERE bname = sy-uname.
    zoption-tddest    = usr01-spld.        "Output device (printer)
    zoption-tdimmed   = 'X'.               "Print immediately
    zoption-tddelete  = 'X'.               "Delete after printing
    test_name = sy-uname.
    CALL FUNCTION 'OPEN_FORM'
         EXPORTING
             application        = 'TX'
             device             = 'PRINTER'
             dialog             = 'space
             form               = 'Z_TEST_SAPSCRIPT'
             language           = sy-langu
             OPTIONS            = zoption
         IMPORTING
              language           = sy-langu
           EXCEPTIONS
             OTHERS     = 1.
    IF sy-subrc  0.
      LEAVE PROGRAM.
    ENDIF.
    CALL FUNCTION 'WRITE_FORM'
         EXPORTING
             window        = 'MAIN'
         EXCEPTIONS
              element       = 1.
    CALL FUNCTION 'CLOSE_FORM'
      EXCEPTIONS
        unopened = 1
        OTHERS   = 2.
    It should work now
    Max

  • Report Viewer output - customizing

    Hello. I was wondering...
    I use reports in simple aspx page, in local processing mode (.RDLC reports).
    I want to customize output of report viewer control, so that I can put textboxes into report.
    Currently, when you have a table in report bound to some data source,
    report table cell is wrapped into some TD and DIV elements, with some class attributes 
    with cryptic values. For example:
    <td class="Aee342afe97834395b087ea29bc3c321326cl" style="height: 6.35mm;">
    <div class="Aee342afe97834395b087ea29bc3c321326">SomeData
    </div>
    </td>
    I got an idea, what If I override this somehow, and replace this DIV element with
    <INPUT TYPE="textbox" ...>.
    I succeded, by overriding Render method of my aspx page. 
    In Render method, i made regex matching of this div elements on HtmlTextWriter output, something like this:
    string pattern = "DIV\\s*class=\"([^\\>]*)\"\\>([^\\<]*)</DIV\\>";
    With this I can do some pretty interesting things.
    1. My first try was to replace HtmlTextWriter output, so TD and DIV elements from above would look something like this:
    <td class="Aee342afe97834395b087ea29bc3c321326cl" style="height: 6.35mm;">
    <input type="textbox" class="updatable" tableName="Customers" attibuteName="CustomerName" id="id1234" >SomeData
    </div>
    </td>
    After this, i have a textboxes on the client side, and they have attributes (tableName, attributeName, id) which I
    can use to make server calls from javascript and update data in database.
    For example, I call some Update.aspx page with params, for example:
    Update.aspx?updateFlag=1&tableName=Customers&attributeName=CustomerName&id=1234&value=customer123
    With this, I actually succeded to update the database table.
    But, problem is with ajax. If I click refresh in report viewer control, it uses some ajax calls and has some dynamic javascript.
    This javascript methods expect specific length of http response, but because I changed http response in server-side Render method,
    this won't work. Javascript errors are thrown, when ajax response is parsed.
    So I decided, I won't change default http response in Render method in this way.
    2. My second try was to make changes clientside.
    Idea: What if I generate only javascript in render method, write it to response, and made DIVs into <INPUT type=textbox> on the client side?
    I rendered following method to the client:
     function GetXData() { 
    this.tableName='Customers';
    this.attributeNames=['CustomerId', 'ContactName', 'City', 'Country'];
    this.idAttributeName='CustomerId';
    this.rowIds=['Aee342afe97834395b087ea29bc3c32139','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321326'];
    this.colIds=['Aee342afe97834395b087ea29bc3c32139','Aee342afe97834395b087ea29bc3c321313','Aee342afe97834395b087ea29bc3c321317','Aee342afe97834395b087ea29bc3c321321','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087e
    a29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b
    087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338','Aee342afe97834
    395b087ea29bc3c321326','Aee342afe97834395b087ea29bc3c321330','Aee342afe97834395b087ea29bc3c321334','Aee342afe97834395b087ea29bc3c321338']; return this; 
    This is all information that I need to change my DIVs into INPUT tags. 
    I have rowIds (so I can update matching rows in database), i have table name, i have
    name of column that is primary key, and I have columnIds, which uniquely identifies every cell in report table.
    I can also bind some change method for every cell of report table. For example:
        var xData = GetXData();
                $.each(xData.colIds, function (i, val) {
    //gets DIVs inner html
                    var text = $("." + val)[0].innerHTML;               
    //replace DIV with INPUT
                    $("." + val).replaceWith("<input type='textbox' value='"+text+"'/>");
    //HERE GOES SOME CODE TO BIND ONCHANGE EVENT TO INPUT TAG, SO I CAN MAKE AJAX CALLS TO UPDATE DATABASE WITH INPUT DATA
    But, problem is that DIV class attribute values of Report Table repeat. After all, these are class attributes.
    Because of this, i cannot use class of DIVs as unique identifier of cells.
    I stopped here.
    3. Now, what do I do next?
    I could rewrite DIV class values in Render method, so they could be unique. I will probably do that. 
    Then i'll have unique mapping of reports datatable cell with field in database.
    But all this chemicals that I do, can they be avoided?
    Is there a better way for this.
    You're maybe wondering why would I want to do any of this?
    If I could make this, I would have fast data entry application. 
    I could use standard report desiging advantages, and have a fast update of data.
    Think about it, report has everything we need - datasources made by select queries (which tells us what to update),
    and advanced UI design.
    If we can get 
             <input type='textbox' tableName="xx" attributeName="yy" primaryKeyId="zz"> 
    for every textbox in report (which is currently rendered as DIV), 
    and some javascript functions that make ajax calls to update data on server/database
    we would be very powerful.
    Can this be done by Rendering Extensions or something? Has anyone done someting like this? Opensource solution?
    (I'm not considering security and other aspects here. Insert and delete of data is also questionable).
    Please, feel free to comment.

    You talking here only about textboxes, what about the other controls in your form(dropdownlists, checboxes....)? How you will be validating the data on these forms? What if you want to implement server side functionality behind?. I'm asking these question
    just to see if you planned well for your idea. I guess you're going into this because you want to runaway of generating many forms via asp.net, is this correct?.
    Another options can be:
    Create forms that are generated on runtime based on your datasource, I've done this before but there was a specific DB design for that. Here you can read your DB and based on you can create the different types of asp.net controls, in addition to calling
    sever side controls and validation.
    The second option is to have a look at the InfoPath product, its mainly used for Sharepoint but not sure for asp.net.
    Fouad Roumieh

  • Cannot view output report

    Hi
    I have a problem when I ran request for a single request and I submitted the name of the report. When I went to click on view output but it would not open, I don't know whether if I am doing something wrong Please can anybody help.
    Thanks Ola

    what is message you are getting
    Normally output file not be open only if the outbound directory of output and log is wrongly mapped....check with your DBA ....
    This is very common during the implemenation , where lot of movement and changes the Concurrent logs and outs location.
    or you are trying to view others submit requset log, in that case u need a profile option enabled for your user id.

  • How To View Large PDF Reports Output?

    Hi all,
    EBS 11i
    We run a request with date from 01-JAN-11 to 31-JAN-11 in transaction register .
    The request status is Completed.
    Upon clicking the ‘View Output’ to export the file in PDF format, we encountered error. It seems the file is corrupted? or just to big to open?
    Already tried increasing the Cache memory of Firefox to be able to view some requests but cannot view if the file is more than some size.
    I also tried saving the report to PDF file (viewing it on Adobe Reader not on Firefox), same result.
    Are there other application other than Adobe Acrobat Reader to view PDF file formats?
    How can I resolve this issue please.
    Thanks

    How do I download the pdf file? Do I need to login to the linux server applmgr id? Or it is available via apps webpage.From the server as applmgr user, under $APPLCSF/$APPLOUT directory -- o<request id>.out format.
    Have you reviewed the docs referenced above?
    Thanks,
    Hussein

  • Cannot View Output Report in SysAdmin

    Hello
    I cannot view the output of reports generated by other users in SysAdmin Responsibility. Is it an intended functionalilty?
    Emgee

    Pl post details of OS, database and EBS versions.
    Yes, this is intended functionality. You can view the logs of all concurrent requests as SYSADMIN, but not the output, for security reasons. See these MOS Docs for more info
    Concurrent Report Access Level          (Doc ID 736547.1)
    How to View the Output of a Request Launched by Someone Else          (Doc ID 413382.1)
    R12 RBAC Unable to View Output of Requests Submitted by other Users          (Doc ID 862812.1)
    HTH
    Srini

  • Can't view output for concurrent request

    I apologize if this is a common error - I tried to research this in the forums but didn't find anything that I haven't already tried. I checked the OPP - it is running with 3 processes - no error in the log that I can see. I checked the profile for the OPP timeout and have increased it....
    I have registered the data definition, registered and associated a template - created the concurrent program but when I try to run it completes with a warning and can't view output. The log states:
    XDO Data Engine Version No: 5.6.3
    Resp: 20420
    Org ID : 81
    Request ID: 2322744
    All Parameters: PO=5026930
    Data Template Code: GISDOSXML
    Data Template Application Short Name: XXGISD
    Debug Flag: N
    {PO=5026930}
    Calling XDO Data Engine...
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Unable to find an Output Post Processor service to post-process request 2322744.
    Check that the Output Post Processor service is running.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    --------------------------------------

    also - I found a note on using the XML Republish Report and I tried it with the report I ran and it erred completely. Here is the log for the republish:
    Oracle XML Publisher 5.6.3
    Updating request description
    Waiting for XML request
    Retrieving XML request information
    Preparing parameters
    Process template
    --XDOException
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeParse(XSLT10gR1.java:517)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:224)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1657)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:967)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5888)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3438)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
         at oracle.apps.xdo.oa.cp.JCP4XMLPublisher.runProgram(JCP4XMLPublisher.java:683)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:161)
    Caused by: oracle.xdo.parser.v2.XMLParseException: '=' missing in attribute.
         at oracle.xdo.parser.v2.XMLError.flushErrors1(XMLError.java:324)
         at oracle.xdo.parser.v2.NonValidatingParser.parseAttrValue(NonValidatingParser.java:1556)
         at oracle.xdo.parser.v2.NonValidatingParser.parseAttr(NonValidatingParser.java:1461)
         at oracle.xdo.parser.v2.NonValidatingParser.parseAttributes(NonValidatingParser.java:1394)
         at oracle.xdo.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1225)
         at oracle.xdo.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:314)
         at oracle.xdo.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:281)
         at oracle.xdo.parser.v2.XMLParser.parse(XMLParser.java:266)
         ... 17 more

  • How to change default output XMLP report  to rtf/excel !

    I used xmlp 5.6.2
    The default output for report is pdf file.
    Now i want to change default output to rtf or excel file
    Please ! help me !

    Hi Brightsea,
    We customized the code in FNDRSRUN.fmb, But we are not able to get the output in RTF format.
    Our requirement is to display the report output in .rtf or .xls(Not required to defaultly as .rtf or .xls).
    we are getting the following error.
    "The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    Invalid at the top level of the document. Error processing resource 'http://galaxian.bluestar.cvg0:8000/OA_CGI/FNDWRR.exe?t...
    {\rtf1\ansi\deff0"
    ^
    Regards,
    suresh.

  • Need formatted EXCEL output, from View Output,Oracle Applications

    To view the report(Normal RDF report,not XML Publisher Report) output in EXCEL, I changed the Profile Options.
    From: System Administrator Responsibility.
    Navigation: Install -> Viewer Options.
    Added the below entry.
    PDF application/vnd.ms-excel Microsoft Excel
    Now when I submit the report, after completing, when clicked to View Output, I can see the list showing Browser and Microsoft Excel.
    I saved the Excel Sheet,but its not formatted. How do I get the formatted Output. As columns are not in proper shape.
    Please do the needful.
    Thanks.

    Hi Abdul;
    Please check below thread's mention metalink note&advice:
    Open Text output of a Report in Excel - Bad format
    Re: Open Text output of a Report in Excel  - Bad format
    Hope it helps
    Regard
    Helios

  • Unable to View PDF output in View Output

    Hi ,
    We recently installed XML Publisher Release 5.6.1 . I converted one Report into XML , and created a Template/Data Definitions for it . When I fire the report now , I can see the .PDF file being generated in the unix box . But if I click on the output of the report , the IE page doesnt display anything . The page goes in error .
    Regards
    Sukalyan

    Tim, Please advice on this ASAP.. This issue is preventing us from using XML Publisher in our instances..
    When we click on View output with PDF as output format, then a broswer tries to open up and it gets errored out..
    When we click on View output with RTF as output format, then a Oracle Apps window open up with Junk characters. Tool -> Copy file gives an error
    When we click on View output with EXCEL as output format, then a Oracle Apps window open up with Junk characters. Tool -> Copy file gives an error
    Please advice a solution for the same.
    Thanks,
    Shobana & Sukalyan

  • EBS R12 open PDF with error by "View Output" button

    In EBS R12,
    We did setup some report output as PDF.
    After run concurrent job of report, click "View Output"
    It prompt a new IE window and prompt error "Internet Explorer cannot display page".
    Problem Client PC information:
    1. Win XP SP3
    IE 8
    Adobe Reader 9 or 8 (Enable Option "Open PDF in Browser")
    2. Win 7
    IE 9
    Adobe Reader 9 (Enable Option "Open PDF in Browser")
    Any related setting can help for this?
    Thanks.

    Hi AsifMuhammad,
    Thanks for your help.
    - Is the issue with all the user (different machines).
    >> Yes, tested on different user and different machines.
    >> If using Acrobat Reader 8 or 9 will have the problem, while uninstall Acrobat Reader 8 or 9, then install Acrobat Reader 10 or 11 the problem fixed (Open pdf via IE is normal)
    >> All are Opening the same "View Output" of the same already run Concurrent Program ID.
    - Is the issue with all the PDF reports.
    >> We do not use other PDF reports. (Forget to mention it is the concurrent program "Format Payment Instruction")
    - Do you still get the error when trying with other browsers such as Firefox.
    >> When using Firefox, it prompt "Download Postscript File" > Click "Open PostScript Document" > Then it still open by Acrobat Reader.
    >> For this point, yes, we has been setup "Output as PostScript" for the concurrent program "Format Payment Instruction"
    - Was the report working fine and did you do any changes recently.
    >> The report is working fine, when using Acrobat Reader 10 or 11.
    >> The problem seems just exist when using Acrobat Reader 8 or 9.
    Of course, you may said possible solution maybe Install Acrobat Reader 10 or 11 for those user.
    But it need furthur testing for our internal programs.
    And I've checked, according Oracle's Document, R12 should support Acrobat Reader 5 or up.
    Which lead me think, there should be missed some setting.
    But I cannot find any related setting on this point.
    Thanks

  • END USER accessing only the Output of report

    Hi,
    I'm creating reports based on queries, right now we are planning to give view access to end users, but my doubt if end user hits view on the report the query runs everytime and produces the report, what I want to achieve is that the we schedule the report before night and end user will only view the PDF output the query produces by the scheduling, How can I achieve this?

    So do we need to give the user access to schedule button as well? and Do you mean run report online option?
    Any update please?
    Edited by: user8937215 on Aug 5, 2010 7:55 AM
    E

  • View output button disabled when publishing to pdf

    I am using Captivate 4 and must publish all my Captivate files to pdf for distribution throughout my organisation. I have two issues:
    1) After publishing to pdf, the View Output button is disabled, and I get the message you must have Adobe Reader 9 or better installed to view
    I have Adobe Reader XI installed
    I am able to open the pdf from my desktop
    I saw elsewhere to try unticking the Zip files output option. Zip files and all other output options are unticked
    I have tried publishing using Flash Player 7 (the earliest version available in the Flash Player Version menu) with same result
    So the question is, is there some setting I am missing to enable the view output button, or another solution?
    2) This wouldn't really be a problem, except some users with Adobe 9 installed are reporting they cannot open the pdfs from their desktop. I thought I would try publishing so that output is compatible with earlier versions of Adobe Reader but can't figure out how to do that.
    So, is there some way to publish to be compatible with Adobe Reader 8 or earlier? Also, many users are accessing videos through a terminal server - could that be  the problem?
    Thanks very much in advance

    You aren't printing the PDF.  You're printing the spool because the user ID has the print immediately field selected and the GET_PRINT_PARAMETERS picks up that setting.  You simply need to blank out the value of TDIMMED in your l_print_parameters
    structure...

  • Unable to view output from concurrent manager

    Hello all,
    I am unable to view output from concurrent manager, I am using IE 8 32bit on Windows 7 & adobe 10.0.1
    It gives a blank page
    We are trying to view an xml report
    EBS 11.5.10.2
    db : 10.2.0.
    linux 4 update 5
    I have already reffered below documents but for no luck
    Note: 888932.1 - R12.1 Unable To View Output For Xml Outputs - View Output Button - The window opens up And Disappear Automatically
    Note: 305850.1 - Unable To View Output Of PDF Report When Clicking ''View Output''
    Thanks.

    Is the issue with XML/PDF concurrent requests or with all requests?
    Can you find any errors in Apache/Database log files?
    Is the application listener up and running? Can you find any errors in the listener log file?
    Have you tried to run AutoConfig and bounce the services and see if this helps?
    Thanks,
    Hussein

Maybe you are looking for