Exporting DataBlock to Excel on web

Hi All,
I want to export data from a datablock I have to an Excel sheet. The only idea I had so far is to write a plsql procedure that will create a CSV file of the block and open it with excel, but than, I don't have any titles on the sheet and it's really ugly. Maybe you have an idea or made something similar?
Thanx
Yaron.

Hi,
consider using reports ( 6i Patch 1 and above) using the following arguments:
desformat=delimited&mimetype=application/vnd.ms-excel
See also note 121436.1 on Metalink
http://metalink.oracle.com
null

Similar Messages

  • Export datas to Excel (Using Web Utilities)

    Hi,
    This is the procedure to export the datas from Data Block to the excel sheet. It woks fine in the client-server arch (by replaceing CLIENT_OLE2 with OLE2). But i need to execute in Appication Server Arch. so I prefixed "CLIENT_" , but it is not working. Is there any suggestion to implement it.
    PROCEDURE pr_Forms_to_Excel(p_block_name IN VARCHAR2 DEFAULT NAME_IN('system.current_block')) IS
    -- Declare the OLE objects
    application CLIENT_OLE2.OBJ_TYPE;
    workbooks CLIENT_OLE2.OBJ_TYPE;
    workbook CLIENT_OLE2.OBJ_TYPE;
    worksheets CLIENT_OLE2.OBJ_TYPE;
    worksheet CLIENT_OLE2.OBJ_TYPE;
    cell CLIENT_OLE2.OBJ_TYPE;
    range CLIENT_OLE2.OBJ_TYPE;
    range_col CLIENT_OLE2.OBJ_TYPE;
    -- Declare handles to OLE argument lists
    args CLIENT_OLE2.LIST_TYPE;
    -- Declare form and block items
    form_name VARCHAR2(100);
    f_block VARCHAR2(100);
    l_block VARCHAR2(100);
    f_item VARCHAR2(100);
    l_item VARCHAR2(100);
    cur_block VARCHAR2(100) := NAME_IN('system.current_block');
    cur_item VARCHAR2(100) := NAME_IN('system.current_item');
    cur_record VARCHAR2(100) := NAME_IN('system.cursor_record');
    item_name VARCHAR2(100);
    baslik VARCHAR2(100);
    row_n NUMBER;
    col_n NUMBER;
    filename VARCHAR2(100);
    ExcelFontId CLIENT_OLE2.list_type;
    BEGIN
    -- Start Excel
    application:=CLIENT_OLE2.CREATE_OBJ('Excel.Application');
    CLIENT_OLE2.SET_PROPERTY(application, 'Visible', 'True');
    -- Return object handle to the Workbooks collection
    workbooks:=CLIENT_OLE2.GET_OBJ_PROPERTY(application, 'Workbooks');
    -- Add a new Workbook object to the Workbooks collection
    workbook:=CLIENT_OLE2.GET_OBJ_PROPERTY(workbooks,'Add');
    -- Return object handle to the Worksheets collection for the Workbook
    worksheets:=CLIENT_OLE2.GET_OBJ_PROPERTY(workbook, 'Worksheets');
    -- Get the first Worksheet in the Worksheets collection
    -- worksheet:=CLIENT_OLE2.GET_OBJ_PROPERTY(worksheets,'Add');
    args:=CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(args, 1);
    worksheet:=CLIENT_OLE2.GET_OBJ_PROPERTY(worksheets,'Item',args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    -- Return object handle to cell A1 on the new Worksheet
    go_block(p_block_name);
    baslik := get_block_property(p_block_name,FIRST_ITEM);
    f_item := p_block_name||'.'||get_block_property(p_block_name,FIRST_ITEM);
    l_item := p_block_name||'.'||get_block_property(p_block_name,LAST_ITEM);
    first_record;
    LOOP
    item_name := f_item;
    row_n := NAME_IN('SYSTEM.CURSOR_RECORD');
    col_n := 1;
    LOOP
    IF get_item_property(item_name,ITEM_TYPE)<>'BUTTON' AND
    get_item_property(item_name,VISIBLE)='TRUE'
    THEN
    -- Set first row with the item names
    IF row_n=1 THEN
         args := CLIENT_OLE2.create_arglist;
         CLIENT_OLE2.add_arg(args, 1);
         CLIENT_OLE2.add_arg(args, col_n);
         cell := CLIENT_OLE2.get_obj_property(worksheet, 'Cells', args);
         CLIENT_OLE2.destroy_arglist(args);
         --cell_value := CLIENT_OLE2.get_char_property(cell, 'Value');
         ExcelFontId := CLIENT_OLE2.get_obj_property(Cell, 'Font');
         CLIENT_OLE2.set_property(ExcelFontId, 'Bold', 'True');
    baslik:=NVL(get_item_property(item_name,PROMPT_TEXT),baslik);
    args:=CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(args, row_n);
    CLIENT_OLE2.ADD_ARG(args, col_n);
    cell:=CLIENT_OLE2.GET_OBJ_PROPERTY(worksheet, 'Cells', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    CLIENT_OLE2.SET_PROPERTY(cell, 'Value', baslik);
    CLIENT_OLE2.RELEASE_OBJ(cell);
    END IF;
    -- Set other rows with the item values
    args:=CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(args, row_n+1);
    CLIENT_OLE2.ADD_ARG(args, col_n);
    cell:=CLIENT_OLE2.GET_OBJ_PROPERTY(worksheet, 'Cells', args);
    CLIENT_OLE2.DESTROY_ARGLIST(args);
    IF get_item_property(item_name,DATATYPE)<>'NUMBER' THEN
    CLIENT_OLE2.SET_PROPERTY(cell, 'NumberFormat', '@');
    END IF;
    CLIENT_OLE2.SET_PROPERTY(cell, 'Value', name_in(item_name));
    CLIENT_OLE2.RELEASE_OBJ(cell);
    END IF;
    IF item_name = l_item THEN
    exit;
    END IF;
    baslik := get_item_property(item_name,NEXTITEM);
    item_name := p_block_name||'.'||get_item_property(item_name,NEXTITEM);
    col_n := col_n + 1;
    END LOOP;
    EXIT WHEN NAME_IN('system.last_record') = 'TRUE';
    NEXT_RECORD;
    END LOOP;
    -- Autofit columns
    range := CLIENT_OLE2.GET_OBJ_PROPERTY( worksheet,'UsedRange');
    range_col := CLIENT_OLE2.GET_OBJ_PROPERTY( range,'Columns');
    CLIENT_OLE2.INVOKE( range_col,'AutoFit' );
    CLIENT_OLE2.RELEASE_OBJ( range );
    CLIENT_OLE2.RELEASE_OBJ( range_col );
    -- Get filename and path
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG( args, p_block_name );
    CLIENT_OLE2.ADD_ARG( args,'Excel Workbooks (*.xls, *.xls');
    filename := CLIENT_OLE2.INVOKE_CHAR( application,'GetSaveAsFilename',args );
    CLIENT_OLE2.DESTROY_ARGLIST( args );
    -- Save as worksheet
    IF NVL(filename,'0')<>'0' THEN
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG( args,filename );
    CLIENT_OLE2.INVOKE( worksheet,'SaveAs',args );
    CLIENT_OLE2.DESTROY_ARGLIST( args );
    END IF;
    -- Close workbook
    --CLIENT_OLE2.INVOKE( workbook ,'Close');
    -- Release the OLE objects
    CLIENT_OLE2.RELEASE_OBJ(worksheet);
    CLIENT_OLE2.RELEASE_OBJ(worksheets);
    CLIENT_OLE2.RELEASE_OBJ(workbook);
    CLIENT_OLE2.RELEASE_OBJ(workbooks);
    --CLIENT_OLE2.INVOKE(application, 'Quit');
    CLIENT_OLE2.RELEASE_OBJ(application);
    -- Focus to the original location
    go_block(cur_block);
    go_record(cur_record);
    go_item(cur_block||'.'||cur_item);
    END;
    Thanks in advance.
    Rizly

    Hi Simon,
    It is not giving any error message, but not generaitng the output also. But if i removed all the prefixed CLIENT_ , then I will get the out put in the Application Server machience (Export the datas from the argument DataBlock to the Excel sheet) , but I need the same in the Client Machience, thats why I prefixed the CLIENT_, but i thing even though it wont for every methods, because i read like that in the Webutil Demo Documentation.
    Thank U, Thank U Very much
    Rizly

  • Exporting to Microsoft Excel from a DataView Web Part consuming a Web Service with Parameters

    In Sharepoint Designer, I've developed a page displaying a DataView Web Part which consumes an XML Web Service with three parameters.  These parameters are passed in from a simple Form Web Part containing three input fields.  I am able to provide default values for the web service so the dataview is initially populated, and when I enter in new parameters, the web service goes back, grabs the requested data and displays in the dataview nice and slick.
    The problem I'm having is this: In Internet Explorer 7, when I right-click on the DataView Web Part and select Export to Microsoft Excel, Excel opens up, says "ExternalData_1: Getting Data..." and returns the data from the web service which applies to the default parameter values each and every time, regardless of whether I have changed the parameters on the web page, and contrary to what the DataView Web Part displays on the screen.
    Has anyone else run into this, and is there a solution to the problem?
    Best regards,
    Mark Christie

    Hi Bullish35,
     It's possible to provide single export button and export your 4 dataview webparts. Here's the modified code.
    <Script Language="Javascript">
    function isIE() // Function to Determine IE or Not
    return /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent);
    function exportToExcel() // Function to Export the Table Data to Excel.
    var isIEBrowser = isIE();
    if(isIEBrowser== false)
    alert('Please use Internet Explorer for Excel Export Functionality.');
    return false;
    else
    var strTableID1 = "detailsTable1", strTableID2 = "detailsTable2", strTableID3 = "detailsTable3", strTableID4 = "detailsTable4";
    var objExcel = new ActiveXObject("Excel.Application");
    var objWorkBook = objExcel.Workbooks.Add;
    var objWorkSheet = objWorkBook.Worksheets(1);
    var detailsTable = document.getElementById(strTableID1);
    var intRowIndexGlobal= 0;
    for (var intRowIndex=0;intRowIndex<detailsTable1.rows.length;intRowIndex++)
    for (var intColumnIndex=0;intColumnIndex<detailsTable1.rows(intRowIndex).cells.length;intColumnIndex++)
    if(intColumnIndex != 3)
    objWorkSheet.Cells(intRowIndexGlobal+1,intColumnIndex+1) = detailsTable1.rows(intRowIndex).cells(intColumnIndex).innerText;
    intRowIndexGlobal++;
    for (var intRowIndex=0;intRowIndex<detailsTable2.rows.length;intRowIndex++)
    for (var intColumnIndex=0;intColumnIndex<detailsTable2.rows(intRowIndex).cells.length;intColumnIndex++)
    if(intColumnIndex != 3)
    objWorkSheet.Cells(intRowIndexGlobal+1,intColumnIndex+1) = detailsTable2.rows(intRowIndex).cells(intColumnIndex).innerText;
    intRowIndexGlobal++;
    for (var intRowIndex=0;intRowIndex<detailsTable3.rows.length;intRowIndex++)
    for (var intColumnIndex=0;intColumnIndex<detailsTable3.rows(intRowIndex).cells.length;intColumnIndex++)
    if(intColumnIndex != 3)
    objWorkSheet.Cells(intRowIndexGlobal+1,intColumnIndex+1) = detailsTable3.rows(intRowIndex).cells(intColumnIndex).innerText;
    intRowIndexGlobal++;
    for (var intRowIndex=0;intRowIndex<detailsTable4.rows.length;intRowIndex++)
    for (var intColumnIndex=0;intColumnIndex<detailsTable4.rows(intRowIndex).cells.length;intColumnIndex++)
    if(intColumnIndex != 3)
    objWorkSheet.Cells(intRowIndexGlobal+1,intColumnIndex+1) = detailsTable4.rows(intRowIndex).cells(intColumnIndex).innerText;
    intRowIndexGlobal++;
    objExcel.Visible = true;
    objExcel.UserControl = true;
    </Script>
    I haven't tested this. But it should work! :)Regards,
    Venkatesh R
    /* My Code Runs in Visual Studio 2010 */
    http://geekswithblogs.net/venkatx5/

  • Exports a hierarchy from the web to Excel

    Hi Experts
    When the user exports a hierarchy from the web to Excel, it prompts the user for their password as the excel session opens. If they donu2019t enter it u2013 it constantly prompts for a password when the excel file is used.
    Anyone got the same issue? or anyway I can get over this?
    thanks

    Not possible - at the present time anyway.
    If you want such a photo available for viewing on your iPhone, you need to download/save the photo on your computer - used for syncing/transferring data from your computer to the iPhone, and transfer this photo from your computer to your iPhone - the same for any photos transferred from your computer to your iPhone.

  • Maximum number of rows export to excel from WebI

    Hello,
    I have a WebI Report in BO 4 SP6 which has 14 columns and 80,000 rows. I opened the report in WebI (Internet explorer) and clicked on the export icon but nothing happened. this report was being run for a month 201301.
    So I modified the same report with 1 week's data which is 4500 rows and when I exported it to excel 2007 and it worked.
    My questions are:
    1- how do I export 80,000 rows of data to excel?
    2- what servers/services are responsible for exporting data to excel?
    3- any other opinions that you can share which might help me.
    PS: I have not test this in rich client since rich client is not being used by users, Users only use WebI.
    Regards,
    samique

    After you click on export to excel. wait for some time for the pop up to come up.... Even after some time  if it doesn't come up and throw a timeout error "Missing sEntry parameter", then you can try by increasing the time limit. But I won't recommend this since, this is happening due to huge volume of data.
    Below thread might help you
    Error when exporting WebI to PDF
    If you export it using rich client, you can clearly see that the file size is too large.. It was 45 MB in my case. So I requested my user to put some filters and then do an export to excel.

  • Error in Exporting HRMS people data to excel using WEB EDI.

    Hi ,
    I am using an existing integrator to export people data to excel using WEB ADI.
    When the excel opens it first shows the it is trying to download data, but later shows an error message saying that an error has occurred in the script on this page
    line 18
    Char 5
    Error Object doesn't support this property or method.
    Can anyone please throw some light as to what can be the cause of the error.
    Regards
    Deepak

    Hi experts,
    When I click the "Upload" button on GL Journal WebADI, The following error message is displayed:
    http://myservername:port/OA_HTML/BneApplicationService?bne:encoding=UTF-8
    I think this error is similar as your previous discussion, and I tried the solution as you mentioned, but not worked. If there is any new solution for the errors of this kind?
    Some Environment parameters are as following:
    Product: EBS 12.1.1
    Browser: IE 7.0 and Firefox 3.5.5
    Hope for your advice.
    Thanks in advance.

  • "Export to Microsoft Excel" in Bex Web

    Hi Experts,
    I am refreshing report in Bex web and trying to save in Excel format.
    I am hitting on " Export to Microsoft Excel" button.
    It works fine with 65 pages report , but fails to export for report with 265+ pages.
    This report has 7+ columns.
    We are using MS 2007 version and BI 7.0
    Wanted to check if there are limitations or if any SAP NOTES or PATCHES would help me.
    I quick reply would  of great help to me.
    Thanking in advance.
    VS8VIV

    Hi,
    unfortunately SAP still limitate exporting to EXcel files no more
    than 65,536 rows , currently there is no solution available for this
    issue.
    Please check note 1040454 and its restrictions from the .NET
    environment, leading to the limitation of 750.000 cells. If one
    considers the currently existing limitation of 65536 rows, this
    would mean something around 11 columns. Even when more rows are
    supported, the maximum number of cells that the .Net process can
    handle would not increase.
    1178857 Additional information: Export to Excel functions.
    For huge queries SAP offers Open Hub as a 3rd party tool. Please refer
    to the following link for more information
    about this:
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/504797dc-9467-2a10-52ba-acd35244cd39
    Regards,
    Venkat

  • Problem while exporting the text written on web-template to excel.

    Hi Experts,
    I created a report at WAD ,while exporting it to excel all the web items got exported except for the text written on the web-template.
    Is it possible to export the text written on web-template to excel???
    Also i dont want to add the text-item.
    Edited by: shyam@apa on Mar 6, 2009 8:42 AM
    Edited by: shyam@apa on Mar 6, 2009 8:43 AM

    Hi Avinash
    To download  such characteres you need to adjust code page to be used during export. You can review SAP note 73606 to identify which code page is required for this language
    Best regards

  • Unexplained Error while Exporting Datagrid to Excel

    Everything else seems to work ok (e.g. paging, master/detail functions, etc.) but the Export Datagrid to Excel isn't. I get the following:
    ErrorWe Recommend:Refreshing the page.Contacting your Portal administrator if problems persist.Accessing this Portlet at a later time.
    I am exporting it out as an attachment so Excel opens for the user. It works fine outside of the portal. Anyone know what I'm doing wrong?
    Paul

    I'm using the standard Microsoft ASP.NET 1.1 Datagrid control. Here is my routine that gets launched from a LinkButton Control...
    privatevoidExportDataGrid(){Response.Clear();Response.Buffer= true;Response.ContentType = "application/vnd.ms-excel"; Response.AppendHeader("Content-Disposition", "attachment;filename=Lead_FeedBack.xls");Response.Charset = "";
    this.EnableViewState = false; System.IO.StringWriter oStringWriter = newSystem.IO.StringWriter(); System.Web.UI.HtmlTextWriter oHtmlTextWriter = newSystem.Web.UI.HtmlTextWriter(oStringWriter);
    // Create a DataGrid control and Pass content from first DataGrid to itDataGrid DataGrid2 = newDataGrid();DataGrid2 = DataGrid1;this.RemoveControls(DataGrid2);
    //Lets make it a generic looking spreadsheetDataGrid2.HeaderStyle.BackColor = Color.LightGray;DataGrid2.AlternatingItemStyle.BackColor = Color.White;DataGrid2.PagerStyle.BackColor = Color.LightGray;DataGrid2.HeaderStyle.Font.Bold = true;DataGrid2.RenderControl(oHtmlTextWriter);
    Response.Write(oStringWriter.ToString()); Response.End(); }
    Paul

  • Problem in exporting data to excel in nwds 7.3

    Hi All,
    I was using the following code for exporting data to excel in NWDS 7.3
    private IWDCachedWebResource getCachedWebResource(byte[] file, String name,
    WDWebResourceType type) {
    IWDCachedWebResource cachedWebResource = null;
    if (file != null) {
    cachedWebResource = WDWebResource.getWebResource(file, type);
    cachedWebResource.setResourceName(name);
    return cachedWebResource;
    I was getting the error in the following line cachedWebResource = WDWebResource.getWebResource(file, type); when I clicked the quick help it ststed the getWebResource method is depricated.  Kindly provide some assistance on what is the new method in its place.
    Thank you
    Regards,
    Preet Kaur

    Hi Ganesh,
    Thanks that worked fine, but when we go further we are facing problem ie
    byte[] excelXMLFile;
    IWDCachedWebResource cachedExcelResource = null;
    String fileName = dataNode.getNodeInfo().getName() + ".xls";
    try {
    // create Excel 2003 XML data as a byte array for the given context node,
    // attributes and headers
    excelXMLFile = toExcel(dataNode, columnInfos).getBytes("UTF-8");
    // create a cached Web Dynpro XLS resource for the given byte array
    // and filename
    cachedExcelResource = getCachedWebResource(
    excelXMLFile, fileName, WDWebResourceType.XLS);
    // Store URL and file name of cached Excel resource in context.
    if (cachedExcelResource != null) {
    wdContext.currentContextElement().setExcelFileURL(
    cachedExcelResource.getURL());
    wdContext.currentContextElement().setExcelFileName(
    cachedExcelResource.getResourceName());
    // Open popup window with a link to the cached Excel file Web resource.
    openExcelLinkPopup();
    } else {
    wdComponentAPI.getMessageManager().reportException(
    "Failed to create Excel file from table!", true);
    } catch (UnsupportedEncodingException e) {
    wdComponentAPI.getMessageManager().reportException(
    e.getLocalizedMessage(), true);
    } catch (WDURLException e) {
    wdComponentAPI.getMessageManager().reportException(
    e.getLocalizedMessage(), true);
    The above bold lines also would need to be converted to inputstream, but not sure how to correct that
    We are following the below pdf for the implementation.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/edc2f3c2-0401-0010-8898-acd5b6a94353?QuickLink=index&overridelayout=true
    Thank you
    Regards,
    Jaspreet Kaur

  • Exporting Crystal to EXCEL

    Post Author: naissani
    CA Forum: Exporting
    I am trying to export the crystal report to Excel from Web but I am getting the following error. I would appreciate if anyone can help me out. when I tried to export to Word or PDF it works fine. I am using Crystal 9.
    Here is the Error:
    Error in File D:\webapps\Prod\LTCH_ARREC_ReportEngine\Report\ResidentSpouseCharge.rpt: Error detected by export DLL:
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: CrystalDecisions.CrystalReports.Engine.ExportException: Error in File D:\webapps\Prod\LTCH_ARREC_ReportEngine\Report\ResidentSpouseCharge.rpt: Error detected by export DLL: Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace:
    &#91;ExportException: Error in File D:\webapps\Prod\LTCH_ARREC_ReportEngine\Report\ResidentSpouseCharge.rpt:
    Error detected by export DLL: &#93;
        . F(String       , EngineExceptionErrorID 
    ) +440
        . A(Int16   , Int32   ) +530
        . @(Int16  ) +10
       CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext) +588
       CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportFormatType formatType) +141
       Report_Engine._ReportView.ExportReport() in C:\WebApps\dev\Report_Engine\_ReportView.aspx.vb:200
       Report_Engine._ReportView.btnExport_Click(Object sender, EventArgs e) in C:\WebApps\dev\Report_Engine\_ReportView.aspx.vb:208
       System.Web.UI.WebControls.Button.OnClick(EventArgs e) +108
       System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +57
       System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +18
       System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +33
       System.Web.UI.Page.ProcessRequestMain() +1292
    Thanks

    Post Author: SHCrystal
    CA Forum: Exporting
    Hi,
    Thanks for replying.
    We do receive an error message as follows:
    Status:
    Failed
    Error Message:
    Information is needed before this report can be processed.
    And as I mentioned, this happens only when the parameter is selected as 'default'.
    The report is usually never that big, and in this case, if we run it with a specific parameter, say May2007, then it exports fine.. the problem starts with default..
    Thank you

  • Export sections to Excel as individual tabs

    Hi,
    My report is sectioned for e.g by Area. Is there any way I can export this to excel as separate tabs i.e. a tab for each area?
    Any help would be appreciated.
    Regards,
    Aoife

    This question comes up quite often (hint, hint, SAP moderators), but alas, the answer is "no".  Within WebI and exporting to Excel, all tabs go across, unless you use "CSV" option in Infoview, but that is best left for another discussion.  If you poke around a bit in the Desktop client, I've heard of folks using VB script (or is that Visual Basic script?) and writing some code to generate a new Excel worksheet for each tab encountered, but it is not possible in WebI due to it not being a client tool -- it's a web tool....
    Thanks,
    John

  • Error in "Export to Microsoft Excel" from Portal

    Hi,
    I have a BW report on Portal 7.0 with columns with time in format like hh:mm:ss.
    When I exported it to Excel and open this file I get inside Excel window an information window "Problems while loading" and explanation "Value of cell". After I send OK sheet of data is opening. The hours fraction of time in all cells is changed to hh+1.
    In log of this action ...\Temporary Internrt Files\Content.MSO\EB0B32EE.log are lines like:
    HTML Error of Cell Value:06:10:00
        where 06 ought to be 05.
    The text below is from Excel:
    <td class=3Dx547531 x:num=3D"06:10:00" style=3D" mso-number-format:'hh\:mm\:ss'"><font class=3DFx547530>05:10:00</font></td>
    Thanks in advance
    Grzegorz Szot

    Hi,
    I had the same problems (html inside excel) it was caused by wrong excel / bex versions because they were not compatible.
    In my mind your error is caused by the same problem.
    Ceck the compatibility matrix:
    [BEx Compatibility|https://websmp201.sap-ag.de/~sapidb/011000358700000227152003E/compatibility_bex_office.htm.] of MS Operating Systems and Office Products
    Business Explorer Suite: Platform Questions
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/1d43766a-0901-0010-0a9b-85eb1089fb17
    Bog:
    /people/community.user/blog/2007/06/27/using-the-bi-7x-add-on-for-sap-gui-710--requirements
    If this does not help and you found no solution you can check this notes on relevance:
    NW 7.0 BI Web Applications - Excel export of time cells
    SAP Note Number: [1152146|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bw_bex/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d31313532313436%7d]
    NW04s BI Web Excel export: Data cells exported as text
    SAP Note Number: [982305|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bw_bex/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d393832333035%7d]
    Error during export to MS Excel with certain templates
    SAP Note Number: [1148493|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bw_bex/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d31313438343933%7d]
    NW2004s BI Excel export date is generation time-dependent
    SAP Note Number: [1086420|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes/sdn_oss_bw_bex/~form/handler%7b5f4150503d3030323030363832353030303030303031393732265f4556454e543d444953504c4159265f4e4e554d3d31303836343230%7d]
    Hope this helps. Don't forget to assign points if it was helpful.
    Regards
    Andreas

  • Problems Exporting rpts to Excel!

    Post Author: miguelitobh
    CA Forum: Exporting
    Hello Everybody! I´m new in the forum, and i have a question that is killing me... I´ve an application that runs asp and COM+ using Visual Basic... I made another litlle module for Crystal Reports rpts imports... I wrote the code using the Business Objects Samples like example (rtpserver.asp, etc) ands works fine. The problem that i´ve found is: In the export all the options are working, except the 2 excel´s types. When a try do export a report to Excel, i put the file name and try to save, but the application hangs my IIS server... Anyone can help me? I´m using Windows XP SP2, Office 2003 and Crystal Reports XI R2...
    Tahnk´s

    Wannetta,
    When the user filters the data and then exports it to excel; all of the original data is exported rather than the filtered data.
    Can you describe the exact workflow in a bit more detail.  Here is one "gotcha" to consider, which sounds suspicous to your case.  If the user is using InfoView (not WebI), and he or she uses Export to Excel with CSV, then there is no consideration to what has been done in the report, the contents of what you see in the "Results Object" panel from the Edit Query view is what is sent over to the CSV file.  Also, the order of the columns of data is according to what is specified in the "Results Object" panel.  So, just a heads-up to consider if this is happening or not.  Otherwise, please give us the workflow and the version of XI and client's versioin of Java on the workstation...
    Thanks,
    John

  • Export to Microsoft Excel opens empty - IE11, Office 2010, Win 7

    Hi,
    I am using IE11, Office 2010 and Win7 64bit. When I open IE, navigate to a webpage and click "Export to Microsoft Excel" from the context menu of IE, Excel opens and the "New Web Query" dialog has an empty address (http:///). The content
    is
    "This page can`t be displayed"
    Does anyone know what might be the cause of this problem and how can I fix it?
    Best Regards,
    Jordan

    Hi,
    Please include a link to any webpage you are having issues with your questions so we can test the page....:
    Any webpage ... it is not webpage specific rather an environmental problem.
    javascript:alert(navigator.platform); :
    Message from webpage
    Win32
    OK   
    Open Excel, switch to DATA, choose From Web , then try to import the website for test if it had same problem.:
    It works unsurprisingly ...
    When I open IE I can see in the Windows Task Manager there are 2 processes - a 64bit (~8MB RAM) and a 32bit one (~70 MB RAM)
    My Office 2010 is a 32bit.
    If I open it directly a 32bit excel process is stared.
    If I open it via the "Export to Microsoft Excel" menu two 32bit excel processes are started. I believe one is for the New Web Query and another one for the Excel itself ..
    Best Regards,
    Jordan

Maybe you are looking for

  • Jabber Windows - no phone control with LDAP Custom filter

    I am unable to control the desktop phone from the Jabber 9.1 Windows client when the CallManager LDAP Directory uses a Custom Filter. Has anyone else experienced this? If I set the LDAP Custom Filter to <none> and save, then Desktop Phone control wor

  • HT203216 my iPhone calendar will no longer sync to my outlook on my mac

    if i enter something on my iphone it will not sync to my computer (a mac) where i use outlook for my calandar- please help. I know that itues used to be an option but i have updated so i don't have that option any more

  • Pages  too wide for screen in Safari 5.0.3

    Often, when I launch Safari5.0.3 the web page that comes up extends about 3" past the right edge of my screen. Of course, I can then cinch it back manually to fit the screen, but would prefer that pages fit automatically. I tried different screen res

  • Problem with Java doc -- any ideas

    This is the command which produces the java docs: javadoc  -d docs -author -overview e:\workspace\ckviewer\src\overview.html -doctitle "CkEntry / CkViewer Application and APIs" -sourcepath e:\workspace\ckviewer\src cprs.as400 cprs.ckentry cprs.ckview

  • IWeb and Mountain Lion

    Hello folks, Through this community,  I learned  I can't download iWeb to install in Mountain Lion, I need to use an iLife DVD. OK, I have a MacBook running Snow Leopard and also the DVD that came with it where is iWeb, I believe into iLife. Using ex