Crystal Report (Question ???)

Post Author: DubweiserTM
CA Forum: General
Hi everybody !As per the two pictures below...In the second pictures, why I can't use the space left by the Page Footer a section to put other things ? When I put some additionnals lines in the Details b section, these lines goes on another page.Only for additionnal informations, the Page Footer a is suppressed when PageNumber=TotalPageCount...  I hope I was clear with my question...Thanks in advance !

Post Author: rpt_Maker
CA Forum: General
DubweiserTM:
I've experienced this also with some of my reports. In my case it has to do with the size of the paper vs. the amount of data returned in the details for a group, with a new page after in the group footer. That blank area is unaddressable space created by a page feed - a new page after or new page before setting. If you truly do have that much space to use on the page, try making the page footer larger and insert some fields there to test with.
This is vague, I know.

Similar Messages

  • Basic Crystal reports question

    Hello,
    I have a very basic question for you experts out there.
    I would like to create a Crystal report that would utilize queries i already have in B1. I believe this involves copying the query into the database so Crystal can use pull from the them.
    Any help would be greatly appreciated,
    Thanks,
    Charlie

    Hello Charlie,
    It is easy. You could add your query in the initial part.  It is called command under Database Expert.
    Thanks,
    Gordon

  • Crystal Report Question on query

    I am trying to design a report to where it lists a name of a unique person in a table and totals the amount of money they owe. Essentially it's a letter for parking tickets and it will total all the fine amounts for that individual person. I don't know how to design the report to produce this result and how to design the query to produce this result.

    Hi, I copied the question, so I would not miss anything.
    I am trying to design a report to where it lists a name of a unique person in a table and totals the amount of money they owe. Essentially it's a letter for parking tickets and it will total all the fine amounts for that individual person. I don't know how to design the report to produce this result and how to design the query to produce this result.
    First off, depending on your version of CR, some of the instructions may not be correct.  I have CRXI
    Create a group based on the persons information (I assume you would have a drivers license number, or something you could group off of.  You may also want to group off date/time or amount.
    In your details section drop in whatever fields you wish to return from the Database.
    When you run your report, you should see all the records, sorted by the persons Id and then the date.
    Now, this will be more data than you want, so you can use the select expert to limit what is returned.   For example if the ticket is paid, you do not need to send a letter.  The select statement will look something like this, if your field that indicates a ticket is paid is ticket_#              not ({Ticket_#} like "paid")    So if Paid shows up in that field, the record is suppressed.   Also, look at the example reports, they may help you get some id's

  • Basic crystal report question

    Dear Experts,
    I just have started to learn CR from PLD and figured out how to generate a simple report like a BP list which does not require selection.
    In PLD, reports are linked to its own document directly so I do not need to select the document number.
    I am stuck in linking documents to reports in CR.
    Plz advise how to link CR to documents 1 to 1 by document number.

    Hi,
    You may check through these links: http://forums.sdn.sap.com/search.jspa?threadID=&q=token&objID=c44&dateRange=lastyear&numResults=15
    Thanks,
    Gordon

  • How to create a first row in crystal report as opening balance which contains two columns with debit and credit

    I have created a crystal report with credit and debit column. Balance column created on the report. Report running with cummulative balance. THis report contain an option for date range. If i filtered this report its not showing the actual balance. I need
    a first row to indicate previous balance as opening balance in this report.  And following is the formula for balance column.
    Whileprintingrecords;
    Shared Numbervar balance;
    Shared Numbervar display;
    balance:={@debit}-{@credit};
    display:=display+balance;
    display

    As this question is out of the T-SQL queue, thus I would suggest you consult Crystal Report questions to the correct forums.
    C#
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=csharpgeneral
    VB
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral
    people there have more knowledge on Crystal Report.

  • Trying to programmatically set the data-source for a Crystal reports report.

    I've got the following existing procedure that I need to add to in order to programmatically set the data-source (server, database, username, and password) for a Crystal reports report.
     I added the connectionInfo parts, but can’t figure out how to attach this to the existing
    this._report object.
    This is currently getting the connection data from the report file, but I now need to populate this connection data from a 'config.xml' text file.
    Am I trying to do this all wrong?
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using CrystalDecisions.CrystalReports.Engine;
    using WGS.Reports.Reports;
    using CrystalDecisions.Shared;
    using WGS.Reports.Forms;
    namespace WGS.Reports
    public class ReportService
    ReportClass _report;
    ParameterFields paramFields;
    ConnectionInfo connectionInfo; // <- I added this
    public ReportService()
    public void DisplayReport(string reportName, int allocationNo)
    if (reportName.ToLower() == "allocationexceptions")
    this._report = new AllocationExceptions();
    PrepareConnection(); // <- I added this
    PrepareAllocationExceptionReport(allocationNo);
    this.DisplayReport();
    private void PrepareConnection() // <- I added this
    //test - these will come from the config.xml file
    this.connectionInfo = new ConnectionInfo();
    this.connectionInfo.ServerName = "testserv\\test";
    this.connectionInfo.DatabaseName = "testdb";
    this.connectionInfo.UserID = "testuser";
    this.connectionInfo.Password = "test";
    this.connectionInfo.Type = ConnectionInfoType.SQL;
    private void PrepareAllocationExceptionReport(int allocationNo)
    this.paramFields = new ParameterFields();
    this.paramFields.Clear();
    ParameterField paramField = new ParameterField { ParameterFieldName = "@AllocationNo" };
    ParameterDiscreteValue discreteVal = new ParameterDiscreteValue { Value = allocationNo };
    paramField.CurrentValues.Add(discreteVal);
    paramFields.Add(paramField);
    private void DisplayReport()
    frmReportViewer showReport = new frmReportViewer();
    showReport.ReportViewer.ReportSource = this._report;
    showReport.ReportViewer.ParameterFieldInfo = paramFields;
    showReport.ShowDialog();
    showReport.Dispose();
    Any help would be much appreciated.

    Hi Garry,
    Please post SAP Crystal Reports questions in their own forums here:
    SAP Crystal Reports, version for Visual Studio
    We don't provide support for this control now. Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Visual Studio 2005/2008 and Crystal Reports versions/upgrade questions.

    I've tried posting this question on the MSDN forums and gotten no response. 
    I've downloaded and installed VS 2008 Beta 2.   The versions on the Crystal Reports files included are 10.5.0.1806  
    I'm currently using VS 2005, with the included Crystal Reports.  The versions on those files are 10.2.0.xxxx.  I've created an desktop app (in VB) which stores it's data in a database and uses the CR 10 runtime merge modules to generate a report.
    I was considering upgrading the Crystal Reports version to XI.  I would like to allow customers to modify my delivered report with their own licensed copy of CR XI.  I am not providing any functionality within my app to create or modify the delivered .rpt or use it outside my application.
    Questions:
    Do I need to update the runtime files to CR XI to support rpt files modified with CR XI?  Current runtime files are being delivered with the CR 10 merge module.
    I see a Crystal Reports for Visual Studio upgrade to CR XI. 
    Can I update the merge modules to CR XI and still use the CR for VS2005 for development?
    Does it make any sense to update CR for VS 2005?  Or to get the full CR XI Developer edition?  My usage of CR functionality is very limited.
    Would there be any benefit to waiting for the release of VS 2008?   How does that change the scenario?
    How does Crystal Reports for Visual Studio fit in with the Crystal Reports Lifecycle?  It's not mentioned on Business Objects End of Life Dates page . Crystal 10 has a Patch EOL of 31-Dec-07.   Does this apply to CR for VS 2005?  Where does 10.5 fit in?
    My main concern is allowing customers with CR XI to change the format of my delivered .rpt to run with my app.  Adding their company name, logo, etc.   My testing show a CR XI report still works with my current app.  But, going forward, what should I deliver and what do I need to use to continue development?

    To use Reports designed in XI, you need to use XI or higher runtime, running them in older versions may work, but you may encounter unforeseen issues doing so.
    If you are to use VS2005 for development you need to use XI Release 2 (11.5) runtime.
    If you are going to use VS2008 for development you need to use Crystal Reports 2008 with Service Pack 0.
    The support end of life for versions of Crystal Reports bundled with Visual Studio are linked to what Microsoft's lifecycle for the product is.  Generally if there is a workaround for the issue that is simple enough, there will not be a patch created.
    The changes you are expecting the customer to do can be accomplished with our RAS SDK which is available without using enterprise starting with Crystal Reports XIR2 SP2.

  • Questions on the functionality of Crystal Reports 2011

    Dear all ,
    i recently got in contact with Cyrstal Reports and have to conduct an analysis about its functionalities and possibilites.
    I have some questions which could not be answered using internet research and would be very happy if some of you (who are certainly more experienced) could give me some short answers on them.
    1. I know that you need SAP NetWeaver in order to run Business Objects Analyits for MS Offic, but do i need the NetWeaver application also for Cyrstal Reports (CR) ? In my case I have an Oracle database and have not the possibility to change to a Netweaver data warehouse
    2. I have a PPT Master document (with predefined action titles, headings etc.). Is it possible to create my charts with CR and then automatically integrate them in my Powerpoint Master? I know that CR can create .png (and other) but I want that the user can change the diagram in powerpoint (e.g. changing colours)
    Is that possible ?
    3. When having a direct connection to Powerpoint, is there a way that i can identify updated graphics ? I´m thinking of some kind of red dot that symbolized users that this graphic has changed.
    4. Is there a way to integrate CR directly in PPT that users have the possibility to create reports in PPT or do I always have to use the CR interface?
    Would be very happy if you just could give me some brief answers on the questions cause I have not much experience in the field (as my questions already indicate Wink )
    Thanks and Greetings,
    Dan

    Good afternoon.  I have attempted to address your questions below.  Please review my answers and let me know if you need more details.
    Regards,
    Coy
    Product Manager - SAP Crystal Reports
    1. I know that you need SAP NetWeaver in order to run Business Objects Analyits for MS Offic, but do i need the NetWeaver application also for Cyrstal Reports (CR) ? In my case I have an Oracle database and have not the possibility to change to a Netweaver data warehouse
    Crystal Reports does not require SAP NetWeaver in order to function. In fact, Crystal Reports is a desktop tool used to create reports. You can then publish those reports to the SAP BusinessObjects BI Platform, embed them in custom applications, or view them directly via a desktop viewer (or in another format).
    2. I have a PPT Master document (with predefined action titles, headings etc.). Is it possible to create my charts with CR and then automatically integrate them in my Powerpoint Master? I know that CR can create .png (and other) but I want that the user can change the diagram in powerpoint (e.g. changing colours)
    Is that possible ?
    It is possible to integrate Crystal Reports content directly into Microsoft Office documents by using the SAP BusinessObjects LiveOffice tool.
    3. When having a direct connection to Powerpoint, is there a way that i can identify updated graphics ? I´m thinking of some kind of red dot that symbolized users that this graphic has changed.
    This is not possible "out of the box", but may be possible via some custom addon.
    4. Is there a way to integrate CR directly in PPT that users have the possibility to create reports in PPT or do I always have to use the CR interface?
    Please see the answer above for #2.
    Edited by: Coy Yonce on Jul 25, 2011 11:01 PM
    Edited by: Coy Yonce on Jul 25, 2011 11:02 PM

  • Crystal Reports 2008 with Database / Universes (BOE 3.1 SP2) Questions

    Hello
    I have a few questions related to options that i can use when i connect to a database like sql server or oracle and i cannot use these options when i connect the report from a universe.
    1) When building a Crystal report that connects to the database through a universe i cant change the option Optional Prompt from False to True this option is disabled. This does not happen when the report is constructed by connecting directly to the database, this functionality is useful when you have multiple parameters in one report.
    2) For cases of reports with multiple parameters (where you can choose more of a list available), under the scenario of the bd direct connection is possible to configure the Crystal Available Values list shows dimensions that have at least some value in Fact Table, through the choice of parameter settings, where you can indicate where you take the value and description separately.Under the scenario universe connection these options are disabled because they are based on the query of the universe, there is an alternative perhaps from the universe to achieve this behavior in Crystal?
    Thanks

    Moved to Universe Designer Forum

  • Question - Best practice data source for Vs2008 and Crystal Reports 2008

    I have posted a question here
    CR2008 using data from .NET data provider (ADO.NET DATASET from a .DLL)
    but think that perhaps I need general community advise on best practice with data sources.
    In Crystal reports I can choose the data source location from any number of connection types, eg ado.net(xml), com, oledb, odbc.
    Now in regard to the post, the reports have all been created in Crxi 6.3, upgraded to Crystal XI and now Im using the latest and greatest. I wrote the Crystal Reports 6.3/ XI reports back in the day to do the following: The Reports use a function from COM Object which returns an ADO recordset which is then consumed fine.
    So I don't want to rewrite all these reports, of which there are many.
    I would like to know if any developers are actually using .NET Class libraries to return ADO.NET datasets via the method call or if you are connecting directly to XML data via whatever source ( disk, web service, http request etc).
    I have not been able to eliminate the problem listed in the post mentioned above, which is that the Crystal Report is calling the .NET class library method twice before displaying the data. I have confirmed this by debugging the class lib.
    So any guidance or tips is appreciated.
    Thanks

    This is already being discuss in one of your other threads. Let's close this one out and concentrate on the one I've already replied to.
    Thanks

  • Crystal Report Service Pack Question

    Hi,
      I have some question regarding Crystal Report Service Pack for different version respectively :-
    Crystal Report 9
    1.  I have SP5 and SP7.  Can I just install SP7 without installing SP5 ?
    Crystal Report XI R2
    1.  I have install a distribution of Crystal Report X1 R2 in a non-development server.
    Can I install the latest SP6 into that non-development server ?  Which SP6 I should install, preferably a link to that SP would be great. 
    NOTE: I am a VS.NET 2003 and 2005 developer.
    Best regards
    Joseph

    Crystal Report 9
    1. I have SP5 and SP7. Can I just install SP7 without installing SP5 ?
    - Yes
    Crystal Report XI R2
    1. I have install a distribution of Crystal Report X1 R2 in a non-development server.
    Can I install the latest SP6 into that non-development server ?
    - no. From CR XI on, SPs are only meant to be used on development computers. E.g.; a computer that has the CR designer installed. To update your runtime computer, you will have to uninstall the current runtime and install the SP6 runtime:
    MSM
    https://smpdl.sap-ag.de/~sapidp/012002523100000634042010E/crxir2sp6_net_mm.zip
    MSI
    https://smpdl.sap-ag.de/~sapidp/012002523100000633302010E/crxir2sp6_net_si.zip
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Crystal Reports - Some Basic Questions

    Hi I am a student from Germany and I need to try Crystal Reports for a couple of days for my diploma thesis.
    My first smal question is: Whats the basic programming language that CR is based on?
    As far as I can judge it - its VBA right?
    The focus of me thesis is the chart creation ....
    Question 2: Is there a better solution from SAP to create Charts ... the Chart-Assistent from Crystal Report is pretty nice to work with -  but imagine i dont want to create a report but just visualize some data in a chart for a quick overview of - lets say my market situation - is crystal reports the most edvanced way, that is also available in a trial version - to create charts.
    Please please help me and answer my questions.
    greetz
    till
    ps: please excuse my english, i may make some bad mistakes from time to time =)I)

    Hi
    About the charts: Depends on your requirements what exactly you want to implement.
    There are Xcelsius, Crystal Reports both that you can create charts with.
    I would sugest you to go through the docuemntations of Crystal Reports and Xcelsius first. So that you can be sure what all you can do using these tools.
    Please download the product documentations from help.sap.com
    Hope this helps!!
    Regards
    Sourashree

  • Migrate from Crystal Report Server XI R2 to new Eclipse RAS SDK Question

    Hi,
    I am migrating Crystal Report Server XI R2 RAS SDK to Eclipse RAS SDK which seems to be quite easy.
    I have the following old code which basicly programmaticly creates a Report from scratch adds a Table and then
    populates the Report with a Pojo Collection.
    <br> <br>
    Now before I would have : <br>
    <br>
    Table oTable = new Table(); <br>
    oTable.setName("reportTable"); <br>
    pbConnAttributes.putStringValue("QE_DatabaseType", "Java Beans Connectivity"); <br>
    pbConnAttributes.putStringValue(PropertyBagHelper.CONNINFO_DATABASE_DLL, "crdb_javabeans.dll"); <br>
    PropertyBag pbLogonProperties = new PropertyBag(); <br>
    pbLogonProperties.putStringValue("Java Bean Classes", className); <br>
    pbLogonProperties.putStringValue("SSOKEY", ""); <br>
    pbConnAttributes.put("QE_LogonProperties", pbLogonProperties); <br>
      pbConnAttributes.putBooleanValue(PropertyBagHelper.CONNINFO_SSO_ENABLED, false); <br>
    oTable.getConnectionInfo().setKind(ConnectionInfoKind.CRQE); <br>
    oTable.getConnectionInfo().setUserName(""); <br>
      oTable.getConnectionInfo().setPassword(null); <br>
      oTable.getConnectionInfo().setAttributes(pbConnAttributes); <br>
    //following statement throws Exception <br>
    doc.getDatabaseController().addTable(oTable, null); <br>
    <br>
    getDatabaseController().setDataSource(pojoCollection, pojoClass.class,"reportTable", "reportTable");
    <br>
    <br>
    Now wenn using the c <br>lient eclipse RAS SDK which pbConnAttributes should I use? <br>
    No matter which ones I choose I get a Bad Driver Exception or Named Exception. <br>
    Can anybody help?
    Edited by: snake-john99 on Aug 11, 2010 10:35 AM
    Edited by: snake-john99 on Aug 11, 2010 10:39 AM

    Hi Mikael,
    Since you're already on CR Server XI R2, you can use the Upgrade Management Tool to migrate all the content to CR Server 2013.
    Anwers to your questions:
    1) Yes, the Upgrade Management Tool does support this kind of migration
    2) It does seem that the UMT allows you to move all report instances as well as the scheduled jobs over to the new server
    3) I've always had issues with Business Views when using Import Wizard however I'm not sure whether they work well with the new UMT. In any case, I always prefer to export the LOVs and BVs from within the Business View Manager to a .xml file and then import them in the higher version of the Server, again, from within the Business View Manager.
    -Abhilash

  • Crystal reports server 2008 VI questions

    I aplogixze if I am asking many questions in the same thread. If so please let me know. and I'll create seperate threads.
    Questions with Crystal reports server 2008 VI
    1. In my current VS2005 web application with CR 2008 developer I have done the following :
    a. When the user selects a report it prompts for the database that is needs to connect. User could select Test or Live database
    b. I could hide the export button for each report
    c. Add the same report twice to the same folder under diffrent report descriptions
    Could I do the same with Crystal reports server 2008 VI?
    2. I have added a report that connects to the SQL server and also I set up the required ODBC for the report on the server. I could run the report without any issue.
    When I add the same report to another folder in CMC or add a new report that uses the same connection, and try to run it, I get the following error.
    I did set location and verify database in Crystal designer many times and added the report into CMC, but still it gives me the error.
    However the first report that I added still works fine. For some reports it shows the parameter screen and when I enter them and click OK it gives the same error. I checked the logon information and they are correct. Reports work fine in Crystal designer.
    error message:
    "The database logon information for this report is either incomplete or incorrect"

    I assume that you have built your reports with the CR Designer 2008 V1. Try to open the affected report in the CR Designer and select Database->VErify database and save it back into the repository. Does it work?
    Regards,
    Stratos

  • Crystal Reports and salesforce integration question

    I have a question about Crystal Reports connectivity to salesforce.  We are running Crystal Reports version 14.0.4.738 RTM.  When you create a new report and use the Database Expert, you can select www.salesforce.com as the data source.  I would like to know if the built-in connection to salesforce is secure.  Is our data secure in transit from salesforce to Crystal?  Is my password passed in clear text?  That kind of thing...
    Thanks!
    Message was edited by: Ludek Uher

    Pete,
    As any SAP product Crystal Reports is going through users data security check before any new release. It includes any bult-in connection that comes as a part of product installation. Unfortunately I do not have any document for a reference, but your user password is not exposed in CR connectivity.
    I think I should mention that prior to Crystal reports 2013 (version 14.1....) we used our own java based driver, but starting from CR 2013 we are outsourcing the driver to a third party and it is ODBC driver. It means the SFDC driver will automatically change if you decide to update your CR 2011.
        Hope it helps,
    Vitaly

Maybe you are looking for

  • Add a new International keyboard in ios

    I'm new to IOS development, I need a help to develop an International Keyboard for IOS, so once user install my application i need to give him the keyboard which he can add to his default keyboard in by Following the path, Settings→General→Internatio

  • 3.6 will not go to address in address bar. Have to do search and then select desired item and it will go.

    When I type an address in the address bar or when I select one from history Firefox will not go the the address. I have to search for the item I want with SEARCH and then highlight the one I want and it will then go there. I have uninstalled and re i

  • Premiere CC has only greyed out choices in playback preferences

    I am suddenly not being able to play out to an external monitor from PP. The normal selections in the playback section of PP's preferences is for some reason all greyed out. Nothing in my system has changed hardware-wise. I use a NVIDIA GTX-5880 in a

  • Interfacing Vectra XU-6/200, W2K SP4 and Scanjet 2P, difficulties.

    This is a query for the long serving HP folks. I am attempting to interface an HP Vectra XU-6/200 running under W2K SP4 and an HP Scanjet 2P, all legacy products. The Vectra XU and the Scanjet 2P are interfaced via an HP adaptor pwa. Unfortunately th

  • Relationship to deleted object not updated?

    Domain: Book <-> BookPageJoin <-> Page Book and Page both 'pritavely own' BookPageJoin. Both relationships are mapped as 'maintain bidirectional relationship'. I start with an instance of each where the Book and Page are joined by an instance of Book