Exporting to excel properties

Post Author: skootsu
CA Forum: Crystal Reports
Is there any way to export information that is in the Report Summary (like Name of report, Manager, etc) to the properties of the excel spreadsheet that is created from exporting?  Example, I have lots of CRs that generate excel spreadsheets.  Some of the excel files are generated from multiple CRs using multiple datasources.  In the CR report summary I key in the Report Name, the Manager, Specifics about the report like 'CR1 of 2\Outfile:Inv1\CR2:Inv2'.  This helps when users ask to have a report re-run/updated.  In the excel file Properties I would like to get this infor carried over with the data.  So we can look at these properties on the excel file and tell where it came from.  Right now all of our excel files just read the name of the excel file, Author:'Crystal Decisions', and Comments:'Powered by Crystal'.  Any tips?  I would like this info to go in the properties so they are out of the way of the actual data on the report.  Thanks
I am using CR XI

Are you setting the size in the report? Are you using styles?
Jason
Cool wrote:
> Hi ,
>
> I am using BIRT to develope some reports in my application. Some of
> my customers are using export to excel option for exporting these
> reports(I am using the default functionalities/options for this). The
> problem I have is I am unable to control the excel sheet properties.When
> the customer is exporting the report in excel, the cells are becoming
> small(only 1mm).Is there any way to control this and I can specify the
> row and column sizes for the excel which is created?
>
> Thanks in advance,
> Cool...

Similar Messages

  • After Export to Excel File error while opening using xmlwriter in silverlight

    Can one help me in fixing following issue after to export to excel had done iam getting following error message 
    "The file you are trying to open, 'test.xls', is in a different format than specified by the file extension. Verify that the file is not corrupted and is from a trusted source before opening the file. Do uou want to open the file now ?"
    If i click Yes file opens correctly but it shows above message . Can any one suggest me how to avoid this programatically with the following code.
    I tried by changing the file saving as  .xls to .xlsx  but it doesnt works.
    Public Sub Export()
    Dim ss As String = "urn:schemas-microsoft-com:office:spreadsheet"
    Dim DataType As String
    Dim DataValue As Object
    'Dim DataView As C1.Silverlight.Data.DataView = m_DataGrid.ItemsSource
    'Dim ItemsSource As C1.Silverlight.Data.DataTable = DataView.Table
    Dim XmlSettings As XmlWriterSettings
    Dim ColumnBinding As Binding
    Dim FieldName As String
    Dim DataGridColumn As C1.Silverlight.DataGrid.DataGridColumn
    Dim ColumnIndex As Integer
    Dim J As Integer
    Dim DataGridRow As C1.Silverlight.DataGrid.DataGridRow
    Dim CommonUtil As New GoldCRM.Core.Common.Util
    Dim PropertyInfo As System.Reflection.PropertyInfo
    Dim CellFormat As String
    Try
    If m_DataGrid.Rows.Count = 0 Then Exit Try
    XmlSettings = New XmlWriterSettings
    XmlSettings.Indent = True
    XmlSettings.NewLineOnAttributes = False
    Using myXML As XmlWriter = XmlWriter.Create(m_Stream, XmlSettings)
    With myXML
    .WriteStartDocument()
    .WriteProcessingInstruction("mso-application", "progid=" & ControlChars.Quote & "Excel.Sheet" & ControlChars.Quote)
    .WriteStartElement("Workbook", ss)
    .WriteStartElement("DocumentProperties", "urn:schemas-microsoft-com:office:office")
    .WriteElementString("Author", m_DocumentProperties.Author)
    .WriteElementString("LastAuthor", String.Format("{0} {1}", Application.Current.Resources("EmpFirstName"), Application.Current.Resources("EmpLastName")))
    .WriteElementString("Created", m_DocumentProperties.Created)
    .WriteElementString("LastSaved", m_DocumentProperties.LastSaved)
    .WriteElementString("Company", Application.Current.Resources("REPORTINGSITENAME"))
    .WriteElementString("Version", m_DocumentProperties.Version)
    .WriteEndElement() 'Document Properties
    .WriteStartElement("ExcelWorkbook", "urn:schemas-microsoft-com:office:excel")
    .WriteElementString("WindowHeight", m_WorkbookProperties.WindowHeight)
    .WriteElementString("WindowWidth", m_WorkbookProperties.WindowWidth)
    .WriteElementString("WindowTopX", m_WorkbookProperties.WindowTopX)
    .WriteElementString("WindowTopY", m_WorkbookProperties.WindowTopY)
    .WriteElementString("ProtectStructure", m_WorkbookProperties.ProtectStructure)
    .WriteElementString("ProtectWindows", m_WorkbookProperties.ProtectWindows)
    .WriteEndElement() 'Excel Workbook
    .WriteStartElement("Styles")
    For I As Integer = 0 To m_Styles.Count - 1
    .WriteStartElement("Style")
    .WriteAttributeString("ss", "ID", ss, m_Styles(I).ID)
    If m_Styles(I).Name <> "" Then
    .WriteAttributeString("ss", "Name", ss, m_Styles(I).Name)
    End If
    'ALIGNMENT LOGIC:
    .WriteStartElement("Alignment")
    If Not m_Styles(I).Alignment Is Nothing Then
    If m_Styles(I).Alignment.Horizontal <> 0 Then
    .WriteAttributeString("ss", "Horizontal", ss, m_Styles(I).Alignment.Horizontal.ToString)
    End If
    If m_Styles(I).Alignment.Vertical <> 0 Then
    .WriteAttributeString("ss", "Vertical", ss, m_Styles(I).Alignment.Vertical.ToString)
    End If
    If m_Styles(I).Alignment.WrapText = True Then
    .WriteAttributeString("ss", "WrapText", ss, "1")
    End If
    End If
    .WriteEndElement()
    'BORDER LOGIC:
    .WriteStartElement("Borders")
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Bottom")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Left")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Right")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Top")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteEndElement() 'Borders
    'FONT LOGIC:
    .WriteStartElement("Font")
    Dim myFont As Excel.Styles.Font = m_Styles(I).Font
    .WriteAttributeString("ss", "FontName", ss, myFont.FontName.ToString)
    .WriteAttributeString("ss", "Size", ss, myFont.Size)
    .WriteAttributeString("ss", "Color", ss, myFont.Color.ToString.Remove(1, 2))
    If myFont.Bold = True Then .WriteAttributeString("ss", "Bold", ss, "1")
    If myFont.Italic = True Then .WriteAttributeString("ss", "Italic", ss, "1")
    If myFont.Underline <> 0 Then .WriteAttributeString("ss", "Underline", ss, myFont.Underline.ToString)
    .WriteEndElement()
    Dim myInterior As Excel.Styles.Interior = m_Styles(I).Interior
    .WriteStartElement("Interior")
    .WriteAttributeString("ss", "Color", ss, myInterior.Color.ToString.Remove(1, 2))
    .WriteAttributeString("ss", "Pattern", ss, "Solid")
    .WriteEndElement()
    .WriteStartElement("NumberFormat")
    .WriteEndElement()
    .WriteStartElement("Protection")
    .WriteEndElement()
    .WriteEndElement() 'Style
    Next I
    .WriteStartElement("Style")
    .WriteAttributeString("ss", "ID", ss, "DateStyle")
    .WriteStartElement("NumberFormat")
    .WriteAttributeString("ss", "Format", ss, "General Date")
    .WriteEndElement() 'NumberFormat
    .WriteEndElement() 'Style
    .WriteStartElement("Style")
    .WriteAttributeString("ss", "ID", ss, "HeaderStyle")
    .WriteStartElement("Font")
    .WriteAttributeString("x", "Family", ss, "Swiss")
    .WriteAttributeString("ss", "Bold", ss, "1")
    .WriteEndElement() 'Font
    .WriteEndElement() 'Style
    .WriteEndElement() 'Styles
    'WORKSHEETS:
    .WriteStartElement("Worksheet")
    .WriteAttributeString("ss", "Name", ss, "WORKSHEET")
    .WriteStartElement("Table")
    .WriteAttributeString("ss", "ExpandedColumnCount", ss, m_DataGrid.Columns.Count)
    .WriteAttributeString("ss", "ExpandedRowCount", ss, m_DataGrid.Rows.Count + 100) 'Temporary fix: sometimes 1 row is not added.
    .WriteAttributeString("ss", "FullColumns", ss, m_DataGrid.Columns.Count)
    .WriteAttributeString("ss", "FullRows", ss, m_DataGrid.Rows.Count + 100) 'Temporary fix: sometimes 1 row is not added.
    .WriteAttributeString("ss", "DefaultRowHeight", ss, 15)
    For Each DataGridColumn In m_DataGrid.Columns
    If DataGridColumn.Visibility = Visibility.Visible Then
    .WriteStartElement("Column")
    If TypeOf DataGridColumn Is C1.Silverlight.DataGrid.DataGridNumericColumn Then
    .WriteAttributeString("ss", "AutoFitWidth", ss, 1)
    ElseIf TypeOf DataGridColumn Is C1.Silverlight.DataGrid.DataGridDateTimeColumn Then
    .WriteAttributeString("ss", "AutoFitWidth", ss, 1)
    Else
    .WriteAttributeString("ss", "AutoFitWidth", ss, 0)
    End If
    If DataGridColumn.Width.Value <= 100 Then
    .WriteAttributeString("ss", "Width", ss, 100)
    Else
    .WriteAttributeString("ss", "Width", ss, DataGridColumn.Width.Value)
    End If
    .WriteEndElement()
    End If
    Next
    J = 0
    For Each DataGridRow In m_DataGrid.Rows
    J += 1
    If TypeOf DataGridRow Is GoldCRM.Controls.Filter.clsFilterRow Then
    .WriteStartElement("Row")
    .WriteAttributeString("ss", "Index", ss, J)
    .WriteAttributeString("ss", "AutoFitHeight", ss, 0)
    .WriteAttributeString("ss", "Height", ss, 15)
    ColumnIndex = 0
    For Each DataGridColumn In m_DataGrid.Columns
    If DataGridColumn.Visibility = Visibility.Visible Then
    FieldName = String.Empty
    If TypeOf DataGridColumn Is DataGridBoundColumn Then
    ColumnBinding = TryCast(DataGridColumn, DataGridBoundColumn).Binding
    If ColumnBinding.Path IsNot Nothing Then
    FieldName = ColumnBinding.Path.Path
    End If
    ElseIf TypeOf DataGridColumn Is DataGridTemplateColumn Then
    If DataGridColumn.FilterMemberPath IsNot Nothing Then
    FieldName = DataGridColumn.FilterMemberPath.Trim
    End If
    End If
    If Not FieldName.Equals(String.Empty) Then
    ColumnIndex += 1
    .WriteStartElement("Cell")
    .WriteAttributeString("ss", "Index", ss, ColumnIndex)
    .WriteAttributeString("ss", "MergeAcross", ss, 0)
    .WriteAttributeString("ss", "StyleID", ss, "HeaderStyle")
    .WriteStartElement("Data")
    .WriteAttributeString("ss", "Type", ss, "String")
    If DataGridColumn.Header IsNot Nothing Then
    .WriteValue(DataGridColumn.Header.ToString)
    Else
    .WriteValue("")
    End If
    .WriteEndElement() 'Data
    .WriteEndElement() 'Cell
    End If
    End If
    Next
    .WriteEndElement() 'Row
    End If
    If Not (TypeOf DataGridRow Is GoldCRM.Controls.Filter.clsFilterRow) Then
    .WriteStartElement("Row")
    .WriteAttributeString("ss", "Index", ss, J + 1)
    .WriteAttributeString("ss", "AutoFitHeight", ss, 0)
    .WriteAttributeString("ss", "Height", ss, 15)
    ColumnIndex = 0
    For Each DataGridColumn In m_DataGrid.Columns
    If DataGridColumn.Visibility = Visibility.Visible Then
    FieldName = String.Empty
    If TypeOf DataGridColumn Is DataGridBoundColumn Then
    ColumnBinding = TryCast(DataGridColumn, DataGridBoundColumn).Binding
    If ColumnBinding.Path IsNot Nothing Then
    FieldName = ColumnBinding.Path.Path
    End If
    ElseIf TypeOf DataGridColumn Is DataGridTemplateColumn Then
    If DataGridColumn.FilterMemberPath IsNot Nothing Then
    FieldName = DataGridColumn.FilterMemberPath.Trim
    End If
    End If
    If Not FieldName.Equals(String.Empty) Then
    ColumnIndex += 1
    Dim DataCellValue As Object = Nothing
    If Not (TypeOf DataGridRow Is GoldCRM.Controls.Filter.clsFilterRow) Then
    PropertyInfo = CommonUtil.GetProperty(DataGridRow.DataItem, FieldName)
    If PropertyInfo IsNot Nothing Then
    DataCellValue = PropertyInfo.GetValue(DataGridRow.DataItem, Nothing)
    End If
    End If
    CellFormat = String.Empty
    If DataCellValue IsNot Nothing Then
    Select Case DataCellValue.GetType.Name.ToUpper
    Case "BitmapImage".ToUpper
    DataValue = "Image"
    DataType = "String"
    Case "Hyperlink".ToUpper
    DataType = "String"
    DataValue = "Hyperlink"
    Case "Decimal".ToUpper
    DataType = "Number"
    DataValue = DataCellValue
    Case "DateTime".ToUpper
    If CType(DataCellValue, Date).Year > 1900 Then
    DataType = "DateTime"
    DataValue = DataCellValue
    CellFormat = "DateStyle"
    Else
    DataType = "String"
    DataValue = DataCellValue
    End If
    Case Else
    DataType = "String"
    DataValue = DataCellValue
    End Select
    Else
    DataType = "String"
    DataValue = String.Empty
    End If
    .WriteStartElement("Cell")
    .WriteAttributeString("ss", "Index", ss, ColumnIndex)
    .WriteAttributeString("ss", "MergeAcross", ss, 0)
    If Not CellFormat.Equals(String.Empty) Then
    .WriteAttributeString("ss", "StyleID", ss, CellFormat)
    End If
    .WriteStartElement("Data")
    .WriteAttributeString("ss", "Type", ss, DataType)
    .WriteValue(DataValue)
    .WriteEndElement() 'Data
    .WriteEndElement() 'Cell
    End If
    End If
    Next
    .WriteEndElement() 'Row
    End If
    Next
    .WriteEndElement() 'Table
    .WriteEndElement() 'Worksheet
    .WriteEndElement() 'Workbook
    .WriteEndDocument()
    .Close()
    End With
    End Using
    Catch ex As Exception
    Throw New Exception(ex.Message, ex)
    Finally
    If m_Stream IsNot Nothing Then
    m_Stream.Close()
    m_Stream.Dispose()
    End If
    m_Stream = Nothing
    m_DataGrid.IsLoading = False
    DataValue = Nothing
    'DataView = Nothing
    'ItemsSource = Nothing
    XmlSettings = Nothing
    ColumnBinding = Nothing
    DataGridColumn = Nothing
    End Try
    End Sub
    Krishna

    Hi,
    i have the same issue now where i need to populate the xport file name as report name. can you send me your solution please.

  • Output from Web Analysis Related Content will not Export to Excel

    I have Web Analysis reports, data in which is sourced from an EIS database. I have drill thru reports that are accessible from "Related Content". The resulting report is created fine, but cannot be exported into Excel. Specifically, I'm prompted for the location of Excel on my pc. Once I browse to it, it will open in Excel.
    I have upgraded from Office 10 to Office 12, although I cannot say for certain that is when this problem started occurring.
    Secondly, there are no other BI+ issues with export to Excel. For example, FR and WA export fine. The ExcelPath in the webanalysis.properties file takes care of that. I'm hoping there is something similar to update for this problem.
    Thanks for reading, hopefully someone else has encountered this and successfully resolved. BI+ version is 9.3.1.

    Have you tried the print button in the web analyzer it does export the input filter parameters as part of the exported PDF document.
    You can include any additional text elements and use a custom export template if required.

  • Sql server reporting services + export to excel + embedded images

    Hi all,
    i got a problem when exporting to excel in ssrs 2008.
    i use embedded image in the report. but when i export the report to excel, image is being exported but its width is being changed to size 0 .
    but when i click on it and expand it explicitly in excel it is being expanded .
    how to make the image by default to its actual width?
    how to fix this problem ?

    Hi sudeep Puvvadi,
    Based on the information posted, I have a test with SQL Server Reporting Services 2008 (SSRS2008) and Microsoft
    Excel 2010 by the following steps:
    From the Toolbox window, drag the image to the top edge of the design surface.
    In the image Properties dialog box, select Embedded from the Select The Image Source drop-down list.
    Click import, and select a BMP file from my local computer.
    Right-click the image, select Image Properties. In Size category, select Original size.
    Export the report to excel.
    When opening the excel file, the image displays with original size rightly. So I suggest you to add an image with
    the same steps above, then checking whether the image shows correctly. If it still cannot work fine for you, could you please give me a feedback and tell me related settings, so that I can reproduce the scenario exactly and provide further assistance?
    Thanks,
    Lola Wang
    Please remember to mark the replies as answers if they help.

  • Exporting to Excel causes compounded field to be divided

    I have a report with compounded fields of plant and manager (ex. 3350/200). When I attempt to export to Excel, it is treated as a division and it displays 16.75 instead. I've changed a couple of settings under Tools/Options and Query Properties in both Excel and BEx query designer, but it does not change it. I also tried to export as CSV. This works, but not without doing a lot of manual manipulations to the file and I'm trying to come up with a clean process for my users. I have not found any info in the OSS Notes. Has anyone seen this issue, or has any suggestions of what else I can try? Thanks!

    Hi Paul,
       Try to download as CSV and open again in excel, i think it will work. Or
       Format the perticular field as TEXT and try to down load.
    Or in report try to replace the perticular charachter"/" with "_" and download.
    Hope it Helps
    Srini

  • Y-axis Does not show values when exported to excel

    Hi,
    We are facing trouble while showing Y-axis values when report is exported to excel. On report Y-axis is shown properly however when we export it to excel only 1 value is shown with arrow mark(=>).
    If we will right click Y axis, we can see all data exported in "Select Data". If we select Y-axis, and change axis properties to automatic, we can see Y-axis values on excel.
    Now, is there any property setting which will show all the data on Y-axis instead of showing up single value with arrow?

    Thanks for your reply. I tried it closing all sheets and exporting, however result doesn't change. There is an aggregate table we are querying to which holds almost 20k records. Right now I have observed this with 3 reports. In one of the report I am using Horizontal chart. In that report there is issue with X-axis.
    e.g.
    Band
    1000<= |
                 |
                 |________________________________
                  A                     B                  C                D

  • Template with tabs Export to excel with variable dataprovider

    I have looked at examples in this forum of how others have used an "export to excel" button with a variable dataprovider but I cannot get these examples to work for my situation.
    I have a web template with 2 tabs, 1 dataprovider on each. The template has an icon button for "export to excel". The code came from 0QUERY_TEMPLATE. The tabs require a JavaScript function which hides all items except for the one on the selected tab and sets the property for the selected tab. I got the code for this from the WEB API reference for BW 3.x.
    I cannot get the button "export to excel" to export the selected (non-hidden) data provider. I need somehow to have a variable for dataprovider on the command to export. 
    Any help would be greatly appreciated.
    Provided below is my template.
    <object>
    <param name="OWNER" value="SAP_BW"/>
    <param name="CMD" value="SET_PROPERTIES"/>
    <param name="TEMPLATE_ID" value="ZTEST_EXPORT"/>
    <param name="VARIABLE_SCREEN" value="X"/>
    TEMPLATE PROPERTIES
    </object>
    <object>
    <param name="OWNER" value="SAP_BW"/>
    <param name="CMD" value="SET_DATA_PROVIDER"/>
    <param name="NAME" value="DATAPROVIDER_1"/>
    <param name="QUERY" value="ZPC_010"/>
    <param name="INFOCUBE" value="ZPC_M01"/>
    DATA_PROVIDER: DATAPROVIDER_1
    </object>
    <object>
    <param name="OWNER" value="SAP_BW"/>
    <param name="CMD" value="SET_DATA_PROVIDER"/>
    <param name="NAME" value="DATAPROVIDER_2"/>
    <param name="QUERY" value="ZPC_011"/>
    <param name="INFOCUBE" value="ZPC_M01"/>
    DATA_PROVIDER: DATAPROVIDER_2
    </object>
    <html>
    <head>
    <link href="/sap/bw/Mime/Customer/StyleSheets/ServicePortalBWReports.css" type="text/css" rel="stylesheet"/>
    <Script type="text/javascript">
    <!--
    /* function goto_tab: Show all items, starting with tabname, Hide all other items */
    function goto_tab(tabname) {
    SAPBWOpenURL(SAP_BW_URL_Get()'&item=TAB*&multi=X&hidden=X&cmd_1=item%3d'tabname+'*%26hidden%3d %26multi%3dX');
    /* DHTML function to set correct span-Tag visible
    For each Tab in Tab-Header (head_TAB) check, if item TABx is visible
    If Item is visible set Header as selected
    Otherwise set corresponding span-Tag to not visible */
    function set_actual_tab() {
    i=0;
    do {
    i++;
    if (document.getElementById('head_TAB'+i) != null) {
    /* Check if Object tag is hidden */
    var prop = SAPBWGetItemProp('TAB'+i);
    var hidden=true;
    if (prop != null){
    for(j=1;j<prop.length;j++){
    if (prop[j][0] == "HIDDEN") hidden = (prop[j][1]=='X');
    if (hidden) {
    document.getElementById("TAB"+i).setAttribute('style', 'display:none;visibility:false;',false);
    else {
    document.getElementById("head_TAB"+i).setAttribute('className', 'SAPBEXTbsTABsel',false);
    } while (document.getElementById('head_TAB'+i) != null)
    -->
    </script>
    </head>
    <body>
    <TABLE class=SAPBEXNavLineBorder cellSpacing=0 cellPadding=1 width=5 border=0>
    <TR>
    <TD width="5%">
    <TABLE cellSpacing=1 cellPadding=2 width="100%" border=0>
    <TR>
    <!-- Display Export Excel--->
    <TD class=SAPBEXNavLine><A href="<SAP_BW_URL CMD='EXPORT' FORMAT='XLS' DATA_PROVIDER='DATAPROVIDER_1'>">
    <IMG alt="Export to MS Excel" src="Mime/BEx/Icons/S_X_XLS.gif" border=0></A></TD>
    </TD></TR></TABLE></TD></TR></TABLE>
    <TABLE cellSpacing=1 cellPadding=5 width="75%" border=0>
    <TR>
    <TD vAlign=top>
    <P>
    <TABLE cellSpacing=0 cellPadding=5 border=0>
    <TR>
    <TD class=SAPBEXTbsTab id=head_TAB1><A href="javascript:goto_tab('TAB1')">Tab 1</A></TD>
    <TD class=SAPBEXTbsTab id=head_TAB2><A href="javascript:goto_tab('TAB2')">Tab 2</A></TD>
    </TR></TABLE>
    <TABLE class=SAPBEXTbsBdyEdg cellSpacing=0 cellPadding=5 width="5%"
    border=0>
    <TR>
    <TD vAlign=top>
    <SPAN id=TAB1><object>
    <param name="OWNER" value="SAP_BW"/>
    <param name="CMD" value="GET_ITEM"/>
    <param name="NAME" value="TAB1"/>
    <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID"/>
    <param name="DATA_PROVIDER" value="DATAPROVIDER_1"/>
    <param name="GENERATE_CAPTION" value=""/>
    ITEM: TAB1
    </object></SPAN>
    <SPAN id=TAB2><object>
    <param name="OWNER" value="SAP_BW"/>
    <param name="CMD" value="GET_ITEM"/>
    <param name="NAME" value="TAB2"/>
    <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_GRID"/>
    <param name="DATA_PROVIDER" value="DATAPROVIDER_2"/>
    <param name="GENERATE_CAPTION" value=""/>
    <param name="HIDDEN" value="X"/>
    ITEM: TAB2
    </object></SPAN>
    </TD></TR></TABLE></P>
    <SCRIPT type=text/javascript>
    <!--
    /* This function call is needed to set the correct state */
    set_actual_tab();
    -->
    </SCRIPT>
    </TD></TR></TABLE>
    </body>
    </html>

    Kevin,
    Try calling a javascript function (e.g. excel_export) when the export icon is clicked on.
    Using the prop array find the tab that is not hidden and then use that index to build your export command. i.e. if tab1 is visible then pass dataprovider_1 to the excel download command.
    Another method would be to place a hidden field on the form to store the dataprovider and then read that field in the javascript function.  You would have to update this field when you switched between the tabs.
    Cheers,
    Kelly

  • Unhandled exception when exporting to EXCEL

    Hello,
    When I am exporting some reports, Desktop Intelligence crashes (error message at the end of this post).
    I work on Window XP SP2.
    My Desktop Intelligence release is 11.5.0.0.
    It happens when I try to save with EXCEL format (no problem with PDF or RTF).
    This does not happen with the same report in Business Object 6.5 (no problem to export to EXCEL on 6.5).
    I tried with Desktop Intelligence (11.5.0.0) on CITRIX Server (Windows 2003 system) and it crashes also.
    I have not seen any solution already posted on forums.
    Thanks for you help.
    Regards
    Benoit MARCESCHE
    1 processor P Family 6 Model 23 Stepping 6
    Windows 2000 Workstation  v5.1 build 2600 (S)
    Physical Total/Avail: 2.097.151 Kb / 2.097.151 Kb
    Temp directory C:\DOCUME1\bmar\LOCALS1\Temp\ (2 Kb available)
    'Unknown' video card
       1440 x 900 in true color
    Unhandled Exception
      Code: c0000005
      Description: EXCEPTION_ACCESS_VIOLATION
    Call stack:
    Module  at   0x7c340000: C:\WINDOWS\system32\MSVCR71.dll  v 7.10.3052.4 [A]
        address: 0x7c3417b5
    Module  at   0x00690000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\tools.dll  v 11.5.0.313 [A]
        address: 0x006d591a
    Module  at   0x55950000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\report.dll  v 1.0.0.1 [A]
        address: 0x55a8dab7
        address: 0x55a8fdca
        address: 0x55a93390
        address: 0x55a93598
        address: 0x55a93a59
        address: 0x55a93bc5
        address: 0x559e8157
        address: 0x55aba849
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x0042c765
        address: 0x00431400
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x00892d41
        address: 0x0082ce71
        address: 0x00833429
        address: 0x00833487
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x00427d61
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x008333af
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x0043dc64
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x0082d53e
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x004247d2
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x008043d0
    Module  at   0x544f0000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\uitools.dll  v 11.5.0.313 [A]
        address: 0x5451c76f
        address: 0x544f2d85
        address: 0x5451c6cd
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x0082b27d
        address: 0x0082b31c
    Module  at   0x544f0000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\uitools.dll  v 11.5.0.313 [A]
        address: 0x5451240a
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x0082b31c
        address: 0x0082b385
        address: 0x0082b3c3
    Module  at   0x77d10000: C:\WINDOWS\system32\USER32.dll  v 5.1.2600.2180 [F]
        address: 0x77d18709
        address: 0x77d187eb
        address: 0x77d189a5
        address: 0x77d189e8
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x00833830
    Module  at   0x00400000: C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe  v 11.5.0.313 [A]
        address: 0x00421b36
    Module  at   0x00800000: C:\WINDOWS\system32\MFC71U.DLL  v 7.10.3077.0 [A]
        address: 0x0082428a
    Module  at   0x7c800000: C:\WINDOWS\system32\kernel32.dll  v 5.1.2600.2180 [F]
        address: 0x7c816d4f
    Application:
    3580 "
      current thread 0x4F4
    started: lundi 1 du00E9cembre 2008 at 10:06
    ends:    lundi 1 du00E9cembre 2008  at 10:07
      User mode: 2015 ms   Kernel mode: 5390 ms
    Loaded modules:
        0x00320000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\thread-vc-mt.dll      v 0.0.0.0
        0x00340000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\file-vc-mt.dll      v 0.0.0.0
        0x00360000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\io-vc-mt.dll      v 0.0.0.0
        0x00370000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\time-vc-mt.dll      v 0.0.0.0
        0x00390000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\network-vc-mt.dll      v 0.0.0.0
        0x003B0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\helper-vc-mt.dll      v 0.0.0.0
        0x003D0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\security-vc-mt.dll      v 0.0.0.0
        0x00400000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\busobj.exe      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x00560000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\btuc320vc71.dll      v 3.2.0.0      [Anglais (u00C9tats-Unis)]
        0x00690000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\tools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x00800000     C:\WINDOWS\system32\MFC71U.DLL      v 7.10.3077.0      [Anglais (u00C9tats-Unis)]
        0x00910000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\libxml2.dll      v 2.6.19.0      [Anglais (u00C9tats-Unis)]
        0x009D0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\streaming-vc-mt.dll      v 0.0.0.0
        0x00A00000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\pdflib.dll      v 6.0.1.1      [Anglais (u00C9tats-Unis)]
        0x010A0000     C:\WINDOWS\system32\APSHook.dll      v 2.5.0.29      [Anglais (u00C9tats-Unis)]
        0x01830000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\language\userappfr.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x01890000     C:\WINDOWS\System32\ntlanman.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x018A0000     C:\WINDOWS\System32\NETRAP.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x018B0000     C:\WINDOWS\system32\btmmhook.dll      v 5.1.0.3000      [Anglais (u00C9tats-Unis)]
        0x01900000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\language\dpvbadlgfr.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x01920000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\language\dpxmlfr.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x01980000     C:\Program Files\WIDCOMM\Bluetooth Software\btkeyind.dll      v 0.0.0.0
        0x019C0000     C:\Program Files\Fichiers communs\Microsoft Shared\VBA\VBA6\APC62.dll      v 6.1.89.11      [Langue neutre]
        0x01F70000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\PluginManager.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x030A0000     C:\WINDOWS\System32\NETUI0.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x030C0000     C:\WINDOWS\System32\NETUI1.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x03100000     C:\WINDOWS\System32\SAMLIB.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x10000000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\wstkCommon.dll      v 1.0.0.1      [Anglais (u00C9tats-Unis)]
        0x12000000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\xerces-c_2_1_0.dll      v 2.1.0.0      [Anglais (u00C9tats-Unis)]
        0x20000000     C:\WINDOWS\system32\xpsp2res.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x21E80000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\language\boresfr.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x308C0000     C:\Program Files\Microsoft Office\Office\MSO9.DLL      v 9.0.0.3821      [Langue neutre]
        0x49C00000     C:\WINDOWS\system32\cxlibw-3-1.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x4A800000     C:\WINDOWS\system32\icuuc30.dll      v 3.0.0.0      [Langue neutre]
        0x4A900000     C:\WINDOWS\system32\icuin30.dll      v 3.0.0.0      [Langue neutre]
        0x4AD00000     C:\WINDOWS\system32\icudt30.dll      v 3.0.0.1      [Langue neutre]
        0x53000000     C:\WINDOWS\system32\fssl-1-2-1-2.dll      v 1.2.1.2      [Anglais (u00C9tats-Unis)]
        0x530F0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_config.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53120000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_tools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x531D0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ics_tracelog.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53230000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_trace.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x532A0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_lib.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x532F0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_core.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53390000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_helpers.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53430000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cube.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x536D0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\unvtools.dll      v 1.0.0.1      [Franu00E7ais (France)]
        0x53BD0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cplib.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x53F60000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cnxsrv.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54110000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\TraceLog.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x542C0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\sessmgr.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54430000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpcoll.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x54480000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpzlib.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x544F0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\uitools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x546C0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\rptdisp.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54740000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\krptdlg.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x547E0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\BOFCEngine.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54860000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\dlg1.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x548F0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\i18n.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x549E0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpxml.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54A10000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpi18nloc.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54AB0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\category.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54AF0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\dlgdll.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54D40000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\RepAttr.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54D70000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\bofcui.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x54E30000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\boDeploy.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55030000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\BOCP_1252.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55060000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cpi18n.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55290000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\kquery.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55620000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\msgsrv.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55640000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\BOFCDialogs.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55660000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\boconfig.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x556E0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\vartools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x55950000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\report.dll      v 1.0.0.1      [Anglais (u00C9tats-Unis)]
        0x563D0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\ics_lib.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x56970000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\FCRepoProxy.dll      v 1.0.0.1      [Franu00E7ais (France)]
        0x569D0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\dxmapi.dll      v 60.0.0.0      [Anglais (u00C9tats-Unis)]
        0x56A60000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\adavba.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x56CF0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\FCRepoDxImp.dll      v 0.0.0.0
        0x57080000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\adpxml.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x57150000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\adpvba.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x575A0000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\adaxml.dll      v 6.0.0.0      [Franu00E7ais (France)]
        0x57620000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\repo_proxy.dll      v 0.0.0.0
        0x57A60000     C:\PROGRA1\BUSINE1\BUSINE1.5\WIN32_1\cs_coretools.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x58B50000     C:\WINDOWS\system32\COMCTL32.dll      v 5.82.2900.2180      [Anglais (u00C9tats-Unis)]
        0x59620000     C:\WINDOWS\system32\libOCAHelperw-3-1.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x597C0000     C:\WINDOWS\system32\libOCASecurityw-2-0.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x598A0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\EnterpriseFramework.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x59C60000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\InfoStor.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5B090000     C:\WINDOWS\system32\uxtheme.dll      v 6.0.2900.2180      [Franu00E7ais (France)]
        0x5BDF0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.User\User.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5BFC0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.UserGroup\UserGroup.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5CB10000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\Inbox\Inbox.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5D360000     C:\WINDOWS\system32\MFC71FRA.DLL      v 7.10.3077.0      [Franu00E7ais (France)]
        0x5D3F0000     C:\WINDOWS\system32\dbghelp.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x5E010000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\auth\secEnterprise\secEnterprise.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5F350000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\log_xn_system.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x5FFD0000     C:\WINDOWS\system32\stringres115_fr.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x60CA0000     C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\win32_x86\plugins\desktop\CrystalEnterprise.busobjReporter\busobjReporter.dll      v 11.5.0.313      [Anglais (u00C9tats-Unis)]
        0x62E40000     C:\WINDOWS\system32\hnetcfg.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x63000000     C:\WINDOWS\system32\etc-1-0-12-4.dll      v 1.0.12.21      [Anglais (u00C9tats-Unis)]
        0x64000000     C:\WINDOWS\system32\ebus-3-3-2-5.dll      v 3.3.2.24      [Anglais (u00C9tats-Unis)]
        0x65000000     C:\PROGRA1\FICHIE1\MICROS~1\VBA\VBA6\VBE6.DLL      v 6.0.87.14      [Langue neutre]
        0x65300000     C:\PROGRA1\FICHIE1\MICROS~1\VBA\VBA6\1036\VBE6INTL.DLL      v 6.0.86.67      [Franu00E7ais (France)]
        0x6A900000     C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\Cnp50MUI_D9F20.DLL      v 0.3.0.0      [Anglais (u00C9tats-Unis)]
        0x6FEE0000     C:\WINDOWS\system32\NETAPI32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x71990000     C:\WINDOWS\System32\mswsock.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x719D0000     C:\WINDOWS\System32\wshtcpip.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x719E0000     C:\WINDOWS\system32\WS2HELP.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x719F0000     C:\WINDOWS\system32\WS2_32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x71A10000     C:\WINDOWS\system32\WSOCK32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x71A60000     C:\WINDOWS\system32\MPR.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x71B00000     C:\WINDOWS\System32\spool\DRIVERS\W32X86\3\Cnp50M_D9F20.DLL      v 0.3.0.0      [Anglais (u00C9tats-Unis)]
        0x72F50000     C:\WINDOWS\system32\WINSPOOL.DRV      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x73A80000     C:\WINDOWS\system32\mscms.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x745E0000     C:\WINDOWS\system32\msi.dll      v 3.1.4000.2435      [Langue neutre]
        0x74BF0000     C:\WINDOWS\system32\OLEACC.dll      v 4.2.5406.0      [Langue neutre]
        0x75EF0000     C:\WINDOWS\System32\drprov.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x75F00000     C:\WINDOWS\System32\davclnt.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x75F10000     C:\WINDOWS\system32\browseui.dll      v 6.0.2900.2853      [Franu00E7ais (France)]
        0x76010000     C:\WINDOWS\system32\MSVCP60.dll      v 6.2.3104.0      [Anglais (u00C9tats-Unis)]
        0x76320000     C:\WINDOWS\system32\IMM32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76340000     C:\WINDOWS\system32\comdlg32.dll      v 6.0.2900.2180      [Franu00E7ais (France)]
        0x76590000     C:\WINDOWS\System32\CSCDLL.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x765B0000     C:\WINDOWS\System32\cscui.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x76610000     C:\WINDOWS\system32\CRYPTUI.dll      v 5.131.2600.2180      [Franu00E7ais (France)]
        0x767C0000     C:\WINDOWS\system32\hlink.dll      v 5.0.0.4513      [Franu00E7ais (France)]
        0x76930000     C:\WINDOWS\system32\ntshrui.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x76960000     C:\WINDOWS\system32\USERENV.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x76AC0000     C:\WINDOWS\system32\ATL.DLL      v 3.5.2284.0      [Anglais (u00C9tats-Unis)]
        0x76BE0000     C:\WINDOWS\system32\WINTRUST.dll      v 5.131.2600.2180      [Franu00E7ais (France)]
        0x76C40000     C:\WINDOWS\system32\IMAGEHLP.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76ED0000     C:\WINDOWS\system32\DNSAPI.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76F10000     C:\WINDOWS\system32\WLDAP32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x76F60000     C:\WINDOWS\System32\winrnr.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76F70000     C:\WINDOWS\system32\rasadhlp.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x76F80000     C:\WINDOWS\system32\CLBCATQ.DLL      v 2001.12.4414.258      [Anglais (u00C9tats-Unis)]
        0x77000000     C:\WINDOWS\system32\COMRes.dll      v 2001.12.4414.258      [Franu00E7ais (France)]
        0x770E0000     C:\WINDOWS\system32\OLEAUT32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77170000     C:\WINDOWS\system32\urlmon.dll      v 6.0.2900.2823      [Franu00E7ais (France)]
        0x77210000     C:\WINDOWS\system32\SXS.DLL      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x77390000     C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.2180_x-ww_a84f1ff9\comctl32.dll      v 6.0.2900.2180      [Anglais (u00C9tats-Unis)]
        0x774A0000     C:\WINDOWS\system32\ole32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x77720000     C:\WINDOWS\system32\shdocvw.dll      v 6.0.2900.2853      [Franu00E7ais (France)]
        0x778E0000     C:\WINDOWS\system32\SETUPAPI.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x779E0000     C:\WINDOWS\system32\CRYPT32.dll      v 5.131.2600.2180      [Franu00E7ais (France)]
        0x77A80000     C:\WINDOWS\system32\MSASN1.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77AA0000     C:\WINDOWS\system32\WININET.dll      v 6.0.2900.2180      [Franu00E7ais (France)]
        0x77B50000     C:\WINDOWS\system32\appHelp.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77BD0000     C:\WINDOWS\system32\VERSION.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77BE0000     C:\WINDOWS\system32\msvcrt.dll      v 7.0.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77D10000     C:\WINDOWS\system32\USER32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x77DA0000     C:\WINDOWS\system32\ADVAPI32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x77E50000     C:\WINDOWS\system32\RPCRT4.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77EF0000     C:\WINDOWS\system32\GDI32.dll      v 5.1.2600.2180      [Anglais (u00C9tats-Unis)]
        0x77F40000     C:\WINDOWS\system32\SHLWAPI.dll      v 6.0.2900.2833      [Franu00E7ais (France)]
        0x7C120000     C:\WINDOWS\system32\ATL71.DLL      v 7.10.3077.0      [Anglais (u00C9tats-Unis)]
        0x7C340000     C:\WINDOWS\system32\MSVCR71.dll      v 7.10.3052.4      [Anglais (u00C9tats-Unis)]
        0x7C3A0000     C:\WINDOWS\system32\MSVCP71.dll      v 7.10.3077.0      [Anglais (u00C9tats-Unis)]
        0x7C800000     C:\WINDOWS\system32\kernel32.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x7C910000     C:\WINDOWS\system32\ntdll.dll      v 5.1.2600.2180      [Franu00E7ais (France)]
        0x7C9D0000     C:\WINDOWS\system32\SHELL32.dll      v 6.0.2900.2180      [Franu00E7ais (France)]

    Hi Laurent,
    Following information might help you to resolve the issue.
    1. Delete some temp files from the temp file folder.
    2. Ensure that you are using the supported Microsoft office version with BOXIR2 SP2.
      Following are the supported versions of BOXIR2 according to the PAR.
    u2022      Windows Office 2000
    u2022      Windows Office 2000 SP3
    u2022      Windows Office 2000 SR1
    u2022      Windows Office 2003
    u2022      Windows Office 2003 SP1
    u2022      Windows Office 2003 SP2
    u2022      Windows Office XP
    u2022      Windows Office XP SP1
    u2022      Windows Office XP SP2
    u2022      Windows Office XP SP3
    u2022      Windows Office 2007*
    Office 2007 support is for Business Objects Live Office and as an export destination for Crystal Reports.
    3. Ensure that the server and client should be on same patch levels.
    4. Might be there is some formatting changes which are not compatible with the excel DAO properties could you please test the following solution.
    1. Apply standard styles in the report and save it as excel.
    2. Reset the report from slice and dice panel and try to save it as excel.
    3. Rebuild the data cube by editing the data providers in the report.
    4. Test the issue by deleting the tabs one by one in the report and saving it as excel.
    Regards,
    Sarbhjeet Kaur

  • Missing user variable input values in export to excel functionality

    Hi,
    I have a problem in exporting data into excel, I could able to export the data with complete result rows but i am not able to see the user input variable values.
    To be in detail: The moment i execute the report in web, user gives the initial variable values as selections and run a report. The data will be displayes as per the user selections. Then the user clicks on export to excel (designed as per SAP how to), now the excel data shows the body of the results but the initial input variable values are missing.
    It would be really good if we also export variable values along with the report output.
    If any of you solved this requirement, could you please help me in solving this.
    Thanks in advance
    Regards
    Varada

    Hi,
    Here is a solution to make visible the Values of variables you selected in the Excel File.....
    1.Create a Web Template with an Analysis Item and Info Field Item
    2.Assign the Data Provider which contains varaibles to the Analysis Item
    3.Assign the same Data Provider to an Info Field Item
    4.In the Properties of Info Field Item,
    Set the Visibility as "Visible"
    Data Binding as "Variable Value" and mention the varaible
    Save the Web template->Execute and Export to Excel
    Now you will get it in Excel file
    For more info....
    Re: Display values of variables in exported excel file
    Rgds,
    Murali

  • Show Repeated key values in Reports and Export Into Excel

    Hi Experts,
    Currently I am working on the BW3.5 version. Our client requirement to display the repeated key value in web and export same into excel. I have followed the steps in web template which mentioned below to achieve the requirement.
    1) In my web template, add the following line to the Template Properties object tag (the tag at the very top of the web template in HTML mode):<param name="SUPPRESS_REPETITION_TEXTS" value=""/>
    After the change web template change, Myself execute the report in web, Its fine web. But I export into excel, again the key values are suppressed. So I have followed the steps in query. Then its fine. I mean, I can export into excel with repeated key values.
    2) In my query, in Properties and on the Display tab, unchecked "Hide Repeated Key Values".
    But do we have any other option without changing query properties to achieve the requirement.. I am fine with the web template change("SUPPRESS_REPETITION_TEXTS"). But I do not want to change the query properties.
    Please help me to fix the issue. Thanks in advance.
    Thanks,
    RR

    Hi Experts,
    I have come across one of the suggestion in the below location. Could you plz help me to implement it.
    http://www.sapfans.com/forums/viewtopic.php?f=16&t=118185
    Suggestion:
    You can do exactly what you want, but it will take either a button changing the properties of the web item or a javascript function added to the context menu getting the properties of the table item and changing it to "X" or "". These are just two examples, there are other ways to do this. This is the actual code that sets the suppression for the repeated texts. Hope this helps.
    SAP_BW_URL item=âu20ACu2122TABLE_1âu20ACu2122 SUPPRESS_REPETITION_TEXTS=âu20ACu2122Xâu20ACu2122
    Thanks,
    RR

  • Webi export to excel having issues.

    Hi,
    I have a webi report which generates 62 mb excel file when exported to excel.
    It can be saved to excel without any error but when we open the excel report it shows the error that there are some damage done to report and excel is trying to recover it.
    I have tried increasing the heap size , cache size of webi report server , tried exporting to Excel 2000, 2003 and 2007 , but get the same results,
    Can anybody please help me solving it soon.
    I have attached the report in the attachment.
    Thanks in advance.

    Hi,
    But the problem is the report has two tabs and the number of rows is only 20000 + 4000 which is not exceeding the limit column are 22 which is also in range.
    The problem i think is because of  number of hyperlinks, there are almost 15 columns and 20000 + 4000 rows with hyperlinks in the report.
    When i change the properties of hyperlink to be read as text. the excel can be easily opened. and also the file size reduces to half.
    Any idea about this hyperlink creating issues?

  • OBIEE 11.1.1.6.7 export to excel - cells not suppressing

    When exporting a table to Excel, cells are repeating in the excel report, despite the fact that these columns are set to "Suppress" in Column Format.
    The values are suppressed in the table on the dashboard, the values are suppressed when we export to PDF, but when we export to Excel suppression is not working.
    We have another report where suppression is working fine when exporting to excel so it does not seem to be due to which excel version we are using.
    The suppression in excel worked fine in 10g for this report, and when we migrated to 11g, that is when it stopped working.
    When comparing the two different reports, we can't find any difference in properties that could affect the suppression.
    Any ideas on what we can do to fix this?
    Best Regards
    Joel
    Edited by: joel_s on May 10, 2013 1:56 PM

    Hi,
    This is a known issue.
    To my knowledge, not solved...
    Check document 1535547.1.
    Regards.

  • ADF 11g: Desktop Integrator- Export to Excel issue

    Hi,
    We are using ADF 11g.
    In our application we have one feature where end users can download data in excel format from our web application.
    To export data to excel file, users need to click Export to Excel button. But after deployment of code to standalone WLS 11g we are facing following issue with this functionality:
    To export data to excel file we have to keep pressing control key through out the operation
    If we don't do so it does not downloads the file.
    We want the file should be downloaded as soon as user clicks Export to Excel button. (We don't want users to keep pressing control key through this process)
    Please help on this how to achieve this.
    Thanks and Regards
    Manav Ratra

    Hi Shay,
    I implemented this functionality following Franks blog on export data to excel.
    Ya in your application we are able to export to excel without holding control Key.
    The same is happening in our case if we run application using integrated WLS 11g on JDev 11.1.1.3
    but after hosting the application on standalone WLS 11g. We need to hold control key. :|
    Are there any properties which we need to set to avoid this.
    here is code :
    *<af:commandButton text="Export to Excel"*
    *binding="#{backing_Rates.btn_Export}"*
    *id="btn_Export" inlineStyle="width:150.0px;"*
    *shortDesc="Click to Save table in excel sheet">*
    *<af:exportCollectionActionListener exportedId="pctbl:t1"*
    *type="excelHTML"*
    *filename="#{backing_Rates.seName}_Rates.xls"*
    *title="Rates for - #{backing_Rates.seName} are:"/>*
    *</af:commandButton>*
    Please help.
    Thanks & Regards
    Manav Ratra

  • Export to excel truncates trailing zeros

    When we try to export to excel trailing zeros are truncated like this:
    In report on BIEE dashboar:
    Product----Amount
    Product A 327,876
    Product B 4,000
    Product C 1,278
    In the exported excel spreadsheet:
    Product A 327,876
    Product B 4
    Product C 1,278
    Any ideas for a solution?

    well it is because excel thinks the the comma is a decimal seperator in stead of a thousands seperator.
    So check your operating system properties and your excel properties.

  • Problem with numeric columns when ADF table exported to Excel

    Hi,
    We have a ADF table on a page which can be exported to excel spreadsheet using the <Af:ExportCollectionActionListener>. The adf table is within panel collection.
    There are many numeric columns in this table and there is <af:convertnumber> used on these columns. No other properties are changed on the <af:convertnumber> tag, everything is default. And no formatting is applied on the view object attributes as well. When a user from US is exporting the table to excel everything works well no issues. But a Netherlands or French user exports the excel, the numeric values which have decimal point are shown as left aligned and the whole numbers in the same column are right aligned. As a result when the user is trying to sum the entire column only the right aligned numbers are getting added.
    I am not sure what is the issue here ?
    HAs someone seen this scenario before ?
    Am I missing anything here - any property setting ?
    The numbers are shown like this in the excel exported from table.
    4,077.78
    3,555,34.12
                        1,234
                        19,219
    3,4445,33.22
    Jdev - 11.1.2.3
    Thanks

    Add a decimal to the whole number columns to make all columns left-aligned. Do all left-aligned columns get added?
    4,077.78
    3,555,34.12
    1,234.00
    19,219.00
    3,4445,33.22

Maybe you are looking for