XML PUBLISHER : excel file generated is of large size

Hi ,
scenario: Using XML publisher I am able to get the output in the Excel format but the file size is 28.2 MB
Issue : The file size is too big so unable to send email through XML bursting program.
Observation:
For the generated excel sheet when save as option is chosen then its save as type is Web Page (*.htm,*.html ) with the file name appearing in double quotes "sample.xls" , when the save as type was changed to excel and saved , the file size was found to be 5.7 MB .
Please advise on the following:-
xml publisher's generated output file size is 6 times bigger than the actual excel file size , is there a way to rectify this huge size output for EXCEL file.
Regards,
SR

This is a know Bug, Refer below document for the patch detail & other info:
BI Publisher Enterprise Excel Output File Size is Too Large [ID 1271544.1]
BUG:6739943 ,7356451
Thanks,
Sandeep

Similar Messages

  • XML Publisher Template Re-Generator

    What does the XML Publisher Template Re-Generator actually do? I'm having an issue where the AP Check layout is fine when I test locally on my pc, but when i run the check in the Oracle app, the check prints on the next page.

    Hi,
    It's for use when you upgrade your version of XMLP. When you load an rtf template via XMLP Admin it stores your original file and also converts it to XSL-FO. When you upgrade XMLP then the functionality changes and the XSL-FO it generates changes.
    The re-generate process rebuilds the XSL-FO for all the templates loaded into the database.
    I think I read somewhere that in 5.6.3 this is run as part of the patching process.
    Regards
    Paul

  • How to catch XML Publisher bursted file from Workflow

    Hello,
    I have to catch xml publisher bursted file in oracle workflow and send it as the content of mail (not like attachment).
    Does anyone know if this is possible and how can I do it?
    Any help is appreciated, thanks in advance!
    Regards
    Ive

    oracle seeded XDO regions is available to integrate concurrent program in the page.
    You got to extend this RN oracle.apps.xdo.oa.common.DocumentViewerRn.xml
    And oracle.apps.xdo.oa.common.DocumentHelperAPI, should help you to download or View from the page
    Its straight forward , given in the doc i guess.
    Let me pull the metalink note for this.

  • Excel file generated through SAP not opening on Smartphone

    Hi,
    My program sends an email with excel attachment (Used FM :  SO_DOCUMENT_SEND_API1).
    Receiving person able to open and view the Excel file attachments on Laptops / Desktops.
    But on Smartphone, it gives error 'Can't Open - Excel doesn't recognize the file format'.
    Please help on above problem.
    Thanks,
    Shailesh

    Hi All,
    Your expertise needed to overcome issue of opening excel file generated and send as attachment on smartphone.
    Tried program 'BCS_EXAMPLE_7' (Sending and Excel attachment) - but Excel file not opened on smartphone. (Giving error   Can't Open Excel doesn't recognize the file format 'ExcelfileName')
    If we open excel file on desktop / laptop there is no problem for opening the file.
    Thanks in advance,
    Shailesh

  • XML publisher report not generating output for huge XML files

    Changed Depreciation Projections Report output type to XML.
    Defined a Data Definition and a new Data Template (RTF) for this report.
    Ran the Depreciation Projection Report to generate the XML output.
    Ran the XML Report Publisher report to generate teh PDF/Excel output of the above report.
    Output generated for smaller XML files. When XML size is big, the program is running for hours without generating the output.
    Teh RTF template is basically a matrix report in which the number of columns in the report is based on the number of periods the report is run for.
    The same is not working in the Desktop version also. The system is hanging when i try to view the preview pdf.
    The XML file size is approximately 33 MB.
    Please let me know if there is any way we can increase the memory size to see the output.
    Thanks,
    Ram.

    for publisher use Category: E-Business Suite

  • FM to mail a excel file generated by XML

    Hi All,
    I have a requirement to generate fancy excel file as attachment in mail.
    Please help with some FM to send mail with excel as attachment,
    I have used a code like the sample code given below.
    *&----
    **& Report  ZTEST_NP_EXCEL_XML
    **&
    **& Download the formatted excel file using XML
    *&----
    report Z_IXML.
    TABLES USR02.
    TYPES XMLLINE(1024) TYPE C.
    DATA IT_XML TYPE XMLLINE OCCURS 0.
    DATA WA_XML TYPE XMLLINE.
    DATA FNAME(60) TYPE C VALUE '/ft/D02/001/test.xls'.
    \ Build-up of xml in internal table
    \\* Opening tags
    APPEND '<?xml version="1.0"?>' TO IT_XML.
    APPEND '<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"'
    TO IT_XML.
    APPEND 'xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet">'
    TO IT_XML.
    APPEND ' <Worksheet ss:Name="Tabelle1">' TO IT_XML.
    APPEND ' <Table>' TO IT_XML.
    \\* The actual data from table USR02
    SELECT * FROM USR02.
    APPEND ' <Row>' TO IT_XML.
    CONCATENATE ' <Cell><Data ss:Type="String">'
    USR02-BNAME '</Data></Cell>' INTO WA_XML.
    APPEND WA_XML TO IT_XML.
    CONCATENATE ' <Cell><Data ss:Type="String">'
    USR02-TRDAT '</Data></Cell>' INTO WA_XML.
    APPEND WA_XML TO IT_XML.
    APPEND ' </Row>' TO IT_XML.
    ENDSELECT.
    \*Closing tags
    APPEND ' </Table>' TO IT_XML.
    APPEND ' </Worksheet>' TO IT_XML.
    APPEND '</Workbook>' TO IT_XML.
      DATA: window_title TYPE string,
            fullpath TYPE string,
            path TYPE string,
            user_action TYPE i,
            default_extension TYPE string,
            default_file_name TYPE string,
            file_filter TYPE  string,
            filename TYPE string,
            initialpath TYPE string.
    File selection
      MOVE '.XLS' TO default_extension.
      MOVE 'XLS files (.XLS)|.XLS' TO file_filter.
      CALL METHOD cl_gui_frontend_services=>file_save_dialog
        EXPORTING
          default_extension = default_extension
          default_file_name = default_file_name
          file_filter       = file_filter
          initial_directory = initialpath
        CHANGING
          filename          = filename
          path              = path
          fullpath          = fullpath
          user_action       = user_action
        EXCEPTIONS
          cntl_error        = 1
          error_no_gui      = 2
          OTHERS            = 3.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename                = fullpath
          filetype                = 'ASC'
        TABLES
          data_tab                = it_xml
        EXCEPTIONS
          file_write_error        = 1
          no_batch                = 2
          gui_refuse_filetransfer = 3
          invalid_type            = 4
          OTHERS                  = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    Please help
    I am giving a sample code how

    Hi Supratik,
    Please refer to these two links:
    Send email with 1 excel file and multiple sheet
    How to Convert file to excel and send it via email
    Hope this will resolve your issue.

  • My java program can't read the EXCEL file generated by BI Publisher

    I have a program that generates excel file and another program that reads the previously generated file.
    I'm getting this error when my code reads the file using the "HSSFWorkbook" object:
    Exception in thread "main" java.io.IOException: Invalid header signature; read 3271134372600964429, expected -2226271756974174256
         at org.apache.poi.poifs.storage.HeaderBlockReader.<init>(HeaderBlockReader.java:112)
         at org.apache.poi.poifs.filesystem.POIFSFileSystem.<init>(POIFSFileSystem.java:151)
         at org.apache.poi.hssf.usermodel.HSSFWorkbook.<init>(HSSFWorkbook.java:298)
    Edited by: user1900500 on Mar 11, 2011 3:37 PM

    If you're using JDK 5 or later, you could use the Scanner class for input information. See below:
    try {
                   Scanner reader = new Scanner(new File("C:\\boot.ini"));
                   StringBuilder sb = new StringBuilder();
                   while (reader.hasNextLine()) {
                        sb.append(reader.nextLine());
                        sb.append(System.getProperty("line.separator"));
                   System.out.println(sb.toString());
              } catch (FileNotFoundException e) {
                   e.printStackTrace();
              }

  • XML Publisher excel template

    Hi ,
    after installing the Patch
    Patch 12415414: 1OFF:11873050:12.1.3:12.1.3:FRM-41830, FRM-40212 SUBMITTING PROGRAM - PUBLISH FS
    i managed to add and excel template to XML Publisher , the template working fine in the Desktop template viewer but when running it using the XML publisher its only shows the static heading with not data
    anyone knows why its generate an empty file ?! the concurrent generated the XML data but the output is an empty excel file
    thanks

    @user635184 looks like you missed something
    12.1.x does not have all the code to execute Excel templates.
    ebs r12.1.3 has excel template
    furthermore ebs r12.1.1 has excel template feature but it must be enabled as in mos R12: How to add Microsoft Excel as Type to the Create Template List of Values in BI Publisher (Doc ID 1343225.1)
    EBS version 12.2 has some support for Excel templates.
    some support
    @Ayman
    i managed to add and excel template to XML Publisher , the template working fine in the Desktop template viewer but when running it using the XML publisher its only shows the static heading with not data
    anyone knows why its generate an empty file ?! the concurrent generated the XML data but the output is an empty excel file
    need more info with versions of tools

  • Xml publisher excel output

    Hi.
    I have the rtf-template for xml-publisher report with excel output.
    There is the table there. I need format the table according appointed requirements (in output excel file). For example, width of the columns of the table must be fixed width. How I can define width of the columns with xsl language in rtf-template?
    [email protected]
    Best regards

    UP
    There is positive progress there.
    For example, I can change height of the heading row of the table by this way:
    <xsl:attribute name = "height" xdofo:ctx="block-container">40mm</xsl:attribute>.
    These xsl tags I put it in the text field of the rtf template between <?split-column-header:GROUP?> and <?VALUE?> tags (There are dinamic columns in the table).
    But <xsl:attribute name = "width" xdofo:ctx="block-container">40mm</xsl:attribute> tags work incorrect, not as I need (Some cells is spanned in the height and division of the text is by the word).
    May be I need some others tags? Or I need different object or property?
    I want to note that xml-publisher's tags <?split-column-width:@width?> and <?split-column-width:width?> are not working in excel output (or I use it incorrect).
    I am really need your help. How I can define exact width of dinamic columns?
    Thanks.

  • How can i display a excel file generated by labview?

    hello,
    I'm looking for an exemple to display (open) a .xls file generated by labview after simulation but without use  the tookit report generation.
    somebody knows how could I do this?
    Any suggestions?
    Thanks,
    longar
    p.s: i use labview 8.6 
    Solved!
    Go to Solution.

    There is quite large dedicated Excel thread with a lot of examples.
    I'm curious though. If you don't have the toolkit, how did you create the Excel file in the first place?

  • XML Publisher Report not generating the PDF output.

    Hi,
    I am trying to develop a XML Publisher Report in R12 Vision Instance.
    I have developed the rdf report and concurrent program with XML as output format. Ran the concurrent program and I got the XML output. Based on XML output I have created the rtf template. Using both the template and xml output I have created in Data Definition and Template in XML Publisher Administrator Responsibility. Now I am comming to the concurrent program and running the program, here instead of generating the PDF output it is generating again the XML output and concurrent program completing with warning status.
    When I am trying to do the same in 11i Vision Instance, Concurrent Program completing with normal status and when trying to view the output it is saying "Unable to Publish output for the Processed Request".
    Kindly please help me out in this issue.
    Thanks,
    Manasa.

    Hi Mahesh,
    Here the concurrent programs are not erroring out. It is completing with Warning status and when we click on View Output the output is coming in XML format instead of PDF, this is in R12 Vision Instance.
    In 11i Vision Instance, concurrent program is completing with Normal Status but when we click on View Output it is saying "Unable to Publish output for specified request".
    Thanks,
    Manasa.

  • Integrating XML publisher & OAF Page, Generating output in PDF format

    Query:SELECT empno,ename,job,mgr,hiredate,comm,deptno FROM emp
    Step 3 : Generating the XML for Template Design
    Design a OAF Page EmpPG with the Following Code in the Controller EmpCO.
    EmpCO :
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OAApplicationModuleImpl am= (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
    am.invokeMethod("initEmpVO");
    am.invokeMethod("getEmpDataXML");
    EmpAMImpl :
    public void initEmpVO()
    EmpVOImpl vo = getEmpVO1();
    if(vo == null)
    MessageToken errTokens[] = {
    new MessageToken("OBJECT_NAME", "EmpVO1")
    throw new OAException("AK", "FWK_TBX_OBJECT_NOT_FOUND", errTokens);
    } else
    vo.executeQuery();
    public void getEmpDataXML()
    try {
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    OAViewObject vo = (OAViewObject)findViewObject("EmpVO1");
    ((XMLNode) vo.writeXML(4, XMLInterface.XML_OPT_ALL_ROWS)).print(outputStream);
    System.out.println(outputStream.toString());
    catch(Exception e)
    throw new OAException (e.getMessage());
    I used the same code & strictly followed all the instructions.
    I am able to see only few column names in .xml
    http://apps2fusion.com/at/ps/51-ps/260-integrating-xml-publisher-and-oa-framework
    Please go thru the above link.
    Could anyone help me where I am doing mistake.
    Correct me If I am missing anything.
    Thanks in Advance.
    Thanks
    Sruthi

    The approach is too problematic...
    why dont you follow http://apps2fusion.com/at/51-ps/260-integrating-xml-publisher-and-oa-framework
    Hrishikesh

  • XML to Excel file using dom4j

    hi!
    i'm new with dom4j and i don't have any idea on how to do the following task:
    i have an xml document which i have to save as an excel file using dom4j. my problem is i also have to insert records in the middle of the file. is it possible?
    sample layout:
    Worksheet Header (also have to plot a value)
    Column Header (also have to plot a value)
    -- need to insert records here --
    Sub-total row
    Total row
    i would appreciate any help from you guys...
    thanks in advance...

    Hi there!
    First I haven't seen any application that uses dom4j to write excel's file, but I can recommend you to use Apache's POI to write and read from any excel's file, actually I'm working rigth now with it, and works fine with Office 2003.
    http://jakarta.apache.org/poi/hssf/
    For the XML you can use what ever you feel confortable with, dom4j, jdom, etc. I really like jdom thougth

  • EPMA Excel File Generator

    I'm using 11.1.1.2 and attempting to use the Excel EPMA file generator. I'm getting all of my dimensions, however, I can not get any aliases to load. I'm loading for Planning and Essbase (BSO). All I want to do is load a Default alias but I'm getting 'Invalid Property Data Type for Property 'Alias'.'
    My 'Alias' tab has just one entry:
    #root|English
    First, does the file generator work for aliases, and if so, what am I doing wrong?
    Also, has anyone seen a sample Excel workbook for the file generator. I think that would be super helpful.
    Thanks,
    Michael

    I haven't used the Excel ADS file format much (I use text ADS files), but one thing I've noticed is that the File Generator produces files that cannot be re-imported without manipulation. I think of the File Generator as a tool that provides "hints" regarding what your file should look like. One would hope that you could export a file using the File Generator and turn right back around and import it without errors. That isn't the case as of version 11.1.1.2.
    In a text file, in the Hierarchies section, you would not have "Alias" as your heading. Instead, it would be something like "Alias=Default". I would try changing this.
    In addition, you might want to add the following line to the Alias tab:
    #root|Default
    Hopefully this will get you a little further.
    Take Care,
    - Jake

  • Business One  - XML or Excel File interface

    Hi Folks ,
    Here i have some basic questions which i need to clarify from the expertise like you
    1. Is Business One can able to Produce/Consume XML file for the Master data upload ? If so where can i find the schema for XML file  ?
    2. I hope that Business One can use Excel file to upload the Master data - if so where can find the template/schema ?
    3. Can we use Scheduling mechanism to Upload XML file  for master data upload  to Business System ?
    Any inputs are really appreciated .
    Thanks.,
    V.Rangarajan

    Hi Folks ,
    Thanks to Rupinder and Gagan , But as per your reply
    1. You can import the data into master data through xml and excel sheet with the help of DTW.
               Is that XML and Excel ( or ) we can use either XML or Excel ? Please clarify .
              i.   I would like to go for only XML is there any template available ?
             ii . Not only master data , i want to create Objects like PO / SO/Invoice etc ..,, . All can be achieved through DTW ?
    Please clarify
    Thanks.,
    V.Rangarajan

Maybe you are looking for

  • Virtualbox - Installed VM will not start

    Hi, although I'm satisfied Arch user for quite long time, this is the first time I feel need to ask on this forum. So, please, bear with me I followed installation instructions on  Arch wiki: pacman -S virtualbox-host-modules virtualbox modprobe vbox

  • Can someone explain data charges to me?

    Upgraded to a smartphone Samsung Nexus. First Data plan and all. So, what is costing me alot of data when I am at work,home asleep,connected to wifi at home(Xfinity). I am barely on the thing and in three weeks 75% of 1GB is already used. I am not a

  • Exchange 2010 - 2003 coexistence "unable to relay"

    Hi I have a customer with a Exchange 2010 / 2003 coexistence.  The Exchange 2010 has 3 CAS/HT servers.  When sending mails from 2003 to the outside world, one of the CAS/HT is giving me "unable to relay". Right now I have removed it from the routing

  • How to save Gradient in Swatches Panel

    Hi! I want to save a gradient in swatches panel. I dont find any option there. What to do?

  • LV 8.20 crashes on opening non-existent window

    With LV 8.20 and Mac OS X 10.4.8 Open LV, and by default it opens a blank window. (preferences IsFirstLaunch: False showNoNavDialog: True skipNavigatorDialog: True Close the blank window titled "Untitled 1 Front Panel" using the "close button" Note t