Multiple instances of crystal report

I have a report with 40 instances in infoview. Wherever we need to chage in the report level, I have to reschedule all the 40 instances, which is tedious. In BO, do they have anything, so that the instances sholud point the new report?
Thanks,
Sagarika.

We have a report with 5 instances every day, i have never made a change to a instance if there are changes in the CR report.
Just save the report without changing the ID, CUID, name or anything. It should be fine.
Thanks. MAT.

Similar Messages

  • Multiple instances of Crystal Reports Viewer possible in WPF?

    Hi, I've dragged and dropped three Crystal Reports Viewer controls on my WPF application. The goal is to be able to select up to 3 reports from a listbox and click run to generate the reports simultaneously. When I select just one report, it works fine. However when I select multiple reports it throws errors (object not found, etc). It seems there is a problem with multiple threads. Is it possible to have multiple instances of the Crystal Report Viewer display reports simultaneously? I am using version 13.0.9.1312 from the link below along with VS2013 C# WPF.
    SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads
    Thanks,
    Syed

    I was able to quickly cobble together a two viewer app that looks like this:
    The code is like this:
    Public Sub New()
            ' This call is required by the designer.
            InitializeComponent()
            ' Add any initialization after the InitializeComponent() call.
            Dim crReportDocument As New CrystalDecisions.CrystalReports.Engine.ReportDocument
            crReportDocument.Load("C:\tests\formulas.rpt")
            CrystalReportsViewer1.ViewerCore.ReportSource = crReportDocument
            Dim crReportDocument2 As New CrystalDecisions.CrystalReports.Engine.ReportDocument
            crReportDocument2.Load("C:\tests\report1.rpt")
            CrystalReportsViewer2.ViewerCore.ReportSource = crReportDocument2
        End Sub
    For more details see the document WPF Project Using the Crystal Reports WPF Viewer in 8 Easy Steps
    Now a couple of things to keep in mind;
    1) The report engine is based on 3 Concurrent Processor License (CPL) model. Meaning you can process at most three reports at the same time. In my test, doing the above code for four reports worked, but the reports are very, very simple - and with saved data. What a "real" world reports will do, I am not sure. I do know that in a web app, the reports are queued up until one report is done and thus a CPL is freed up. You will also need to keep in mind any database connection limits, etc.
    2) There is also a Print Job limit. This by default is set to 75. In a nutshell, almost anything done with a report is a Print Job. E.g.; paging, zooming, drilling, searching, etc., etc. In addition subreports are considered to be Print Jobs. Thus a report with one subreport in a detail section that returns a thousand rows of data and therefore running 1000 subreports will error out.
    You can read more about Print Job limits here:
    Crystal Reports Maximum Report Processing Jobs ... | SCN
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Display latest instance of Crystal Reports in SharePoint 2010

    Dear Sirs,
    I have BO 4.0 and SharePoint 2010 and Integration Option.
    I need to display latest instance of Crystal Reports in SharePoint webpart.
    I'd like to add "IOMS-Crystal Report Viewer" Web Part and display latest instance.
    But in Settings (in SAPBusinessObjects tab) I need to type only CUID.
    Is it possible to display latest instance of Crystal report in SharePoint Web Part?
    Best regards,
    Emmo

    Dear Sirs,
    I have BO 4.0 and SharePoint 2010 and Integration Option.
    I need to display latest instance of Crystal Reports in SharePoint webpart.
    I'd like to add "IOMS-Crystal Report Viewer" Web Part and display latest instance.
    But in Settings (in SAPBusinessObjects tab) I need to type only CUID.
    Is it possible to display latest instance of Crystal report in SharePoint Web Part?
    Best regards,
    Emmo

  • Dynamic Sorting on Multiple filed in Crystal report 2008

    Hi
      I am using Crystal report 2008 sp3 full build with hotfix 3.3 along with ASP.NET 2.0
      I have implimented the multi filed sorting using the record sort export and setting the sort order in the report designer.
    Now my requirement is such that i would like to have dynamic sorting on multiple fileds while report is displayed in the UI.
    Means suppose i have a report with Customer region,name,city,rating,status etc.
    Now by using the sort control  i would like to have the functionality in such a way that if user
    a)  first sorts on the region then the records should be first sorted by region
    b)  then sorts on the city then the records should be sorted first by region then by city
    c) now sorts on the  rating then the records should be sorted first by region ,second by city and then by rating
    Now other user may do
    a) first sorts on the rating then the records should be first sorted by rating
    b)  then sorts on the status then the records should be sorted first by rating then by status
    c) now user sorts on the  region then the records should be sorted first by rating,second by status and then by region
    and so on the sorting criteria changes from user to user through the UI.
    Is there any way to achieve the dynamic kind of sorting with Crytsal report 2008 where we can set the order of the fileds at sorting in UI dynamically .The sorting order of the fields are not known at the time of design of the report and its completely depends on the user's need.
    Please let me know if you require any information on the same.
    Regards,
    smitha

    Hello,
       Good Day!
       Thanks for your answer.
       Could you please explain me in detail how to achieve this functionality?
       Do i need to create a static parameter?
       I  get my data set through the command option in crystal report.So i think i need to go by formula in the report.
       i am just putting down the steps to follow.Please correct me if i am wrong.
      step1 :Create s static parameter with the name SORT.
    step2: create the formula as you have mentioned like     
        (IF {?Sort}='Vendor Number' THEN {Pr_Voucher_Status;1.Vendor_Key}& " "& {Pr_Voucher_Status;1.ap_remt_key}
        & " " & {@date}
       else
        IF {?Sort}='Invoice Number' THEN {Pr_Voucher_Status;1.ap_vchr_invno}& " " & {Pr_Voucher_Status;1.Vendor_Key}&
        " " &{@date}
       else
       IF {?Sort}='Invoice Amount' THEN {Pr_Voucher_Status;1.ap_vchr_amtc}& " " & {Pr_Voucher_Status;1.Vendor_Key}&
         " " &{@date})
        I could not  understand what this formula is really doing .
        Could you please tell me what the following names indicates? :
                  Pr_Voucher_Status :- Table/Command name ??
                  Vendor Number,Invoice Number etc.. :-  ??
                 Vendor_Key,ap_vchr_invno,ap_vchr_amtc .. :-  Filed names ??
                 use of 1.{} :- ??                              
    step3: place the below formula in the page header  to display the sort order
        (if {?SORT}='Vendor Number' then "Vendor Number, Remit To, Invoice Date"
              else if {?SORT}='Invoice Number' then "Invoice Number, Vendor Number, Invoice Date"
              else if {?SORT}='Invoice Amount' then "Invoice Amount, Vendor Number, Invoice Date") .
    Note:-My report does not have grouping.Do i need to have grouping?
    in this case how the sort control will work  ?
    As i have mentioned in the first post the order of sorting is completely depends on the user's perspective .
    The report is used by the whole organization ..
    i mean the people with different roles like Manger,Team leads,modul leads,developers ,testers etc..
    the usage of report varies according to the roles so the sort order also.
    Regards,
    smitha.
    Edited by: smitha thomas on Mar 16, 2011 5:01 AM

  • Load Multiple Images in Crystal Report using Paths

    Hi Guys,
    I am currently in need of developing a new requirement for our company's client. We have to load multiple images using just link in Crystal Report. Let's say that the images are stored in a folder (e.g., C:\Datafolder\Images\) and i have to fetch two images to show in crystal report (say, C:\Datafolder\Images\imageval1 and C:\Datafolder\Images\imageval2). These are actually dynamically created and therefore the number of images are not known and so i have to iterate through the list of image links.
    Is it possible using merely crystal report and how?. If not, can I do it using Crystal Report SDK?. Any help will be appreciated. Please take note that we're also using C# in developing our software applications.
    Thanks and best regards.
    ---CHITO--

    There are also a number of KBAs:
    1296803 - How to add an image to a report using the Crystal Reports .NET inproc RAS SDK
    1199408 - How to load an image from disk into a dataset using CSharp (C#) in Visual Studio .NET
    Other related KBAs:
    1216239 - How to access a Crystal Report "Preview Picture" using the CR .NET or RAS .NET SDK?
    1373770 - How can I add a picture to a Crystal Reports subreport using the RAS .NET SDK?
    1320507 - How to change images dynamically in Crystal Reports based on parameter selection?
    And more. Please do use the search box in the top right corner. Simple search terms are best. E.g: 'crystal image net' or 'crystal image format formula', etc.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • JRC - multiple tables in crystal report

    Post Author: Crystal Wong
    CA Forum: JAVA
    Hi, I am using the Java Reporting component of Crystal Report XI R2 SP2. I encounter error when pushing 2 Java resultset to a report as a datasource, like the code belows, ReportClientDocument reportClientDoc = new ReportClientDocument();          reportClientDoc.open(REPORT_NAME, 0); String query1 = "SELECT COLUMN1, COLUMN2 FROM TABLE1" ;ResultSet resultSet1 = getResultSetFromQuery(query1, ResultSet.TYPE_SCROLL_INSENSITIVE); String tableAlias1 = reportClientDoc.getDatabaseController().getDatabase().getTables().getTable(0).getAlias();reportClientDoc.getDatabaseController().setDataSource(resultSet1, tableAlias1 , tableAlias1); String query1 = "SELECT COLUMN1, COLUMN2 FROM TABLE2" ;ResultSet resultSet2 = getResultSetFromQuery(query2, ResultSet.TYPE_SCROLL_INSENSITIVE);String tableAlias2 = reportClientDoc.getDatabaseController().getDatabase().getTables().getTable(1).getAlias();reportClientDoc.getDatabaseController().setDataSource(resultSet2, tableAlias2 , tableAlias2); I wanna to ask, Does JRC support multiple tables in a report with the approach suggested above? Thanks a lot!

    Post Author: Crystal Wong
    CA Forum: JAVA
    Finally, I decided to use a join SQL or SubReport to do it.SubReport can support multiple pushing of ResultSet.

  • Print multiple copies in Crystal Report

    Hi All,
    I have created layouts with Crystal 2008 . I need to print first copy as original , second as duplicate and the third as triplicate . I know it is possible using PLD but i need it in CR. Is there any work-around for this problem ? I am using SAP Business One 8.8 PL 10 , Crystal Reports Basic 2008 and SQL Server 2008.
    Thanks in advance
    Regards
    ARUN

    Hi Arun
    Create a view which has a record for each copy and the docentry.  I tested using the view below but it could easily be extended to include the object type and be useful for all documents.
    CREATE VIEW [dbo].[Test_Copy]
    AS
    select 1 as 'CopyNo',
    'Original' AS 'CopyDesc',
    DocEntry AS 'InvDocentry'
    from oinv
    union
    select 2 as 'CopyNo',
    'Duplicate' AS 'CopyDesc',
    DocEntry AS 'InvDocentry'
    from oinv
    union
    select 3 as 'CopyNo',
    'Triplicate' AS 'CopyDesc',
    DocEntry AS 'InvDocentry'
    from oinv
    Add this view to your layout and inner join to docentry of the OINV table
    Add the copy number as the main group level, before the document etc.
    You will then need to fiddle around setting the current page header details into the group 1 header and sort the paging out but you will get 3 copies.
    Hope this helps
    Rob

  • Combine Multiple Records in Crystal Reports

    I have a table with our clients buying preferences, The first three columns is the client ID, Name and Last name and the fourth and fifth columns is the clients buying preference, I have multiple records per client depending on the preference the client has chosen.
    ID First Name Surname Type Suburb
    5 John Smith House Melrose
    6 John Smith House Rosebank
    7 John Smith House Kilarney
    8 John Smith Cluster Melrose
    9 John Smith Cluster Rosebank
    10 John Smith Cluster Kilarney
    I need to combine the fourth column into one string and the same for the fifth column.
    ID First Name Surname Property Type Suburb
    5 John Smith House, Cluster Melrose, Rosebank, Kilarney
    I have been getting closer by using the formula in a similar post,  Combine Field from Multiple Records
    but still struggling a bit
    Any help with this would be greatly appreciated.

    Thank you so much, I was a bit blind there. That works brilliant for one client,
    As I was saying yesterday, that was just one client of many in my report, What do I do in the case of multiple clients...
    ID     First Name     Surname     Property Type     Suburb
    5     John     Smith     House     Melrose
    5     John     Smith     House     Rosebank
    5     John     Smith     House     Kilarney
    5     John     Smith     Townhouse     Melrose
    5     John     Smith     Townhouse     Rosebank
    5     John     Smith     Townhouse     Kilarney
    6     Jack     Black     Cluster     Sandton
    6     Jack     Black     Cluster     Houghton
    6     Jack     Black     Cluster     Fourways
    6     Jack     Black     Appartment     Sandton
    6     Jack     Black     Appartment     Houghton
    6     Jack     Black     Appartment     Fourways
    obviously if I use that formula, with many records the following happens, before I suppress...
    ID     First Name     Surname     Property Type     Suburb
    5     John     Smith     House     Melrose
    5     John     Smith     House     Melrose, Rosebank
    5     John     Smith     House     Melrose, Rosebank, Kilarney
    5     John     Smith     House, Townhouse      Melrose, Rosebank, Kilarney
    5     John     Smith     House, Townhouse      Melrose, Rosebank, Kilarney
    5     John     Smith     House, Townhouse      Melrose, Rosebank, Kilarney
    6     Jack     Black     House, Townhouse, Cluster     Melrose, Rosebank, Kilarney, Sandton
    6     Jack     Black     House, Townhouse, Cluster     Melrose, Rosebank, Kilarney, Sandton, Houghton
    6     Jack     Black     House, Townhouse, Cluster     Melrose, Rosebank, Kilarney, Sandton, Houghton, Fourways
    6     Jack     Black     House, Townhouse, Cluster, Appartment     Melrose, Rosebank, Kilarney, Sandton
    6     Jack     Black     House, Townhouse, Cluster, Appartment     Melrose, Rosebank, Kilarney, Sandton, Houghton
    6     Jack     Black     House, Townhouse, Cluster, Appartment     Melrose, Rosebank, Kilarney, Sandton, Houghton, Fourways
    obviously if I have to suppress, NOT ONLASTRECORD
    I have the following result...
    ID     First Name     Surname     Property Type     Suburb
    6     Jack     Black     House, Townhouse, Cluster, Appartment     Melrose, Rosebank, Kilarney, Sandton, Houghton, Fourways
    Where as the result I desire is
    ID     First Name     Surname     Property Type     Suburb
    5     John     Smith     House, Townhouse      Melrose, Rosebank, Kilarney
    6     Jack     Black     Cluster, Appartment     Sandton, Houghton, Fourways
    Is there anything I can do to get this result?

  • Crystal report for Enterprise show latest instance shows URL not found error

    hi everyone,
    we recently upgraded our BO4.1 platform from SP2 to SP5.
    after the upgrade we are getting error while view the latest instance of Crystal report in BI launchpad, this error occurs only for Crystal report and that only when we scheduled in pdf format.
    anybody faced this issue before, any idea or resolution?
    Thanks in advance.
    Regards,
    Ganesh

    when I click on view latest instance, i am getting below error.
    The requested URL /BOE/portal/1503182223/CrystalReports/filename/CREnt_BICS_STS_Check.pdf was not found on this server
    but when see the path, I could see the path till /BOE/portal/1503182223/CrystalReports/
    is it remaining path, like the “file name” part generated at runtime?
    could you please support me, do we need changes required in tomcat?
    Regards,
    Ganesh

  • Can xcelsius use crystal report instance to display data?

    HI experts,
    Here we use live office with crystal reports to feed data to xcelsius flash. We schedule the crystal reports every day, and want to use data of the crystal report instance when user open a xcelsius flash.
    Can this be realized ?
    thanks a lot !

    Hi Sam,
    You can do this. Go to Live office and goto to the "Properties for all objects" and select the refresh tab.
    Select the option as "Latest Instance" for refresh option and then save the Excel sheet and re-import into Xcelsius.
    This would refresh the data from the latest instance of Crystal report.
    Thanks,
    Amit.

  • Using crystal reports to generate invoices

    Post Author: samme
    CA Forum: General
    I'm writing a report for a client who wants to print multiple invoices using crystal reports.  The invoice needs to sort in date order, one date and information associated with that date on each page.  Each page has a subtotal since multiple items/services are linked ot one date.  The last page of the invoice needs to have the total and should at the bottom of the page with the last subtotal.  Not onlastrecord does not work because if the user prints multiple invoices, crystal doesn't see the "last record" until the last record of the last invoice.
    The client wants the normal invoice information on the first page of the invoice:  Company Logo, Customer Address, Company Info, Invoice #, Date, etc. as well as the column headers - quantity, unit of measure, price, etc.
    On all other pages of the invoice, the client wants, the company logo, the invoice # and the column headers.
    I have the report grouped by invoice number and then by a date formula.  I cannot seem to get where I need to be with this invoice and have been working on it for some time.  Can anyone give me some direction please..... 
    Thanks in advance!

    On Sat, 15 Mar 2003 16:46:48 GMT, "Bill Bradley"
    <[email protected]> wrote:
    >I know. We thought that the Report Builder would be the way to go,
    since
    >ART didn't do too much for us. You guys poorly document it, and,
    show no
    >examples of using it to build a report. In addition, it'd be nice if
    >SOMEONE would come up with a list of what tables show what. While
    Novell
    >may have a detailed list of things in the ZFD docs, it's pretty much
    so
    >detailed and complex that, it's next to useless. I've resorted to
    doing
    >huge dumps of things to a csv, then, using CR or Excel to generate
    some kind
    >of report.
    >
    >The whole process is not as easy as it should be, seeing that we paid
    money
    >to get a reporting vehicle.
    >
    >As comparison, SMS isn't any easier, but, there's more documentation
    on it,
    >so, when you're forced to roll your own report, it's a clearer
    path...
    I do understand, I'm not a programmer either :-(
    the company who wrote report builder is Digital Metaphors, they have a
    very good
    training application and additional detailed information of how to
    write
    reports.
    The CIM schema is I agree Cr** (well not easy) and without the detail
    that
    Novell provide it doesn't work.
    I hope that a friend of mine is going to provide the compromise that
    you and I
    are looking for. Namely the ability to create the SQL queries that
    ART can
    make, with a simple report system. Keep an eye on caledonia.net for
    an
    announcement for ART4 (Derived from but unrelated to Salford
    Software's
    product) :-)
    Tim
    No Direct e-Mail Please!
    Tim Heywood
    Independent Consultant
    Scotland
    Novell Support Connection SYSOP
    In theory, practice and theory are the same,
    In practice they are different!

  • Not able to install crystal reporter in SAP Business One PL 42

    Hi All,
       I had been using the evaluation version of crystal reports. Now when the free licensed version was launched I uninstalled the version and tried to instal the new one which I have downloaded from the portal. I have uninstalled the crystal reports runtime and the SAP crystal reports from the control panel. Now in the same process as mentioned I am installing the crystal reports again. In the ADD-ON istallation part when I am click on start the system shows the following error-
    "An earlier version of crystal reports is found. Please ensure that the current installation is a higher version."
    Inspite of the fact that my system showed no instance of crystal reports installed after the uninstall run by me.
    Please guide me.
    Edited by: debraj bhattacharyya on Nov 3, 2008 6:05 AM

    The following is the Instructions Extract from "SAP_CRYSTAL_InstallInstructions.pdf":
    Un-installation of previous version:
    If a previous version of the Add-on exists , it is highly recommended the previous add-on be fully uninstalled before installing the new version. To uninstall the add-on, follow the 3 simple steps below.
    1. Using SAP Business One Administration | Add-Ons | Add-On Administration: remove and un-register the add-on.
    2. Log off SAP and Log back in for the un-installers to run.
    3. Using Windows Control Panel | Add-Remove programs: uninstall the u201CSAP Business One Crystal Reportsu201D ( Do not un-install Crystal Run time )
    Installation of New Version:
    1.The Add-On runs using the compatibility licence of SAP Business One.
    2.Copy the installation files to a suitable location.
    3.The installation disk or folder will contain a file called SAPCrystalSetup.exe.
    4.Log on to the target PC as an administrator or admin type user (windows).
    5.Copy the SAPCrystalSetup.exe to a convenient location on the target PC and run SAPCrystalSetup.exe (confirm all overwrites - you may keep the CrystalDesignerPath.txt intact if the path specified is different to the defaults).
    6.SAPCrystalSetup.exe will install the add-on components on the local PC. It is recommended that you keep the path selected by the installer. The default installation path for the Add-on files are C:\Program Files\SAP\SAP Business One\AddOns\SAP_CR.
    7.Locate the folder u201CDotNetFramework_3.5u201D , make sure the PC is connected to the internet and run the u201CdotNetFx35setup.exe u201C. An automatic download will occur, to get the suitable files for .Net Framework 3.5. This will take several minutes depending on the bandwidth. The installation of the .Net Framework will happen once the download finishes.
    8.Locate the folder u201CCrystal_2008_Runtime_exeu201D and run the u201CCRRuntime_12_0_mlb.exeu201D. if a product ID is requested, leave the Text Box blank and proceed with install. This installs the Crystal Reports Runtime for Version 2008 on the local PC.
    9.Once the setup.exe has completed, log on to SAP as manager or any other superuser.
    10.Using Administration | Addons | Add-On Administration, register the Crystal Add-On, set the desired settings and restart SAP.
    11.Log on to SAP, as a super user.
    12.Run Account setup from Administration | Crystal Reports Administration | Account setup
    13.Type in the sa password for the SQL server that holds SAP databases, and click Update. ( this process needs to be performed for each new PC, Once. )
    14.Click the Create Ext tables button. Add-on will now create the additional tables (this process must be performed for each new SAP company once u2013 and can be performed from ANY PC). This creates the External SQL tables needed for the add-on.
    15.THE TASKS 5, 6, 7, 8, 9, 12, 17 WILL NEED TO BE RUN ON ALL PCS THAT NEEDS THE CRSYTAL ADD-ON.
    16.Crystal add-on is ready to use. A help file is provided and you may test the add-on with the sample reports found in u2026\ SAP_CR\SampleReports. The help file can be found in u2026\SAP_CR\Documents\UserHelpFile
    17.If the Crystal Designer has been installed on the local PC, the following file needs to be edited ( or checked to be correct). The file gives the path to the Crystal Reports Designer exe. The add-on will read this file to launch Crystal Designer.
    C:\Program Files\SAP\SAP Business One\AddOns\SAP_CR\Resources\CrystalDesignerPath.txt

  • Crystal Report Dynamic connection issue ORA-04043 Database Vendor Code 4043

    HI All,
    Ii am getting dynamic connection issue with Crystal Report 2008 and Business View Manager, i have Oracle database,
    i have done following steps
    1 Creating Dynamic Connection (including two connection XDC & YDC)
    2. Creating Data Foundation (Common object available in both connection ie. stored procedure)
    3. Creating Business View (with selected number of elements in business element, like firsta name, lastname)
    I have verified database connectivity from Business view manager, both the connection are working fine bringing different number of rows from two different schemas (different schema but same objects in two schemas)
    4. Database connectivity to different database schemas
    5. Connectivity from Crystal Report (done the connectivity from the repository to business view )
    6. Report Connectivity with first schema shows records
    7 Report Connectivity with second schemas shows error
    as follows Failed to retrive data from the database & on clicking of detail i get following error
    Crystal Reports
    Database Connector Error: 'ORA-04043: object HR.EXCEPTION_REPORT_SUB1_PROC [Database Vendor Code: 4043 ]'
    Q first of all i need to know if dynamic connection using business view manager and crystal report technically possible or not, if yes then please let me know the solution, since we did verified with SQL database and ite work with two different database.
    Q if not possible then are there any options to resolve dynamic deployment of crystal report over multiple schemas with crystal report 2008
    Any help or suggestion will be appriciated, hope some one might have got similar issue
    Thanks in advance
    Edited by: smunir on Jul 12, 2011 9:18 AM
    Edited by: smunir on Jul 12, 2011 9:41 AM
    Edited by: smunir on Jul 12, 2011 9:43 AM

    Hi,
    When i use same credentials in Tod or sqlplus it works perfect and gives appropriate results. But when i use same credentials using business view manager, the very first connection works but the second connection does not work
    Please suggest!
    Regards,
    <<smunir>>

  • Crystal Report Instance - running query when viewing?

    Hi
    Why would a Crystal Report that was scheduled and completed success fully try to run the query again when I click on the instance?  Isn't it just suppose to render the report when one clicks on the instance?
    Thanks
    Kim

    i think its as i told you before, its something related with the parameters, you can have multiple instances with different parameter values.
    and there is many other technical issues, i dunn know if you read about it or not you can revise back the Crystal Report user guide
    you can get it from here
    http://help.sap.com/content/bobj/overview/index.htm
    good luck

  • How to view multiple reports using crystal reports 2008

    Hi ,
    I am working on vb6 project where in i am trying to generate reports using crystal reports 2008.
    For this , i am making use of Interop Form Wrapper class in vb6.
    I have a business requirement where in i need to view multiple reports  on my screen.
    please suggest me as to how this can be achieved.
    Thanks in Advance
    Regards,
    Ramnath

    Hi Ludek,
    I  am directly now using crystal report viewer control in my vb6 project.
    As mentioned in previous mail, i have created a Interop Wrapper class over crystal report viewer control in .Net using visual studio 2008 and i am making use of wrapper class in my vb6 project.
    I am able to access all the properties that have been defined in my Interop wrapper Class but the only stuff i need is to view multiple reports generated one after the another for a single button click Event.
    Please find below the code that iam using to load and generate reports.
    Note:
    1. frm is the instance of my Interop Wrapper Class built over CR viewer control
    2. All the user defined methods of Wrapper class that you see below will internally call the actual crystalreportviewer   properties defined in my Wrapper class
    Say for e.g   frm.DisplayToolbar(True) will internally  execute  crystalreportViewer1.DisplayToolbar = True
    frm.SetReportSource(strRptFilePath,0)          
    frm.SetSelectionFormula(strrecordSelectionFormula)
    frm.DisplayToolbar(True)               
    frm.ShowExportOption(True)
    frm.ShowPrintOption(True)
    frm.ShowRefreshOption(True)
    frm.ShowPAgeNavigateOption(True)
    frm.ShowZoomOption(True)
    frm.ShowParameterPanelOption(True)
    frm.Show()
    Thanks in Advance
    Regards,
    Ramnath

Maybe you are looking for