BI Report Export Problem - Selection data missing

Hi all,
I´m pretty new to Web reports and now I have a problem which might be easy to solve for you experts.
The problem appears when exporting a report. If the user exports the report to PDF or Excel, the data is exported correctly but the selection settings, that the user set, are missing. Only the field name are shown, but not the selected item. Its somewhat of a cosmetical problem, but important to the users.
Interestingly enough, we use many other templates which have the exact same functionality and where it works correctly.
I compared the XML on code on those templates, but there is no major difference.
Here is the important code (at least in my understanding) of the template:
<bi:param name="BUTTON_LIST" type="ORDEREDLIST">
                                  <bi:param name="BUTTON" type="COMPOSITE" index="1">
                                    <bi:param name="CAPTION" value="PDF">
                                    </bi:param>
                                    <bi:param name="ACTION" type="CHOICE" value="INSTRUCTION">
                                      <bi:param name="INSTRUCTION">
                                        <bi:command type="EXPORT">
                                          <bi:param name="ITEM_REF_LIST" type="UNORDEREDLIST">
                                            <bi:param name="ITEM_REF" index="1" value="TEXT_ITEM_9">
                                            </bi:param>
                                            <bi:param name="ITEM_REF" index="2" value="INFO_FIELD_ITEM_2">
                                            </bi:param>
                                            <bi:param name="ITEM_REF" index="3" value="ANALYSIS_ITEM_1">
                                            </bi:param>
                                          </bi:param>
                                          <bi:param name="FOOTER_LEFT" value="DATE">
                                          </bi:param>
                                          <bi:param name="FOOTER_RIGHT" value="PAGEOFPAGES">
                                          </bi:param>
                                        </bi:command>
                                      </bi:param>
                                    </bi:param>
                                  </bi:param>
<bi:item name="INFO_FIELD_ITEM_2" designheight="50" designwidth="300" type="INFO_FIELD_ITEM">
                          <bi:param name="DATA_PROVIDER_REF" value="DP_1">
                          </bi:param>
                          <bi:param name="INFORMATION_ELEMENT_LIST" type="ORDEREDLIST">
                            <bi:param name="INFORMATION_TYPE" type="CHOICE" index="1" value="VARIABLE">
                              <bi:param name="VARIABLE" value="IP_VERS_CM01" text="Plan Version">
                              </bi:param>
                            </bi:param>
                            <bi:param name="INFORMATION_TYPE" type="CHOICE" index="2" value="CHARACTERISTIC_LIST">
                              <bi:param name="CHARACTERISTIC_LIST" type="ORDEREDLIST">
                                <bi:param name="CHARACTERISTIC" index="1" value="0G_CWW010" text="ProdGr">
                                </bi:param>
                                <bi:param name="CHARACTERISTIC" index="2" value="0MATERIAL" text="Material">
                                </bi:param>
                                <bi:param name="CHARACTERISTIC" index="3" value="0PROFIT_CTR" text="Planning Unit">
                                </bi:param>
                                <bi:param name="CHARACTERISTIC" index="4" value="469EIDJHD8W7F786UEL29ZJVV" text="Country Statement">
                                </bi:param>
                                <bi:param name="CHARACTERISTIC" index="5" value="ZXCO_NAV3__ZXCO_BUSN" text="BusSeg Nav">
                                </bi:param>
                              </bi:param>
                            </bi:param>
                          </bi:param>
                        </bi:item>
Any input and hints are appreciated.
Regards,
Harald

Hello Harald,
As per my understanding, the particular characterisitc is not assigned and that could be the reason for displaying only field name. Please lookinto it.
all the best,
Kind regards,
Praveen

Similar Messages

  • Hi Expert , crystal report export problem. system not responding

    Hi,
    crystal report export problem. system not responding.
    Thanks
    Rajkumar Gupta

    Dear Raj,
    Please try this
              Try
                Dim oSubReport As CrystalDecisions.CrystalReports.Engine.SubreportObject
                Dim rptSubReportDoc As CrystalDecisions.CrystalReports.Engine.ReportDocument
                Dim rptView As New CrystalDecisions.Windows.Forms.CrystalReportViewer
                Dim rptPath As String = System.Windows.Forms.Application.StartupPath & "\" & rptName
                Dim rptDoc As New CrystalDecisions.CrystalReports.Engine.ReportDocument
                rptDoc.Load(rptPath)
                rptView.ShowExportButton = True
                rptView.ReportSource = rptDoc
                For Each oMainReportTable As CrystalDecisions.CrystalReports.Engine.Table In rptDoc.Database.Tables
                    oMainReportTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                Next
                For Each rptSection As CrystalDecisions.CrystalReports.Engine.Section In rptDoc.ReportDefinition.Sections
                    For Each rptObject As CrystalDecisions.CrystalReports.Engine.ReportObject In rptSection.ReportObjects
                        If rptObject.Kind = CrystalDecisions.Shared.ReportObjectKind.SubreportObject Then
                            oSubReport = rptObject
                            rptSubReportDoc = oSubReport.OpenSubreport(oSubReport.SubreportName)
                            For Each oSubTable As CrystalDecisions.CrystalReports.Engine.Table In rptSubReportDoc.Database.Tables
                                oSubTable.Location = System.Windows.Forms.Application.StartupPath & "\" & SourceXML
                            Next
                        End If
                    Next
                Next
                'Setting Paper
                Dim rawKind As Integer = 0
                Dim printSet As New System.Drawing.Printing.PrinterSettings
                For i As Integer = 0 To printSet.PaperSizes.Count - 1
                    If printSet.PaperSizes.Item(i).PaperName.ToUpper = PaperName.ToUpper Then
                        rawKind = CInt(printSet.PaperSizes.Item(i).RawKind)
                        Exit For
                    End If
                Next
                Dim MyTest As New SaveFileDialog
                rptDoc.PrintOptions.PaperSize = CType(rawKind, CrystalDecisions.Shared.PaperSize)
                rptDoc.ExportToStream(ExportFormatType.Excel)
                'rptDoc.SaveAs("C:\TBKING.xls", True)
                '''How to export the report
                Try
                    Dim CrExportOptions As ExportOptions
                    Dim CrDiskFileDestinationOptions As New _
                    DiskFileDestinationOptions()
                    Dim rename As String
                    rename = rptName.Replace(".rpt", "")
                    Dim CrFormatTypeOptions As New ExcelFormatOptions
                    CrDiskFileDestinationOptions.DiskFileName = _
                                                "c:\Report\" & rename & "_Export_File.xls"
                    CrExportOptions = rptDoc.ExportOptions
                    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.Excel
                        .DestinationOptions = CrDiskFileDestinationOptions
                        .FormatOptions = CrFormatTypeOptions
                    End With
                    rptDoc.Export()
                Catch ex As Exception
                    MsgBox(ex.ToString)
                End Try
                '' end by kevin shah
                rptView.Show()
                rptView.ShowExportButton = True
                Dim oFrm As New System.Windows.Forms.Form
                rptView.DisplayGroupTree = True
                rptView.Dock = System.Windows.Forms.DockStyle.Fill
                rptView.Location = New System.Drawing.Point(0, 0)
                oFrm.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
                oFrm.Controls.Add(rptView)
                oFrm.Name = "Report Viewer"
                oFrm.Text = "Report Viewer11"
                oFrm.ResumeLayout(True)
                oFrm.WindowState = System.Windows.Forms.FormWindowState.Maximized
                oFrm.TopMost = True
                oFrm.ShowDialog()
            Catch ex As Exception
                objMain.objApplication.MessageBox(ex.Message)
            End Try
    By pressing this button XLS file be generated on C:\report\
    Hope this will resolved the issue
    Thanks
    Kevin

  • Scheduled Report: Export to Excel (Data Only) Fails

    I have an issue with a new installation of Crystal Reports Server 2008. When I try to schedule a report for extract to Excel (Data Only) the report fails with the following error:
    Error in File ~tmp202064233ce6330.rpt: Operation not yet implemented.
    We have scheduled the report using Word, PDF, text and they all work however the Excel (Data Only) format fails everytime with this error.
    I have no problem opening the report in Crystal Reports 2008 and Exporting to Excel Data Only format manually.
    Thanks in advance!
    Lee

    Hi,
    i just saw a note about the same Problem for BOE XI Rel.2. There it is a Bug.
    I would recommend you install the latest SP for your CRS and try again.
    Regards
    -Seb.

  • Crytal report export problem

    hi All,
    When im trying to export my reports (doesnt matter what format of report such as .pdf, excel, rtf, .doc)  this error occured:
    the report was not exported. the selected export format may be disabled on the server
    FYI, currently this fuction is working fine but seems this two days this error has occured,
    Can anyone help me or have any idea what acctually happened?
    Thanks

    Hi,
    Which version of Crystal report you are using??
    If you are using web server, What is the version for that???
    Your Issues may due to the missing of some reqired .Dll's
    Try to Register these two dlls in the server, then restart the server and check,
    ExportModeller.dll
    crtslv.dll
    And see the similiar link: c2012888

  • Problem selecting date

    i am trying to find out details about purchase orders that were generated on 10th of january 2006.
    I fire following query to get the job done. But there is a problem with this query
    It does show records for po's generated on 10th jan, but also includes records for 9th jan.
    I can use date 8th of jan along with time parameter 23:59:59.
    But i don't think it is a correct approach. Can anybody pls give an alternative for this problem.
    select * from purchase_order where po_date > '09-jan-2006' and po_date<'11-jan-
    2006'

    select * from purchase_order where po_date > '09-jan-2006' and po_date<'11-jan-2006' When you said '09-jan-2006' is same as '09-jan-2006 00:00:00', so you will take all row which have '09-jan-2006' with a time after midnight.
    You can use trunc :
    select * from purchase_order where trunc(po_date)=to_date('100106','DDMMYY');Nicolas.

  • Crystal Report Export Problem

    Hi,
    I have an add-on that could be use to print a few reports.
    I created a SAP Form with UI API that contains parameters then I have a Windows Forms with the CrystalReportViewer. My problem is that,standard export function of the Viewer did not work. I receive a message about a Single Thread Appartment.
    I think that this problem come out beacause the add-on is not a standard WinForm Application.
    Have you any Idea to solve this problem?
    Ciao
    Igor

    Hi Edward,
    thanks for your fast answer but I can not understand how this pice of code works....
    System.Windows.Forms.Form crystal = new CrystalReportViewer();
                      System.Windows.Forms.Form cr = new System.Windows.Forms.Form();
    First line did not work because i can not cast from Windows.Forms.Form to CrystalreportViewer.... Second line
    is never used in the sample...
    My problem, is not how to display a form with the ReportViewer... this work fine... the problem i that i can not use the export function that is itegrated into the ReportViewer.. Any other idea???
    Igor

  • Newbie query problem: function data missing in dropdown

    I am a student using 10g express provided with our textbook. The installation to WinXp SP3 went flawlessly and I can execute all required queries from the command line, no problem. The publisher provides SQL scripts related to the chapter material that creates the users and data for the chapter exercises. When I switch to the database home page and attempt to execute a query, I can change the aliases, insert conditions and do any thing else with the record but when I hit the dropdown arrow for function there is nothing there, no list. I have been back over the chapters dealing with installation thinking I have missed some setup parameter but I am coming up empty. Ay help would be appreciated.
    Regards,
    Dave

    Ljuba,
    This may be the issue as I ran the script as 'system' but logged in the database as 'handsonxe03'. I may have missed the required login from the text. I will look closer or I may have to modify the script for required user.
    I will let you know....Thanks!

  • Another pdf export problem with graphics missing

    well, it seems that there have been quite a few export probs w/pdf.
    i created some somewhat complex graphic files (wine labels) using keynote. then transfered them over to pages so that i would be able to print them
    more easily. when transfering them to pdf files i lose some graphics.
    the graphics that i lose are chinese characters...but only SOME of them.
    i've tried pdf/x, still the same problem, but then i have that funny shaded
    box around my letters.
    i've tried exporting directly from keynote, but the pdf image is markedly
    smaller than the oringinal document (with the comments hidden).
    any ideas...even the genius bar is stumped.
    macbook   Mac OS X (10.4.8)  

    In general, if some Chinese characters behave in one way and some other ones in another, it is often because one uses the wrong kind of font. If you for example have the (simplified) character 话 and use a font for traditional Chinese it may sometimes fail - especially in MS Word.
    That said, I cannot reproduce your particular problem here. Both Keynote and Pages seem to handle this as well as they possibly can for me.
    Two things you can try:
    1. Change font, to make sure that it matches the character.
    2. Create another account on your Mac and see if you still have the same problem.
    What did the characters look like? Any fancy formatting with shadows or colours?

  • Oracle 10 g Datbase export problem using Data Pump

    I am using Oralce 10 g on SOlaris 10 OS.I installed Oracle 10 G on Soalris suucessfully (without ASM).But when I tried to take the export using OEM faclity i.e:
    OEM>Maintennace>High Avaiablity >Data Movement >Export to Export File
    At last screen we got following error:-
    ORA-39006: internal error Exception : ORA-39006: internal error ORA-06512: at "SYS.DBMS_SYS_ERROR", line 79 ORA-06512: at "SYS.DBMS_DATAPUMP", line 2926 ORA-06512: at "SYS.DBMS_DATAPUMP", line 3162 ORA-06512: at line 2 .
    Please help me to sort it out.
    Reagrds
    R N sharma

    It refers to some issues with datapump utility.
    Check Note:402053.1 - Internal error during EXPDP ORA-39006

  • Report on user selected Date Range

    Please Disregard,
    Message was meant for another forum.
    Edited by: JodyMorin on Jan 15, 2009 11:29 AM

    Hi,
    You can set defaults for the datepickers if you need to - this could be done in a computation on the page for each item and conditional on the item being null.
    When I've done something similar to this, I've created two hidden page items - eg, :P19_FIRST_DATE and :P19_LAST_DATE and populated these with the earliest/latest date that the user could reasonably select (perhaps, in your case, the MIN(LM_DT) and MAX(LM_DT) values).
    Then your SQL would be:
    select * from PRJ_ITEMS
    where LM_DT BETWEEN TO_DATE(NVL(:P19_START,:P19_FIRST_DATE), 'DD-MON-YY')
    AND TO_DATE(NVL(:P19_END,:P19_LAST_DATE), 'DD-MON-YY')If you don't want to set default dates, you could do something like:
    SELECT * FROM PRJ_ITEMS
    WHERE (:P19_START IS NULL AND :P19_END IS NULL)
    OR (:P19_START IS NOT NULL AND :P19_END IS NULL AND LM_DT >= TO_DATE(:P19_START,'DD-MON-YY'))
    OR (:P19_START IS NULL AND :P19_END IS NOT NULL AND LM_DT <= TO_DATE(:P19_END,'DD-MON-YY'))
    OR (LM_DT BETWEEN TO_DATE(:P19_START,'DD-MON-YY') AND TO_DATE(:P19_END,'DD-MON-YY'))There are various reasons why your two dates are being cleared when the page is reloaded. Firstly, you should check the branch that returns to the same page - make sure you are not clearing the cache for the page. Then, have a look to see if there is a "reset page" process (usually created for you when you create a form page). Then, check the Source settings for the items. Typically, these would be "Only when current value in session state is null" and a Source Type of "Static Assignment" with the "Source Value or Expression" left empty.
    Andy

  • How to select data missing in the table?

    <p>
    <strong>I have a list of strings as follows (not in the table):
    'aaaaa'
    'bbbbb'
    'ccccc'
    In the table T1 I have a VARCHAR column x. The data under x are as follows
    'aaaaa'
    'ccccc'
    I want to formulate a query such that it will bring 'bbbbb' since 'bbbbb' is not in the table. Please help!
    Thanks.
    </strong>
    </p>

    We get asked this question on a reasonably regular basis.. Apparently people think it's perfectly normal and acceptable to ask a data repository for all the data it doesnt contain. We normally have a conversation that runs:
    Tech "So, you want to see all data in the database, that is not in the database?"
    User "Yes"
    Tech "How do you propose that a database gives you all the information it doesnt have"
    User "Oh. Now you put it that way.."
    Actually I wish someone would hurry up and invent a data repository that does this, that way if I suddenly took a liking to The Beatles, but didnt have any of their songs in my collection, I could ask the data repository for all the Beatles songs I didnt have and.. bam! I'd have all the Beatles songs! cool
    Seriously.. youre asking us to tell you how to make an oracle db tell you what information it doesnt have, but youre refusing to supply a block of data for it to compare against (i.e. so it can know what "Everything" is, in the phrase "Everything it doesn't have".
    Do you really see it as possible?
    Edited by: charred on Oct 22, 2008 9:45 AM

  • Utility to export selected data from an SQL Query?

    I would like to know if there is any utility available in Oracle that I could use to export data selected on the basis of a query? Our requirement is to export the selected data to .dat file.
    This should be besides imp or exp built-in utilities available in Oracle.

    Hello,
    you can spool the results of your query to file.
    eks
    spool c:\....
    select * from emp;
    spool off;
    If you have a tool called Toad, you kan click on the results and then you can save the data in different format.
    Regards
    Kjersti

  • Error selecting dates around DST

    I am having a problem selecting dates from a database at the office. I seem to be unable to select anything on the EDT switchover. I have tried various JDBC versions and it seems to be always wrong. below is my output followed by the code.
    I would expect to see this:
    2012-03-11 02:24:00.0
    2012-03-11 03:24:00.0
    What I get
    ojdbc14-10.1.0.2.0.jar
    2012-03-11 01:24:00.0
    2012-03-11 03:24:00.0
    ojdbc6_g-11.2.0.2.0.jar
    2012-03-11 03:24:00.0
    2012-03-11 03:24:00.0
    ojdbc6_g-11.2.0.3.jar
    2012-03-11 03:24:00.0
    2012-03-11 03:24:00.0
    import java.sql.*; public class JDBCTest {   public  static void main(String[] args) throws SQLException {     DriverManager.registerDriver(new oracle.jdbc.OracleDriver());     ResultSet bat = DriverManager.       getConnection("--JDBCURL--", "username", "password").       prepareCall("select to_date('3/11/2012 02:24:00','mm/dd/yyyy HH:MI:SS') theDate from dual").       executeQuery();     bat.next();     System.out.println(bat.getTimestamp("theDate"));   ResultSet man = DriverManager.       getConnection("--JDBCURL-", "username", "password").       prepareCall("select to_date('3/11/2012 03:24:00','mm/dd/yyyy HH:MI:SS') theDate from dual").       executeQuery();     man.next();     System.out.println(man.getTimestamp("theDate"));   } }
    Any ideas on what could be going wrong? What kind of stuff should I be looking at in the DB environment? Is this a potential bug I should file somewhere? Thanks

    >
    I would expect to see this:
    2012-03-11 02:24:00.0
    2012-03-11 03:24:00.0
    >
    Your expectations are wrong. There is no 2am thru 2:59:59 am during DST. At 2am the clock moves to 3am so 02:24:00 does not exist.
    I get the same results for all of those jar files (including 1.4) except I am not using the _g versions.
    >
    2012-03-11 03:24:00.0
    2012-03-11 03:24:00.0
    2012-03-11 01:59:59.0
    2012-03-11 03:00:00.0 -- value used was for 02:00:00
    >
    See Support for Daylight Saving Times in the SQL Language Reference
    http://docs.oracle.com/cd/B28359_01/server.111/b28286/sql_elements001.htm

  • Data missing when I print preview and export to pdf but do see the data when i navigate to that page in the report

    Hi,
    I have a report which consists of 9 subreports in 2 tables..
    When the run report I do see data.
    when i export to a pdf and print preview the report in Bids.. i see data for the first 22 pages and then the remaining pages are blank with just the header showing up...
    when i go to the pdf and select page 25 it is blank but when i go the report and not in print preview mode.. and i type in 25 in the page number data shows up on that page...
    the report is set to a portrait and the margins are set to 0.
    How can I solve this problems and why is it happening... the size of the sub report are the same..
    Any help will be appreciated.
    Thanks
    Karen

    I should add that when I e-mail this document to myself and print it directky from the iMac, it prints fine.

  • This is just to report a problem with Apple updates. I updated recently and the computer brought up my 2012 desktop with all my 2014 files and data including stickies missing! Now I hesitate to do another Apple update. What would you do?

    Apple Updates: This is just to report a problem. I updated recently and on restart the computer restored up my 2012 desktop with all my 2014 files and data including stickies missing!!! Now I hesitate to do another Apple update. What would you do?

    If all your files are missing
    You may have logged in as a different user, such as Guest. Open the Users & Groups pane in System Preferences. Your name should be at the top of the user list, under Current User. See also this support article.   
    If files are missing from one folder
    Change the Finder view mode; for example, from icon view to list view, or vice versa.
    If files are present, but seem outdated
    You may have started up from a different volume (disk.) Open the Startup Disk preference pane and check the selection.

Maybe you are looking for

  • F4IF_INT_TABLE_VALUE_REQUEST Problem

    Hi Folks, I have problem with FM F4IF_INT_TABLE_VALUE_REQUEST Here is the scenario. i have interbnal table tbwerks[] that contains plant and description(two fields). DATA: BEGIN OF tbwerks OCCURS 10,        werks LIKE t001w-werks,        name1 like t

  • How to handle Invalid characters in BI 7.0

    Hi , Due to lower case letters in ODS ,DTP got failed ,we have replaced with Upper case letters in PSA,but how to load failed request from PSA to data target thru DTP as here we don't get option to reconstruct the failed request from PSA.we have dele

  • Browser content gets smaller due to mouse movement, how can I stop this?

    Greetings, Not liking the feature in the touch pad that resizes the browser content, how can I get back to the default size of the content and how can I turn this feature off?   Thx! D a n a

  • How do I set up a calendar that's associated with my work email NOT my iCloud email?

    want to share my calendar across evices and macs, so iCloud is on. Calendar now sends meeting requests using my icloud email address instead of my professional work email. I've tried to creat a new calendar but it only gives me the iCloud option unde

  • HR Administrative Services

    Hi all, Could someone throw light on HRAS which is available in EP 7.0 and also mention the standard workset available for the same ? If you have any documents on it could you please fwd it to [email protected] Thanks in advance Nithya