Crystal report 2011 - Suppress formula?

I'm not new to Crystal reports 2011, but I am new to this forum. Excuse me if my question is already answered in another discussion thread, but I've searched the forum, but could not find an answer easily.
In my report I need to total the amount per day per security. If one of the totals per day have a negative amount, my report should show all dates for that security.
To make it more clear to you I've put in two examples
Example 1:
From date      PfGrp        Por         Security      ISIN          Custody     Amount
15-1-2015      aaa           por_a      Sec01        123456      Cust01      5000
15-1-2015      aaa           por_b      Sec01        123456      Cust02      -6000
16-1-2015      aaa           por_a      Sec01        123456      Cust01       5000
16-1-2015      aaa           por_b      Sec01        123456      Cust02       1000
17-1-2015      aaa           por_a      Sec01        123456      Cust01       2000
17-1-2015      aaa           por_b      Sec01        123456      Cust02       1000
Expected output:
From date      PfGrp        Por         Security      ISIN          Custody     Amount
15-1-2015      aaa                          Sec01        123456                         -1000
16-1-2015      aaa                          Sec01        123456                          6000
17-1-2015      aaa                          Sec01        123456                          3000
Output expected because the total amount on 15-1-2015 is negative. Because of this negative total amount the other dates have to be shown as well.(although they are positive)
Example 2:
From date      PfGrp        Por         Security      ISIN          Custody     Amount
15-1-2015      aaa           por_a      Sec01        123456      Cust01       5000
15-1-2015      aaa           por_b      Sec01        123456      Cust02       6000
16-1-2015      aaa           por_a      Sec01        123456      Cust01       5000
16-1-2015      aaa           por_b      Sec01        123456      Cust02       1000
17-1-2015      aaa           por_a      Sec01        123456      Cust01       2000
17-1-2015      aaa           por_b      Sec01        123456      Cust02      -1000
No output expected because all the totals per day are positive.
Regards, Peter.

Hi Peter,
Try this please:
1) Save the existing report with a new name. You should now have two copies of the same report - let's call them A and B.
2) Open Report A.
3) Insert a Group on the Security Field first and then on the Date field. Set the Date Field to 'Print for Each Day'.
4) Create a formula (@Groups) with this code and place this on Group Header #2:
WhilePrintingRecords;
stringvar groups;
If Sum ({Amount}, {Date}) < 0 then
    If Instr(groups,{Security}) = 0 then   
        groups := groups + {Security} + ",";   
groups;
5) Suppress all sections of this report except the Report Footer.
6) Go ahead and Insert a Subreport. In the Insert Subreport dialog box, browse to the Report B and place it on the Report Footer.
7) Edit the Subreport so that it has the same groups as the Main Report (or Report A)
8) Right-click the Subreport > Change Subreport Links > Move the @Groups formula to the Pane on the right > Uncheck the option 'Select data in Subreport based on Field' > Click OK.
9) Get inside the Subreport > Click the Report Option > Selection Formulas > Record and use this code:
Not({Security} IN Split({?Pm-@Groups},","))
IF you have some existing selection formula in there, then you would need to add this condition with an AND clause.
Hope this helps.
The reason we have to add a Subreport is because you're trying to suppress a higher group based on a summary that appears on a lower group.
If you're reporting off of tables, you should be able to use a SQL Expression Field to display the summary for Group #2 and use this summary to suppress the higher section based on another logic!
-Abhilash

Similar Messages

  • Crystal Reports XI - Suppression Formula

    I am trying to suppress different sections based on fields in my report. I have checked that the formulas are working by placing them in the report and have checked that they are returning the correct boolean result. I have three sections using the forumulas below;
    Section A
    If pagenumber MOD 2 = 0 then true
    else
    If {Student__02_03_.Date of Birth}<>DateTime(1900,1,1,0,0,0) and {Student__02_03_.Ethnicity}<>"99" then
        FALSE
    else
        TRUE
    Section B
    If pagenumber MOD 2 = 0 then true
    else
    If ({Student__02_03_.Date of Birth}=DateTime(1900,1,1,0,0,0) and {Student__02_03_.Ethnicity}<>"99") then
        FALSE //If either date of birth & ethnicity are blank or unknown then show this header
    else
    If ({Student__02_03_.Date of Birth}<>DateTime(1900,1,1,0,0,0) and {Student__02_03_.Ethnicity}="99") then
        FALSE //If either date of birth & ethnicity are blank or unknown then show this header
    else
        TRUE // if not then supress
    Section C
    If pagenumber MOD 2 = 0 then true
    else
    If ({Student__02_03_.Date of Birth}=DateTime(1900,1,1,0,0,0) and {Student__02_03_.Ethnicity}="99") then
        FALSE //If both date of birth & ethnicity are blank or unknown then show this header
    else
        TRUE // if not then supress
    For my first result in the report this always returns the correct section. However, from the second result on it hides all of the sections, despite showing the correct result in CR (they show FALSE, TRUE, TRUE for each record in my current result. But the first section does not display.
    If I remove the suppression formula it works fine through the report, but unfortunately this does not help me! Can anyone offer any suggestions?
    Edited by: cataylor951 on Jan 12, 2011 12:08 PM

    >
    cataylor951 wrote:
    > I am trying to suppress different sections based on fields in my report. I have checked that the formulas
    are working by placing them in the report and have checked that they are returning the correct boolean result.
    I have three sections using the forumulas below;
    >
    > Section A
    >
    If pagenumber MOD 2 = 0 then true
    > else
    > If {Student__02_03_.Date of Birth}<>DateTime(1900,1,1,0,0,0)
    > and {Student__02_03_.Ethnicity}<>"99" then
    > then   FALSE
    > else   TRUE
    >
    > Section B
    >
    If pagenumber MOD 2 = 0 then true
    > else
    > If ({Student__02_03_.Date of Birth}=DateTime(1900,1,1,0,0,0)
    > and {Student__02_03_.Ethnicity}<>"99") then
    >     FALSE
    > //If either date of birth & ethnicity are blank or unknown then show this header
    > else
    > If ({Student__02_03_.Date of Birth}<>DateTime(1900,1,1,0,0,0)
    > and {Student__02_03_.Ethnicity}="99") then
    >     FALSE
    > //If either date of birth & ethnicity are blank or unknown then show this header
    > else TRUE // if not then supress
    >
    > Section C
    >
    If pagenumber MOD 2 = 0 then true
    > else
    > If ({Student__02_03_.Date of Birth}=DateTime(1900,1,1,0,0,0)
    > and {Student__02_03_.Ethnicity}="99")
    > then  FALSE
    > //If both date of birth & ethnicity are blank or unknown then show this header
    > else
    >     TRUE // if not then supress
    >
    > For my first result in the report this always returns the correct section. However, from the second
    result on it hides all of the sections, despite showing the correct result in CR
    (they show FALSE, TRUE, TRUE for each record in my current result. But the first section does not
    display.
    >
    > If I remove the suppression formula it works fine through the report, but unfortunately this does not
    help me! Can anyone offer any suggestions?
    >
    > Edited by: cataylor951 on Jan 12, 2011 12:08 PM
    What do you mean by: from the second result  ?

  • Hiding a data field in SAP Crystal Reports 2011

    Hello,
    I am new to SAP Crystal Reports 2011 (Crystal Reports).
    Does any one know how to hide a Special Field in a Crystal Report?
    Specifically, I am trying to hide the Special Field, 'Record Number'  from displaying on my report.
    I need the Special Field, 'Record Number' to know how many records was printed on my report
    in order to limit the amount of records printed while I am testing this new report.
    Thanks for the help!
    Tony

    Hi Tony,
    Yes to hide specific field, follow abhilash suggestion..
    1. Limit the number of records displayed on your report like that:
    section expert -> particular your report section -> click on suppress -> write below formula
    RecordNumber > Limited number of records count..
    2. limit the number of records  per page on your report follow below link:
    How to limit the no of records per page in crystal reports 2008
    Thanks,
    DJ

  • Crystal Report 2011 does not display when keyfigures are zero

    I am using Crystal report 2011 with BEX Queries as Data Source. I am not able to see some of the characteristics values when keyfigures are zero or null. In BEX query there is a costCenter Characterstic, few costcenter characteristics values are zero for some months but BEX Query is designed to show as spaces even if the keyfigures are zero for those costcenters. When I am using the same Bex Query with Crystal report 2011 all the costcenters with keyfigures as zero are not showing up on the report. Can anybody suggest how I can show the characterstics values even if all the keyfigures are zero. (I have not selected any kind of suppression in section expert in crystal report), (In Bex Query CostCenter- Properties-Advanced----Access Type for Result values are set to Master Data)

    Hi,
    Have you made sure the correct Transport files have been loaded on the SAP system? Since you're using CR 2011, you need to make sure the Transports that come with this version of CR are present on the SAP system.
    Could you see if the workaround mentioned in SAP Note: 1391673 works for you?
    Here's a snippet of the SAP Note:
    SAP Development team of BW BEX MDX Interface suggest the following implementation:
    Since Crystal Reports is not correctly interpreting the character used to represent NULL values (by default the value: X) please use the Customizing transaction: RSCUSTV4 to change the sent value.
    Please note, this is a Global setting, and will also modify the behaviour in BEx application.
    WORKAROUND: Create a formula field based on the selection that always returns a number - converting null to 0.
    Create a formula in BEx for the KF.
    Edit the Selection
    Edit the formula to behave like:
    COUNT ('KF') * 'KF' + 0
    ('RKF' + 0) * 1
    Not generally acceptable since it requires duplicating fields.
    Also, business may not accept 0,00 for a NULL result.
    Hope this helps!
    -Abhilash

  • Hiding the Selected field in the Crystal reports 2011

    Hi Experts,
              I am new to the Crystal reports. How to hide the Selected Field in the Crystal report 2011.
    Thanks,
    Kavya.C

    Hi Kavya,
    You can right click on the field, go to Format Field -> Common Tab. Select/Check the option "Suppress". Or if you want to hide/ Suppress the entire section in a Crystal Report, for e.g. Detail section, right click on Details Section and select Section expert. You can select Hide/Supress accordinly.
    That should hide the filed/Section when you run the report.
    - Kuldeep

  • Crystal Reports 2011 - SQL commands

    I upgraded to Windows 7 (64 bit) and was obliged to upgrade Crystal Reports to CR2011. All reports (so far) have run as expected - except those with SQL commands containing self-referencing tables. These reports have prompted me to re-map the field references!
    Background. In Crystal XI, these SQL commands, containing self-referencing tables automatically labelled secondary, tertiary etc.. instances of the same field with suffixes as follows SAMEFIELD, SAMEFIELD(1), SAMEFIELD(2) etc., so that the same field had a unique name depending on which table it was from. This was easily referenced in the record selection,, and other formula.
    Crystal Reports 2011. The same SQL commands do not result in automatically suffixed field names, and so the same field (but from a different table) will be labelled exactly the same, so SAMEFIELD, SAMEFIELD, SAMEFIELD etc. (NOTE. The SQL command does not allow me to do any alasing). When trouble-shooting the problem, I discovered that even when adding the respective instances of SAMEFIELD to a report, only the first instance of the field would actually be added (according to the Field Explorer), and the field entry would just be duplicated. I actually can't believe that it appears that I'm going to have to re-write some of my reports because of this.
    1. Has anyone else discovered this?
    2. Can anyone advise how I can get an alias for the duplicating field names?
    3. I upgraded to CR 2011 thinking that the newest version would be the most sophisticated, should I have only upgraded to CR 2008 - does this problem exist in CR 2008?
    Thanks.

    This doesn't work - Sorry
    Additionally, without aliases in the resulting table, as outlined in my post, when placing instances of 'SAMENAME' in the report, secondary instances of SAMENAME (which infact represent other values) only show values that the first instance represents.
    To clarify, if the resulting table shows SAMENAME, SAMENAME, SAMENAME, but the field represents Level1, Level2, Level3, when the top (first instance) of SAMENAME is placed in the report, it will show a value representing Level1, when the next SAMENAME is added to the report, that also shows a value representing Level1. The Field Explorer will indicate a tick against the first instance of SAMENAME but not subsequent additions.

  • Gs1 ean128 barcode from crystal report 2011

    Hello
    I am trying to produce a gs1 ean128 barcode from crystal report 2011 using 'Change to barcode' and choosing 'Code128 UCC/EAN-128'
    If the barcode is made up of 2 different pieces of information, and the first one has a variable length ( for instance (20)25620(400)125411258 ) I have to put a separator character ( FNC1 ) before the second application identfiers, but I don't find any documentation about what character is to be used.
    Moreover, it seems that the only available choice for GS1
    ('Code128 UCC/EAN-128') supply a CodeSet C barcode, and this can be used with even length strings only. If my string may have a odd length I have to use A or B Code , but I don't find other available function
    Marco Terribilini

    hi Marco, if you're using azalea barcode fonts,  azalea has custom functions which can be used in conjunction with the fonts. you would put your data into a formula which uses the custom function and base the "change to barcode" on that formula. the link above will take you to their custom functions and downloads for various fonts. if you're using another provide, please consult their faq.
    -jamie

  • Error while running Java application using Crystal Reports 2011

    Hello,
    I would like to ask for your help.
    Environment details:
    Java based standalone application in Development environment.
    Crystal Reports 2011 (no SP applied)
    Oracle 11g ( 32 bit client installed)
    Win7 64 bit OS.
    Workflow:
    While running the java application, which will display the reports I am getting the below mentioned error. I guess that is because I am missing the Crystal runtimes (Correct me if I am wrong).
    I know that CR2011 do not have any sdks/ jar available for deployment. In this case, which runtimes should I be using? Does installing CR2011 be enough in the development box?
    Please provide me the link from which I can download the same.
    Let me know if I need to provide more details on this. Any suggestions are most welcome.
    Thank You.
    Code used:
    reportClientDoc = new ReportClientDocument();
    System.err.println("Opening the Report ");
    reportClientDoc.open(REPORT_PATH, 0);
    // this is where the error or exception is thrown
    _Error: _
    log4j:WARN No appenders could be found for logger (com.crystaldecisions.reports.reportdefinition.ReportDocument).
    log4j:WARN Please initialize the log4j system properly.
    com.crystaldecisions.sdkreport.lib.ReportSDKException: com/businessobjects/reports/jdbinterface/common/DBException---- Error code:-2147467259 Error code name:failed
                    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.<init>(SourceFile:286)
                    at com.businessobjects.sdk.erom.jrc.a.<init>(SourceFile:43)
                    at com.businessobjects.sdk.erom.jrc.ReportAgentFactory.createAgent(SourceFile:46)
                    at com.crystaldecisions.proxy.remoteagent.RemoteAgent.<init>(SourceFile:703)
                    at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:662)
                    at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:632)
                    at com.crystaldecisions.sdk.report.application.ClientDocument.if(SourceFile:504)
                    at com.crystaldecisions.sdk.report.application.ClientDocument.open(SourceFile:669)
                    at com.crystaldecisions.reports.sdk.ReportClientDocument.open(Unknown Source)
                    at rp.batch.bo.RpJRCExportReport.runReportExport(RpJRCExportReport.java:517)
                    at rp.batch.bo.RpSchedReportRun.process(RpSchedReportRun.java:163)
                    at rp.batch.bo.RpSchedReportRun.drive(RpSchedReportRun.java:240)
                    at rp.batch.bo.RpSchedReportRun.main(RpSchedReportRun.java:265)
    Caused by: java.lang.NoClassDefFoundError: com/businessobjects/reports/jdbinterface/common/DBException
                    at com.crystaldecisions.reports.queryengine.Session.a2(SourceFile:244)
                    at com.crystaldecisions.reports.datafoundation.DataFoundation.do(SourceFile:376)
                    at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.do(SourceFile:111)
                    at com.crystaldecisions.reports.dataengine.datafoundation.CreateDataConnectionCommand.new(SourceFile:81)
                    at com.crystaldecisions.reports.common.CommandManager.a(SourceFile:71)
                    at com.crystaldecisions.reports.common.Document.a(SourceFile:203)
                    at com.businessobjects.reports.reportconverter.v12.e.a(SourceFile:442)
                    at com.businessobjects.reports.reportconverter.v12.e.a(SourceFile:231)
                    at com.businessobjects.reports.reportconverter.v12.d.m(SourceFile:192)
                    at com.businessobjects.reports.reportconverter.v12.f.if(SourceFile:210)
                    at com.businessobjects.reports.reportconverter.v12.V12SaveLoader.a(SourceFile:242)
                    at com.businessobjects.reports.loader.ReportLoader.a(SourceFile:205)
                    at com.businessobjects.reports.sdk.JRCReportLoader.a(SourceFile:137)
                    at com.businessobjects.reports.sdk.JRCReportLoader.a(SourceFile:76)
                    at com.businessobjects.reports.sdk.requesthandler.ReportDocumentRequestHandler.a(SourceFile:136)
                    at com.businessobjects.reports.sdk.JRCCommunicationAdapter.<init>(SourceFile:229)
                    ... 12 more
    Caused by: java.lang.ClassNotFoundException: com.businessobjects.reports.jdbinterface.common.DBException
                    at java.net.URLClassLoader1.run(URLClassLoader.java:200)
                    at java.security.AccessController.doPrivileged(Native Method)
                    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
                    at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
                    at sun.misc.LauncherAppClassLoader.loadClass(Launcher.java:301)
                    at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
                    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
                    ... 28 more

    Help me ...
    Ambient:
    Crystal Reports Viewer 14.0.0.0
    java.vendor = Sun Microsystems Inc.
    java.version = 1.6.0_37
    os.name = Windows NT (unknown)
    os.version = 6.2
    os.arch = amd64
    Exception:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: com.businessobjects.sdk.erom.jrc.ReportAgentFactory---- Error code:-2147215357 [CRSDK00000026] Error code name:internal
              at com.crystaldecisions.sdk.occa.report.lib.ReportSDKException.throwReportSDKException(ReportSDKException.java:112)
              at com.crystaldecisions.proxy.remoteagent.RemoteAgent.createDefaultAgent(RemoteAgent.java:1000)
              at com.crystaldecisions.sdk.occa.report.application.ClientDocument.initRemoteAgent(ClientDocument.java:770)
              at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(ClientDocument.java:961)
              at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.open(ReportClientDocument.java:226)
              at src.HelloWorldSwing.createAndShowGUI(HelloWorldSwing.java:54)
              at src.HelloWorldSwing.main(HelloWorldSwing.java:24)
    Source:
    import java.awt.BorderLayout;
    import javax.swing.JFrame;
    import com.crystaldecisions.ReportViewer.ReportViewerBean;
    import com.crystaldecisions.sdk.occa.report.application.DatabaseController;
    import com.crystaldecisions.sdk.occa.report.application.OpenReportOptions;
    import com.crystaldecisions.sdk.occa.report.application.ReportClientDocument;
    import com.crystaldecisions.sdk.occa.report.data.IConnectionInfo;
    import com.crystaldecisions.sdk.occa.report.reportsource.IReportSource;
    public class HelloWorldSwing {
               * @param args
              public static void main(String[] args) {
                        HelloWorldSwing pgm = new HelloWorldSwing();
                        try {
                                  pgm.createAndShowGUI();
                        } catch (Exception e) {
                                  e.printStackTrace();
                                  //JOptionPane.showMessageDialog(null, e.toString());
               * @throws Exception
              public void createAndShowGUI() throws Exception {
                        // Make sure we have nice window decorations.
                        JFrame.setDefaultLookAndFeelDecorated(false);
                        // Create and set up the window.
                        JFrame frame = new JFrame("HelloWorldSwing");
                        frame.setTitle("Titolo del Report");
                        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                        ReportViewerBean viewer = new ReportViewerBean();
                        viewer.init(new String[0], null, null, null);
                        ReportClientDocument rpt = new ReportClientDocument();
                        rpt.setReportAppServer(ReportClientDocument.inprocConnectionString); // inproc:jrc
                        rpt.open("Report.rpt", OpenReportOptions._openAsReadOnly);
                        IReportSource rptSource = rpt.getReportSource();
                        viewer.setReportSource(rptSource);
                        frame.getContentPane().add(viewer, BorderLayout.CENTER);
                        frame.setSize(1930, 1030);
                        frame.setVisible(true);
                        viewer.start();

  • Crystal Report 2011- SAP Data Sources: CL - no items found

    Background:
    SAP ECC 6.0 was purchased three years ago with DSD package. Only FI and SD modules are in use. Accounts download data filesfrom SAP to produce spreadsheet reports. Few user trust these numbers. We are setup as "SAP in the Cloud" model- Listening to constant user complaints, it seems SAP is broken. Interim solution: Crystal Report for everyone.
    Encouraged by Ingo Hilgefort papers and Crystal Report Forum:
    We decided to deploy Crystal Report 2011 and Business Object XI 3.1 with SP4 for our small user community. These software are installed on local XP laptop and Business Object XI 3.1 installed in the SAP server as well.
    Problem Description:
    The desktop user cannot see SAP infosets or tables contents. When connect to the data sources. After user login, she can navigate to expand the data source CL.- displays "no items found ". I can reproduce this error. Using the Crystal Report wizard and selecting various data sources such as: SAP Table, Cluster and Functions: CL, DD and FN category only DD and FN display items.
    Current Environment: SAP in the Cloud.
    SAP Server::ECC 6.0 EhP3 dual stack. Database MSSQL, OS 2008 Server, Business Object Intergration Kit 3.1, Remote Acces VPN.
    Desktop Environment: Crystal Report 2011: SP1, Business Object Xi 3.1, XP SP3
    Surprise: Clicking on either DD and FN tab inside the connector window in Crystal- it expands and displays tables and content reference but not CL.
    Questions: Do we have to move to EhP5 for the CRX 2011 to work ? What is wrong: ? Any help will be appreciated?
    This question is for Ingo H. How to convince SAP hosting company otherwise to solve our problem ? Is is desktop problem or Host side configuration ?

    Ahmad
    K900687 is Open SQL Connectivity transport and required for direct SAP tables connectivity, so you need it, but I am not sure if the warning message relevant to your problem. Sometimes warning is just a warning.
    You can see other objects in DD, but not in CL, it means the connection works. You probably do not have required authorisations to see objects.
    I would suggest to review the Authorisation section of SAP Integration Kit Installation Guide here:
    [http://service.sap.com/~sapidb/011000358700000559912010E/xi31_sp3_bip_sap_inst_en.pdf ]
    You may also check what is the differences between DD and CL in terma of authorizations.
    If you think CR 2011 is broken, then test CR 2008. Is still available for free 30-days trial download here:
    [http://www12.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx]
    , but you would need to add SAP Integration Kit to it.
    Vitaly

  • Crystal Reports 2011 not working in windows 2008 server CITRIX

    Hi All,
    We are using  Crystal reports 2011 in windows 2008 server which is CITRIX farm., having crystal reports 2011 runtime in it..
    We are using .net applicationton to run the reports.
    The crystal reports parameter popup is getting opened. But the calendar icon is not fuctioning ..clicking on the calendar control no pop up appears. no error too..
    OK button is not responding. Cancel button too.
    Can you please help us why we are facing this issue in CITRIX only. When we are using the same version in desktop, Crystal report is working fine.
    Please feel free to ask if required any more details about my problem.
    Regards,
    Venkat.K

    Ido's idea is excellent, only addition I'd like to make is the following:
    You are trying to run a .NET app. However, CR 2011 does not install any SDKs. So, the directory specified by Ido is not correct. Assuming that by CR 2011 you actually mean "SAP Crystal Reports, Developer Version for Visual Studio .NET", then the directory would be:
    C:\Program Files (x86)\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\Crystal Reports 2011\crystalreportviewers\prompting
    If that does not help, use Process Monitor and see what the logs tell you (look for Access Denied messages).
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Error  When Refreshing a Crystal Report 2011 from BI launchpad

    Hi,
    I am getting this error message [CRWWEB00000119] VIEWER COULDN'T PROCESSS AN EVENT when trying to view a crystal report from BI Launchpad. I have created the report using Crystal 2011 and Published it to SAP BO BI 4.0, Verified the Database Username/password for the report and it has the correct information. Report works without issues from Crystal 2011 Designer.
    When I schedule this report it fails alsowith "Error in File ~tmp1ccc6d9c2d14c50.rpt: Failed to load database information" message.Checked the Oracle ODBC on the server and it is pointing to the DWH, I have created the report using Crystal 2011using oracle server connection and Oracle 11gR2 32 bit client is installed on my machine, SAP BO BI 4.0 Server has Oracle 11gR2 64 bit middleware and has the Oracle ODBC for the conenction i am using in the report.
    Please let me know if anyone has faced similar issue with SAP BO BI 4.0 and can help me resolve this, below is my environment details.
    Environment:
    Windpows Server 2008
    SAP BO BI 4.0
    Crystal Reports 2011
    Oracle 11gR2
    Thanks
    Sachin

    Hi Sachin,
    Did you verified the database details for the report in the CMC?
    Can you try also to publish the report by using the tool Report Upload Wizard?
    Thanks
    Philippe

  • How to run a crystal report in SAP Crystal Reports 2011

    I've installed SAP Crystal Reports 2011. I can't figure out how to run a crystal. What replaces the lightning bolt used in previous versions of crystal? I'm I missing something?

    Hi Tim,
    You may:
    1) Press F5
    2) Go to Report > Refresh Report (Notice the icon beside the label)
    3) Go to View > Print Preview
    4) Or, click the refresh button on the toolbar
    5) The icon on Point#2 is also available on the toolbar
    -Abhilash

  • SAP Crystal Reports 2011: Error INS00140 and other install errors

    Hi all,
    There have been many customers who have downloaded the Crystal Reports 2011 installation package and have run into an error when the installer attempts to recognize the keycode being used.  The error received is "The Product Keycode is not valid INS00140."
    This thread is meant to track all current resolutions that have been determined based on troubleshooting with customers thus far. In addition, the thread will provide you with the list of things that we need to know in order to properly troubleshoot the issue.
    Before attempting any of the steps below, please be sure that you are using the latest version of Crystal Reports 2011 which is SP02. You can download this version from the SAP [website|http://www.sap.com/solutions/sap-crystal-solutions/query-reporting-analysis/sapcrystalreports/index.epx].
    Coy
    ====================
    Resolution Options
    Windows XP & Microsoft Visual C++ Redistributable
    If you are installing Crystal Reports 2011 on Windows XP, then you need to ensure that the following Microsoft patches are not installed on the machine. You can check this by using the Add / Remove Programs dialogue.
    KB2467175
    KB2467174
    KB2467173
    If any of these are installed, then please remove them before attempting to install Crystal Reports 2011.
    Installing with Dashboard Design 2011 or Presentation Design 2011
    If you are installing Crystal Reports 2011 on the same machine as Dashboard Design 2011 or Presentation Design 2011, then there may be a problem with the registry key that points to the location of the keydecoder DLL. To check this, launch run regedit and navigate to the following location:
    HKEY_LOCAL_MACHINE\SOFTWARE\SAP BusinessObjects\Suite XI 4.0\Shared Tools\keydecoder.dll
    You want to make sure that the "path" key is pointing to the valid path for the keydecoder.dll. The correct path to the DLL should be: C:\Program Files (x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\win32_x8keydecoder.dll.
    Uppercase License Key
    In addition to the above, you need to make sure that you are entering the license key in all uppercase characters. There is a current issue with the installer where it does not accept lower case characters.
    Fix - Coming in SP02, but can implement manually for now
    Locate the BCM-4-0.dll.2.Config file in the <install package directory>\dunit\product.crystalreports-4.0-core-32\actions
    (replace crystalreports with crystalreportsjava for CR for Ent and xcelsius for dashboards)
    Open BCM-4-0.dll.2.Config
    Locate this line:
    <bindingRedirect oldVersion="8.0.50727.0-8.0.50727.1434" newVersion="8.0.50727.4053" />
    Modify the oldVersion number to make the line like this one:
    <bindingRedirect oldVersion="8.0.50727.0-8.0.50727.4053" newVersion="8.0.50727.4053" />
    This should allow you to install without issue.
    Further Troubleshooting
    If none of the above helps to resolve the issue, then we need the following:
    The installation logs from the following folder: C:\Documents and Settings\<YOUR USER NAME>\Local Settings\Temp\<DATE OF YOUR LAST ATTEMPTED INSTALLATION>
    The results from attempting to run the keycode validator directly. You can find it under the folders that contain the installation package. For example, C:\Documents and Settings\<YOUR USER NAME>\My Documents\CrystalReports2011\DATA_UNITS\CrystalReports\dunit\product.crystalreports-4.0-core 32\actions\isKeyCodeValid.exe -keycode <YOUR KEYCODE> -version 140 -property CR.EnableCR
    You should submit a new forum post with relevant details about the error and provide links to download the logs generated by following the above steps.
    Edited by: Don Williams on Dec 22, 2011 7:53 AM

    Then try these:
    1. Download the latest version of the installation package for Crystal Reports 2011. To verify the version of extracted package, open productid.txt file located at: {installation package}\DATA_UNITS\CrystalReports\.
    Make sure it is not less than 14.0.2...
    2. Where to download Crystal Reports 2011 installation from: - free trial from SAP Online shop http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx - from SDN Community page http://service.sap.com/sap/bc/bsp/spn/bobj_download/main.htm - from Service Market Place http://service.sap.com/sbop-downloads Note: downloads from all above listed locations are fully functional product installations. Trial version defined by expiring key code, not by functionality limitations.
    3. Copy the installation package to a hard drive if possible to avoid any networking issues.
    4. Login to the machine as Local ADMINISTRATOR.
    5. Temporary disable any kind of firewall, antivirus, network security etc., if possible.
    6. On the latest versions of Windows, even if logged in as local Administrator, right-click the setup.exe and select "Run as Administrator". If do not have Administrator account, right click "Run as" Select current user and uncheck the "Protect my computer and data from unauthorized program activity".
    7. Make sure there is enough space on the computer. If not sure about the space, run "Custom" installation with minimum components. Non-mandatory components could be added at any time.
    8. Finally, if there is an existing "InstallData" folder under C:\Program Files (x86)\SAP BusinessObjects rename it to "InstallDataOLD"
    Edited by: Don Williams on Dec 22, 2011 7:51 AM

  • Where are release notes for Crystal Reports 2011 SP10?

    We've recently moved from Windows XP with an older release of Crystal to Windows 7 (64 bit) with Crystal Reports 2011.  Where can you find what issues have been fixed?  Despite finding a link with the text "Support and Feature Pack Release Notes" on the web page SAP Crystal Reports 2011 – SAP Help Portal Page, the document is for SP5.  Where can you find issues known and fixed in each of the service packs (and known and not fixed)?  I also looked at Analytics Knowledge Center and picked Crystal Reports and 2011 and the only release notes other than the initial release is for a FP3, which as near as I can tell is nowhere to be downloaded so I assume the SP1 replaced that...

    Hi Eddie,
    Release notes for SP10 are only available on the Service Market Place.
    If you have an S-user ID, you may have a look at the document here.
    -Abhilash

  • Crystal Report 2011 doesn't find SAP B1 DB in Expert DB

    Good morning,
    I've found a problem when I've installed SAP Crystall Report 2011 on the computer where is my SAP B1 (version 9.0).
    When I try to create a connection to a DB, the Expert DB doesn't find the SAP B1 DB on the PC.
    Here's a screenshot
    Thanks for your help
    (and apologize for my bad english).

    Hi
    Check the below link it may helps you
    data source sap business one
    With Regards
    Balaji Sampath

Maybe you are looking for

  • Plz read- itunes wont load album info

    I recently downloaded itunes v5 because i didnt have ne other version because my computer was wiped out, and when i finally got it and began to import cds itunes would not upload the album info the songs would come into the library known as "track 1"

  • Repeating records for element values

    Hi, Need to get element input values,i have used pay_element_entry_values table to get he screen inpout value.Used the effective date to filter,still 2 records are fetched. E.g query SELECT DISTINCT papf.national_identifier, papf.employee_number, pap

  • Getting the Intended Target for a Request

    I now know how to set the target for a response: HttpServletResponse.setHeader("Window-target","myFrameName") My next question is how do I determine the intended target of the initial request, before I set it to something else with the above code? It

  • Pages / Graphics help

    I copied a graphic in a pages document, and the original graphic was deleted.  How do i copy said graphic from the document back to a folder?  I am running Pages '09, Version 4.3.  I tried a simple copy and paste, no luck...  Tried using the Mission

  • 'Belonging To' field in CRM 2007

    Hi, Does anybody have a clear definition of the search criteria found for the 'Belonging To' field in the Activity Search view? Belonging To is Me Belonging To is My Team Belonging To is My Group Belonging To is My Company Belonging To is My Responsi