Error generating in excel format in BI Publisher

Hello

I faced a problem in BI Publisher where I was getting this error message when you try to generate a report to excel format.

oracle.apps.xdo.template.fo.area.BlockArea.

Version BEEP: Oracle BI Publisher 10.1.3.4.1
Model: XSL - FO
Source of data: XML file


However, if I turn off the 'Enable Document Caching' option in the reports node, the excel report is getting generated. The problem is solved now, but I'm trying to understand what it is and how to turn off the cache it is resolved.

If anyone has faced this problem before and knows the reason - please let me know

Thanks in advance
Sujith

Sujith

If the cache of the doc, just that it puts the document cache. I guess there could be a problem with the caching of files Excel. Have to admit that I can't reproduce it. Turn on cache and advertisement unceasingly the Excel (or other type) are not a failure.
Ahh just noticed you have a XSL - FO model, can you share some data and it so I test and may log a bug?

Thank you

Tim

Tags: Business Intelligence

Similar Questions

  • We can generate oracle froms 6i in excel format reports

    Hey Hi guyz...
    Can I create a button to my existing application so that when clicked... .reports can be generated in Excel format... I want to know if its possible or not. ??? n If its posible how must it be done. !

    Hello

    Step 1.
    Create a trigger a time new form instance.

    EXECUTE_QUERY;
    

    step 2
    Create a trigger when button pressed.

    Form2Excel;
    

    Step 3
    create a second trigger when button pressed.

    FormToExcel;
    

    Step 4.
    create a procedure with that name Form2Excel.

    PROCEDURE Form2Excel IS
    
    i_reporttitle VARCHAR2(200) := 'My excel';
    
    dno number(2);
    dn varchar2(14);
    dl varchar2(13);
    
    r number := 2;
    c number := 1;
    
    i_orientation VARCHAR2(200) := '1';
    i number :=1;
    
    /* definiton for commonly used variables and constants and exceptions */
    ExcelID ole2.obj_type;
    ExcelWorkBooksID ole2.obj_type;
    ExcelWorkBookID ole2.obj_type;
    ExcelWorkSheetsID ole2.obj_type;
    ExcelWorkSheetID ole2.obj_type;
    ExcelCellID ole2.obj_type;
    ExcelFontID ole2.obj_type;
    ExcelPageSetupID ole2.obj_type;
    ExcelArgs ole2.list_type;
    
    BEGIN
    
    ExcelID := ole2.create_obj('Excel.Application');
    ExcelWorkBooksID := ole2.get_obj_property(ExcelID, 'Workbooks');
    ExcelWorkBookID := ole2.invoke_obj(ExcelWorkBooksID, 'Add');
    ExcelWorkSheetsID := ole2.get_obj_property(ExcelWorkBookID, 'Worksheets');
    ExcelWorkSheetID := ole2.invoke_obj(ExcelWorkSheetsID, 'Add');
    ExcelPageSetupID := ole2.get_obj_property(ExcelWorkSheetID, 'PageSetup');
    
    ole2.set_property(ExcelPageSetupID, 'Orientation',i_orientation);
    ole2.release_obj(ExcelPageSetupID);
    
      loop
    
    go_block('dept');
    ExcelArgs := ole2.create_arglist;
    ole2.add_arg(ExcelArgs,i);
    ole2.add_arg(ExcelArgs,c);
    ExcelCellId := ole2.get_obj_property(ExcelWorkSheetId,'cells',ExcelArgs);
    
    ole2.destroy_arglist(ExcelArgs);
    ole2.set_property(ExcelCellId, 'Value', :dept.deptno);
    
    OLE2.SET_PROPERTY(ExcelCellId, 'NumberFormat', '###0.00' );     --Key line for your solution
    
    ExcelFontId := ole2.get_obj_property(ExcelCellId, 'Font');
    ole2.set_property(ExcelFontId, 'Bold', 'True');
    ole2.set_property(ExcelFontId, 'Size', '10');
    ole2.set_property(ExcelFontId, 'Italic', 'True');
    
    ole2.release_obj(ExcelFontId);
    ole2.release_obj(ExcelCellId);
         exit when :SYSTEM.LAST_RECORD = 'TRUE';
     next_record;
    i := i+1;
    end loop;
    
    ExcelArgs := ole2.create_arglist;
    ole2.add_arg(ExcelArgs,i+1);
    ole2.add_arg(ExcelArgs,1);
    ExcelCellId := ole2.get_obj_property(ExcelWorkSheetId,'cells',ExcelArgs);
    ole2.destroy_arglist(ExcelArgs);
    ole2.set_property(ExcelCellId, 'Value', 'END');
    ExcelFontId := ole2.get_obj_property(ExcelCellId, 'Font');
    ole2.set_property(ExcelFontId, 'Bold', 'True');
    ole2.set_property(ExcelFontId, 'Size', '10');
    ole2.release_obj(ExcelFontId);
    ole2.release_obj(ExcelCellId);
    
    ole2.set_property(ExcelID, 'Visible','TRUE');
    
    -- ... and release the allocated resources because they are no longer used by forms
    
    ole2.release_obj(ExcelWorkSheetID);
    ole2.release_obj(ExcelWorkSheetsID);
    ole2.release_obj(ExcelWorkBookID);
    ole2.release_obj(ExcelWorkBooksID);
    
    ole2.release_obj(ExcelID);
    
    END;
    

    Step 5.
    create second procedure with this name FormToExcel.

    PROCEDURE FormToExcel IS
    
    i_reporttitle VARCHAR2(200) := 'My excel';
    
    dno number(2);
    dn varchar2(14);
    dl varchar2(13);
    
    r number := 2;
    c number := 1;
    
    i_orientation VARCHAR2(200) := '1';
    i number :=1;
    
    /* definiton for commonly used variables and constants and exceptions */
    ExcelID ole2.obj_type;
    ExcelWorkBooksID ole2.obj_type;
    ExcelWorkBookID ole2.obj_type;
    ExcelWorkSheetsID ole2.obj_type;
    ExcelWorkSheetID ole2.obj_type;
    ExcelCellID ole2.obj_type;
    ExcelFontID ole2.obj_type;
    ExcelPageSetupID ole2.obj_type;
    ExcelArgs ole2.list_type;
    
    BEGIN
    
    ExcelID := ole2.create_obj('Excel.Application');
    ExcelWorkBooksID := ole2.get_obj_property(ExcelID, 'Workbooks');
    ExcelWorkBookID := ole2.invoke_obj(ExcelWorkBooksID, 'Add');
    ExcelWorkSheetsID := ole2.get_obj_property(ExcelWorkBookID, 'Worksheets');
    ExcelWorkSheetID := ole2.invoke_obj(ExcelWorkSheetsID, 'Add');
    ExcelPageSetupID := ole2.get_obj_property(ExcelWorkSheetID, 'PageSetup');
    
    ole2.set_property(ExcelPageSetupID, 'Orientation',i_orientation);
    ole2.release_obj(ExcelPageSetupID);
    
      loop
    
    go_block('dept');
    ExcelArgs := ole2.create_arglist;
    ole2.add_arg(ExcelArgs,i);
    ole2.add_arg(ExcelArgs,c);
    ExcelCellId := ole2.get_obj_property(ExcelWorkSheetId,'cells',ExcelArgs);
    ole2.destroy_arglist(ExcelArgs);
    ole2.set_property(ExcelCellId, 'Value', :dept.deptno);
    ExcelFontId := ole2.get_obj_property(ExcelCellId, 'Font');
    ole2.set_property(ExcelFontId, 'Bold', 'True');
    ole2.set_property(ExcelFontId, 'Size', '10');
    ole2.release_obj(ExcelFontId);
    ole2.release_obj(ExcelCellId);
         exit when :SYSTEM.LAST_RECORD = 'TRUE';
     next_record;
    i := i+1;
    end loop;
    
    ExcelArgs := ole2.create_arglist;
    ole2.add_arg(ExcelArgs,i+1);
    ole2.add_arg(ExcelArgs,1);
    ExcelCellId := ole2.get_obj_property(ExcelWorkSheetId,'cells',ExcelArgs);
    ole2.destroy_arglist(ExcelArgs);
    ole2.set_property(ExcelCellId, 'Value', 'END');
    ExcelFontId := ole2.get_obj_property(ExcelCellId, 'Font');
    ole2.set_property(ExcelFontId, 'Bold', 'True');
    ole2.set_property(ExcelFontId, 'Size', '10');
    ole2.release_obj(ExcelFontId);
    ole2.release_obj(ExcelCellId);
    
    ole2.set_property(ExcelID, 'Visible','TRUE');
    
    -- ... and release the allocated resources because they are no longer used by forms
    
    ole2.release_obj(ExcelWorkSheetID);
    ole2.release_obj(ExcelWorkSheetsID);
    ole2.release_obj(ExcelWorkBookID);
    ole2.release_obj(ExcelWorkBooksID);
    
    ole2.release_obj(ExcelID);
    
    END;
    

    Note: you must join Webutil.pll that it won't work.

    Sarah

  • RTF generated using option table Pivot BI publisher but do not generate output when executed in ebs 12.1.3 simultaneous

    Hello

    I built a rdf using pivot option BI-Publisher. When I saw on my local machine it generates the output correctly. But what rtf downloaded in EBS and simultaneous is run it see as finished phase and status as a warning. Output is generated in xml format, where, as I've specified it by default as excellent output.

    Kindly help to solve the problem.

    I found the solution for it. Now, I can generate the table outside by the EBS rtf pivot.

  • Looking for a perfect Solution for a file convert MBOX to the Excel Format?

    I looked at all the software on the market online, but I have not seen an effective solution to perform this conversion. In fact I want to convert MBOX file to Excel file format because sometimes I need see MBOX data all at once in a single Excel sheet. So, is it a complete solution available that help me out to convert a MBOX file to Excel format without any error.

    Hello Gemmahandcock

    I found a third-party software on Microsoft TechNet, named MBOX Converter Wizard that will maintain the MBOX emails in format Excel (CSV) with the correct information. When I tested this software to convert MBOX file to Excel format then it properly complete the process extract email attachments and save in the new folder.

    I recommend this software as it not only convert MBOX to Excel, but gives also facilitated to convert MBOX files in several formats to common files such as HTML, RTF, PDF, etc. from PST.

    Download link: https://gallery.technet.microsoft.com/MBOX-Converter-5767e6c6

  • Fixed example of 'Generate an Excel report'

    I recently answered a question posed by a user of the Forum on an error occurred when you try to generate an Excel file with the report generation tool.  I thought that the code example he used was 'unusual' and too complex and just discovered that he was, in fact, the sample report template (Excel) 2013 'Generate' LabVIEW.

    In the spirit of trying to demonstrate it's nice "easy Excel' recent functions, I have rewritten this example and set here.  In doing so, I discovered (and reported to the NC) a "bug/feature" of the Excel function insert Graph.  One of its parameters allows you to position the chart by specifying the left and top edges (left would be the Excel column, would be the Excel line).  The only problem is that the parameters are reversed - to put the graphic on line 1, column G, you specify (0, 6), (6, 0).  Oops...

    Oops, I have attached an earlier version of the demo, which has no Documentation and has not been "cleaned".  Use this instead (sorry about that - I forgot to hit "Save" I just changed the VI).

    BS

  • PC Hung and will now restart not [XP Pro SP3]. SYS error at startup as follows; Lsass.exe - system error. The endpoint Format is invalid.

    Original title: PC Hung and will now not restart not [XP Pro SP3]

    PC Gardner - [open Excel, open outlook, being viewed in PDF and word doc being edited].

    Restarted, then - loading SYS error window at startup as follows; lsass.exe - system error. The endpoint Format is invalid.

    Can not very well, or at the end of the message have to turn it off. Tried to reboot several times, same result.

    Just before this happened was a dialogue window appear on my PC, which indicates that Microsoft wanted to investigate problems of software they had observed on my PC that I had not sent the reports to. I approved this request and they took the reports...

    Am currently bimbling turn of safe mode with networking.

    Any smart people able to help me please?

    Thanks George

    Hello

    We will try these steps and check.

    Step 1: Try using some know last good configuration and check.

    Step 2: System Restore from safe mode or safe mode with network.

    Reference:
    A description of the options to start in Windows XP Mode
    http://support.Microsoft.com/kb/315222
    To start the computer in safe mode
    http://www.Microsoft.com/resources/documentation/Windows/XP/all/proddocs/en-us/boot_failsafe.mspx?mfr=true
    How to restore Windows XP to a previous state
    http://support.Microsoft.com/kb/306084

  • Right side of the text in the report are cut during report generated in PDF format

    Right side of the text in the report are cut during report generated in PDF format.
    In the report layout text is FLUSH JUSTIFIED. Text block is the same size as the outer frame.
    When the report is generated in PDF format, text is only JUSTIFIED to the LEFT and to the right looks like cut. Text beyond frame is invisible.
    But when I text selection in the PDF report that all the text is selected and I can copy and paste this text into any editor.
    What is a cause of this error and how can I solve this problem? In my view, there is error in report engine.
    Report Server Version: 10.1.2.3.0

    See photo. [http://1.bp.blogspot.com/_tSW8j23gT08/TKXn84zyRMI/AAAAAAAAAGE/KkNibanTSao/s1600/report_error.JPG]

    Don't know what your operating system and it could make a difference. If you're on Unix/Linux, try changing the uifont.ali file. (make a backup first!).

    Here is an example of the changes that I made to correct a similar problem:

    # Mapping of MS Windows

    #Arial = helvetica
    # 'Courier New' = courier
    # "Times New Roman" = times
    #Modern = helvetica
    #"MS Sans Serif" = helvetica
    # "MS Serif" = times
    # "Small fonts" = helvetica

    #Arial = 'arial.ttf '.
    Arial = helvetica.8
    "Courier New" = courier.9
    Arial.12 = helvetica.8
    #helvetica.12.Bold = helvetica.9
    #ArilMT is helvetica.9
    # "Albertus Extra Bold" = helvetica.9

    [PDF]

    #Arial = courier
    #arial = courier

    # Support for the languages of the far East:

    #itcadvantgardegothic = arial
    # "ITC front guard Gothic" = arial
    #itcadvantgardegothic = arial
    # "ITC Avant Garde Gothic" = Arial
    # changed to courier 06-25-2009
    itcadvantgardegothic = Helvetica
    #itcadvantgardegothic = arial
    "ITC Avant Garde Gothic" = Helvetica.11

    # Required
    #itcadvantgardegothic = arial
    # "ITC Avant Garde Gothic" = Arial

    [PDF:Subset]

    #times = "times.ttf".
    #courier = "cour.ttf.
    #helvetica = 'arial.ttf '.
    #arial = 'arial.ttf '.
    #helvetica = 'arial.ttf '.
    # 'Avant Garde' = 'arial.ttf '.
    #arial = 'arial.ttf '.
    #helvetica = 'arial.ttf '.
    #arial = 'arial.ttf '.
    #itcadvantgardegothic = 'arial.ttf '.
    #helvetica = 'arial.ttf '.
    #courier = "cour.ttf.

  • Generate an Excel file?

    Hello

    I have never generated an Excel via CF before and was hoping that someone here could help me? I looked through past discussions and I don't think they fully responded to my questions. What I have to do is to create a piece of code that I plan to run at a given interval of time that will generate an Excel using data queried, save the file to the server, and then e-mail the file Excel to a seller. It seems feasible to me, I do not know how to approach it. I saw last son people using the tag < cfcontent > to generate excellent data formatted in a browser, but I need these data will actually be displayed in excel. Help, please.

    Thank you
    Joe

    Well, I wasn't going with the CSV, I came up with my own solution which generates the Excel file, it saves on the server and it emails for which either with all the good excel formatting. That's how I did it, I hope this can help someone else in the future...

    Since Excel can read the HTML table formatting and use it to import in cells/column I thought it would be the best route to go for formatting a XLS file. So first thing required is to define a variable

    Cross and set up your table and whenever you have information of table, you must add to your variable set in text form to ensure that all the

    and">
    Now, what has been created is a variable with content that creates a cell with Hello world in it and if the if statement is true then another cell is created within the line with 2 line displayed. Now, for it to create a file, you will need to use cffile as such command...

    If you run this code, you will get your file excel on the server.

    JC

    Tags are also included in the otherwise it will throw everything...
    ">
    ">

    ">

    Hello world Line 2
  • Strange error in worksheet Excel add

    I write and read an Excel with Labview. The code does exactly what I want, but after reading the excel file I get an unknown error in the "Excel add sheet" VI (from report generation tool). There are only 2 inputs and 2 outputs on this VI and I can't understand why this error is popping up.

    I wrote in the file excel with the following code:

    The functionblock inside the red square gives the following error (after that I tried to write new data to the Excel file when I read it already):

    As you can see that the error occurs in the VI because it is not present the probe to 28. To read the excel file, I use the VI "Excel get Worksheet" and "Excel Get Data" as of the report generation tool.

    I want to be able to write in the excel file after reading it because I want to check the data inside Labview by measures. I hope someone can help me with this problem.

    At first glance, nothing seems to be wrong in the code. The error could be the cause of something that goes under this code section is executed (as if the report is closed). You said you read the Excel file, but this part is not displayed in your photo. Given that you use the local variable to pass the object of report a race condition may also be possible.

    Ben64

  • How to generate an excel file?

    Hi all;

    So I have a project to finish as soon as POSSIBLE, but I always bloqued;

    In fact, I have to read data from a com port and then to load the information into an excel file means I'll create and then generate an excel file;

    I still bloqued don't Excel, no progress on this point,

    Can someone help me;

    Thks in advance;

    Looked more friendly;


  • My computer won't allow me to access my files on my portable hard disk without error appear "you must format the E: drive before using it. How can I fix this please!

    My computer won't allow me to access my files on my portable hard disk without error appear "you must format the E: drive before using it. How can I fix this please!

    Try to scan your driver with anti-virus, also try to throw the disc looking for this driver and as you try to run the following tools:

    http://support.Microsoft.com/mats/system_maintenance_for_windows/

    http://support.Microsoft.com/mats/windows_file_and_folder_diag/

  • Why is Win XP Pro SP3 computer get error 'no video with format supported or a MIME type found.

    I have a Windows XP Pro SP3 computer, and I get the error 'No video with format supported or a MIME type found.' When I try to watch videos in the browser. I used to be able to view the videos, but 3 months ago they stopped working and I started to receive the above error message. What could be the cause for it? Thanks a lot for your time and help! God bless you!

    Daffodil5 said

    The site "paperwishes.com" (card making supplies) plays videos of product for some of its products. A blue box shows the word 'Play' next to the item. When I clicked on this blue box last spring, he'd always play. He's now hit & miss. Sometimes, it will offer to play via MP4, but rarely. Their 'webisode' will play not (who played in the spring, as well). Cannot understand what has changed: Google update leaving Windows XP in the past?

    Videos on the site can be read with an HTML5 player and do not use the Flash Player Plugin like a video I cheacked used HTML5 player when I right click on it. Actually, it turns out the link video was a Youtube video and YT uses the HTML5 player when possible and descends to Flash Player if need be if they always support such.

    With a little work, you can get the video to work in Firefox on the old WinXP EOL of HTML5.

    http://www.MSFN.org/Board/topic/175591-enable-MP4-h264-AAC-HTML5-video-in-Firefox-on-Windows-XP-without-Flash/

  • How to create an Excel format file?

    Hi all

    I want to export an Excel format (.xls) leader, and I tried jxl worked not because BlackBerry API does not java. Class XX.

    If someone other methods this?

    Thank you.

    Yes, I tried it. But when it is opened by Excel 2007, certain words shown correctly.  Finally I used xml to CSV for Excel 2003 and Excel 2007 format.

  • output to the Excel Format report

    Hello

    I have a form to collect data... now I'm trying to create a report in excel format... something like this:

    4.PNG

    is there a tutorial on how to create report output in excel by APEX? If this is not the case, can you please tell how to approach it.

    Thank you

    Hi tparvaiz

    The following demo is for the plugin mentioned by Scott

    GPV Interactive report to Excel

    Do not forget that the plugin creates custom exit Excel

    Concerning

    Mahmoud

  • SMARTVIEW GRAYED EXCEL FORMATTING OPTION

    Hello

    I have a question. I use excel 2010 to recover from smartview.

    image001 (1).png

    As you can see, the use of Excel formatting is dimmed.

    Normally, that's how it works. Use Excel formatting is not grayed out.

    ]

    Anyone know what causes this?

    Thank you very much in advance,

    Luke

    This occurs when you are connected to a form of planning, Smart View uses cell for the only formatting styles, but you can still activate thousands separator, but also other formatting options.  If you are an Ad - Hoc connection, you should see the options re-enabled.

Maybe you are looking for

  • HP MediaSmart after Format

    Hey guys,. I just formatted my computer hp laptop and rendering account I have no way to reinstall HP MediaSmart. It is not on my laptop... of course, since I formatted and deleted all my programs. It was a really useful set of programs for me. HP Me

  • Equium P200D PSPBNE: Device Manager does not display the DVD - RW DVR-K17A ATA DVD / CD

    Hello experts out there I need urgent help! My Equium P200D all of a sudden she decided to show the CD/DVD drive in device as Manager no longer works due to a corrupted driver? I am running Vista Home and despite the removal of the drive and trying t

  • Problems with Mcafee and Windows 7

    Running with * Windows 7 *. Since the renewal of the subscription with * mcafee *, was nothing else than problems trying to update / download the new version of mcafee, resulting * bluescreen crashes *. Has anyone else experienced this problem? If so

  • Print from ipad to printer usb via a wireless router

    Is it possible to print from the ipad to DeskJet 882c via a wireless router that supports usb (like Linksys EA3500) print? Thank you

  • Error 1325 Documents is not a valid short file name

    I get an error code "error 1325 documents is not a valid short file name" when I try to add an update to a program I installed.  I tried to download the "cleanup utility" Microsoft, but I get the same message.  I don't have Office XP or 2002 on this