Regarding Crystal Report

Hi All,
    I want to know wheather there is any methods available in the API's (SAPbouiCOM,SAPbobsCOM) for Crystal reports.
    so that i can create an object of it and i can proceed in creatig reports.
Thanks & Regards,
Aravindhan.R

No there isnt.
Check the forum for Crystal Reports to see how this
integration has been done.

Similar Messages

  • Query regarding Crystal Reports Server

    Hi,
    I am new to Crystal Reports.
    I have created a couple of .rpt files using CR2008 and I am loading these report files in my aspx pages using CrystalReportViewer control.
    I am planning to host my webApp on IIS in production environment. Maximum simultaneous/concurrent connections to my reports would be 1 or 2.
    My question is:
    1. Do I need Crystal Reports Server in this scenario?
    2. In future if the number of concurrent users to report increases then do I need to go for Crystal Reports Server? Will just buying and installing the Crystal reports server on production server work? or will I have to do some configuration or some other changes in the existing deployed reports? OR Will I have to deploy my existing reports on Crystal Report Server again?
    Any help will be highly appreciated.
    Thanks in advance,
    Manish

    Manish, please do not cross post:
    Query regarding Crystal Reports Server
    See the [Rules of Engagement|http://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] for more details.
    Marking this thread as answered and locking...
    - Ludek

  • Regarding crystal report runninv problem in windows server 2008

    My name raja gupta.i want to clarify my issue.I used crystal reports 2005(10.0 version).I am accesing that reports in windows server 2008(64 bit) operating system.But i am unable to see the reports,reports was not working and not opened.Give me reply asap.
    Thanks & Regards,
    Raja.

    I would advise to check if windows server 2008(64 bit) is listed as a supported platform.
    If you need urgent support, you can always contact Customer Interaction Center (CIC) and purchase a Single Support Case.
    The CIC contact information you can find in the following SAP note:  
    Note 560499 - Global Support Customer Interaction: Telephone/fax/e-mail
    u2026.
    Business Objects customers:
    Contact information for Business Objects # new support telephone numbers, all numbers available 24 hours 7 days a week
    If the toll-free telephone number listed below is not available for your Customer Interaction Center or Support Advisory Center, call the following emergency numbers:
    - EMEA Region:                                  +353 91 404395
    - North and Latin America Region:               +54 11 5129 3717
    - China, Hong Kong, Japan, South Korea
      Singapore, Taiwan:                              +86 411 3963 1129
    - Malaysia, Philippines, Thailand:               +91 80 4139 9216
    - Australia, New Zealand:                        +61 2 9935 4660
    America
    CIC & SAC Center     Contact information
    USA     T: 1 866 8907686 (toll-free)
         E: [email protected]
    Canada     T: 1,866 6603577 (toll-free)      
         E: [email protected]     
    APJ
    CIC & SAC Center     Contact information
    Australia     T: 1800 081 923 (toll-free)      
         E: [email protected]     
    China CNC     T: 10800 7490097 (toll-free)      
         E: [email protected]     
    China Telekom     T: 10800 4900088 (toll-free)      
         E: [email protected]     
    Hong Kong     T: 800 964 865(toll-free) or +852 25391948           
         E: [email protected]          
    India     T: + 91 80 4139 9217           
         E: [email protected]          
    u2026

  • Regarding Crystal Reports 2013 SP1/SP3 runtime distribution clafrifications

    Hi,
    We are in process of migrating exsisting Crystal Reports from CR 2008 SP4 to CR 2013 SP1/SP3.
    Iam unable to find the corresponding msms for the same for runtime distribution (to install on end user Boxs).
    Can see latest as v.13.0.13.1597 (_http://scn.sap.com/docs/DOC-7824)
    Please help out link where I can download msi (or msms) for Crystal Reports 2013 SP1/SP3 runtimes that need to be deployed on user PCs.
    Also need advise
    ( i ) Can we install both runtimes (CR 2008 SP4 and CR 2013 SP1) on user PC at same time? 
    ( ii ) We have already deployed CR 2008 SP4 runtimes on user PCs, is that sufficient? or do we need to install any other runtime?
    ( iii ) Will CR 2013 SP1 support old CR 2008 SP4 ?
    Thanks & Regards,
    Rajeshwar Rao

    Crystal 2013 does not come with the SDK, instead you have to download Crystal for Visual Studio  AND update your code to use it.  You can't just install one of the .msi  files or the .msm file (which are all available at the link you show above) and expect it to work with existing code.
    -Dell

  • Regarding Crystal Reports

    Hi All,
    I have Created a Crystal Report.This is my Code :
    Private Sub LoadReport()
            Try
                FetchData()
                FrmCrReportViewer = New FrmCrReportViewer
                FrmCrReportViewer.FViewer.DisplayToolbar = True
                InsParamRpt = New InspectionParameterRpt
                InsParamRpt.SetDataSource(oDs)
                InsParamRpt.DataDefinition.FormulaFields("Headings").Text = Chr(34) + "Inspection Parameter Report" + Chr(34)
                FrmCrReportViewer.FViewer.ReportSource = InsParamRpt
                FrmCrReportViewer.FViewer.EnableDrillDown = False
                FrmCrReportViewer.Show()
                FrmCrReportViewer.Refresh()
            Catch ex As Exception
                Throw ex
            End Try
        End Sub
    I doesn't get any error. the problem is when i use Show dialog the report is generating but i doesn't access other sap forms before closing the report window.When i us Show() method the report content is not displaying.even i refresh it,it doesn't show anything.I can't close the report itself.
    please help me to solve the problem.
    Regards
    Mohana

    Hi Giuseppe ,
    Eventhough i create a thread,iam getting the report viewer.But it didn't display the report.How to solve the issue.The following is my code.
    In my addon,in the print button click i wrote as,
    Private TestForm As TestForm
        Private oThread As Threading.Thread
    Private Sub InspectionParameterClass_PrintMenuClick(ByVal MenuID As String, ByVal FormID As String) Handles Me.PrintMenuClick
            Try
                If FormID = StrCurFormID Then
                    TestForm = New TestForm()
                    oThread = New Threading.Thread(AddressOf TestForm.StartThread)
                    oThread.Start()
                End If
            Catch ex As Exception
                SBO_Application.SetStatusBarMessage(ex.Message, SAPbouiCOM.BoMessageTime.bmt_Short, True)
            End Try
        End Sub
    Then i created a test form,i created a sub procedure as ,
    Public Sub StartThread()
            Try
                Dim run As Boolean
                run = True
                Me.Show()
                While (run)
                    Application.DoEvents()
                    Threading.Thread.Sleep(1)
                End While
            Catch ex As Exception
                Throw ex
            End Try
        End Sub
    In the form load of test form,i wrote :
    Private Sub TestForm_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Dim FrmViewer As New FrmCrReportViewer
            FrmViewer.ShowDialog()
        End Sub
    In the FrmCrReportViewer FormLoad,I wrote as
    Private Sub FrmCrReportViewer_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            Dim InspectionParameterRptClass As InspectionParameterRptClass
            InspectionParameterRptClass = New InspectionParameterRptClass
            FViewer.Zoom(1)
            FViewer.ResumeLayout(True)
            Me.WindowState = FormWindowState.Maximized
        End Sub
    Then i have created a InspectionParameterRptClass class for generating the report.the following is my report generation code :
    Public Class InspectionParameterRptClass
        Inherits B1Global
        Private oDs As InspectionParameterRptDataSet
        Private FrmCrReportViewer As FrmCrReportViewer
        Private InsParamRpt As InspectionParameterRpt
        Public Sub New()
            MyBase.New()
            LoadReport()
        End Sub
        Private Sub LoadReport()
            Try
                FetchData()
                FrmCrReportViewer = New FrmCrReportViewer
                FrmCrReportViewer.FViewer.DisplayToolbar = True
                InsParamRpt = New InspectionParameterRpt
                InsParamRpt.SetDataSource(oDs)
                InsParamRpt.DataDefinition.FormulaFields("Headings").Text = Chr(34) + "Inspection Parameter Report" + Chr(34)
                FrmCrReportViewer.FViewer.ReportSource = InsParamRpt
                FrmCrReportViewer.FViewer.EnableDrillDown = False
                FrmCrReportViewer.FViewer.Visible = True
                FrmCrReportViewer.FViewer.Show()
                FrmCrReportViewer.FViewer.RefreshReport()
            Catch ex As Exception
                Throw ex
            End Try
        End Sub
        Private Sub FetchData()
            Dim SqlStr As String
            Dim TempTable As DataTable
            Try
                oDs = New InspectionParameterRptDataSet()
                SqlStr = "sp_InsRpt"
                TempTable = New DataTable("sp_InsRpt")
                TempTable = FillReportData(oDs.Tables("sp_InsRpt"), SqlStr)
            Catch ex As Exception
                Throw ex
            End Try
        End Sub
    End Class
    Please help me to solve the issue.
    Regards
    Mohana

  • Regarding Crystal report  parameter from and to.

    hi.
    I am having one requirement ie.
    Normally we are giving..i.e
    We are using parameter in Sap b1 like Docentry
    Based on this one Docentry the data will fetch from the data base and it will shows into the sap crystal reprot
    suppose Ex Docentry = 3 then it will show the data.. then
    but ring now what i nee dis  Docentry from and to
    fromdocentry = 1
    todocentry  = 5
    so, 1,2,3,4,5 five documents should be generate one by one in crystal report in single crystal report not 5 pdf files single pdf should have 5 doc entries
    Is it possible how can i do it.
    how can i do it...

    Hi
    I think it is not possible from Crystal Report but below discussion indicates it is possible through some Crystal Report SDK tool.
    Exporting a Crystal Reports file into multiple PDF's
    How to export a crystal report into several pdf files then email them to several email addresses
    With Regards
    Balaji Sampath

  • Regarding Crystal Report and infoview

    Hi All,
    In My project I have the following requirements.
    I have published a crystal report in infoview which contains three parameters field.
    Report is running fine . At the parameter selection screen three options is coming "Execute" "Collapsed All"
    and "Expand all" and user wants that it should contain only one option "Execute" or "OK" button.
    Is it possible that I can change it from anywhere?Please reply me.

    Keep in mind that we are not talking about the BOE or CR SDK here (which is supported from SAP) rather about modifying the existing BOBJ code.
    You may try to use the BOE and Crystal SDK to write your own report viewers but to be honest you will save yourself a lot of  time and money if you just tell your users/customers what those buttons do and ask them to avoid them.
    Regards,
    Stratos

  • Hi I got error regarding crystal report generation in jsp

    Iam using crystal reports in my JSP.
    But, iam getting the error like "package com.crystaldecisions.reports.sdk not found in import".
    import com.crystaldecisions.reports.sdk.*;
    can anybody please help?

    Hi,
    You import some classes but the package where the classes are is not reachable.
    Check your class path / manifest.
    Hope that help,
    Jack

  • Regarding Crystal Reports 2008

    Post Author: Swathi Godavarthy
    CA Forum: Data Integration
    Hi,
    Right now we are using crystal reports X1 release2 with RDC. We are not using crystal rpeorts integration with .Net rather we are using activex viewer. We are integrating crystal reports with ASP (Active Server Pages). We have decided to upgrade the version from releaseX1 to crystal rpeorts 2008. Does 2008 support RDC? Please if anyone knows let me know.

    Hi,
    Here's what you need to do:
    1) Create an array variable to accumulate the object 'C' when object 'D' = "T". The formula would be:
    WhilePrintingRecords;
    stringvar array C;
    numbervar i;
    if ({table2.D} = "T" and Not({table2.D} in C)) then
        redim preserve C<i>;
        C<i> := {table.C};
        i := i+1;
    Place the above formula on the Details Section.
    2) Create a new Report Footer b section. In the Report Footer a section, use this formula:
    whileprintingrecords;
    stringvar array C;
    Join(C,",");
    3) Insert a Subreport in the Report Footer b section with the same universe as the datasource
    4) Right-click the Subreport and select 'Change Subreport Links' > Move the above formula in the 'Fields to link to' area and uncheck 'Select data in Subreport based on field'
    5) In the Subreport create this new formula:
    if {table1.B} in {?Pm-@name} then {table1.B} else "Others" //{?Pm-@name} is the name of the parameter that we linked from Main Report to Subreport
    6) Create a group on the above formula
    7) Insert a summary on the 'A' field. Go to Insert > Summary > Choose 'A' as the field to summarize, select Count as the operation and choose the summary location to be 'Group 1'.
    This will show the Count of field A when table1.B in (select C from table2 where D = 'T').
    You can then suppress all the other sections of the Main Report except the section that holds the Subreport.
    The report will also show a group called "Others" that does not meet the condition. You can write a Group Selection formula to suppress this group:
    Not(@formula_name = "Others")
    Let me know how this goes!
    -Abhilash

  • Regarding crystal report basic 2008

    Dear sir,
    i had  created two commands in crystal report and retrieving data using where conditions in select query .
    and after that i also clear all link between two commands but still it takes the link automatically and i am not able to get my real data..
    If i use only one command then it gives me perfect data but when there is use of both commands to gather it doesnt give my expected result ....duplicate data is generated automatically..
    Please provide solution of this .
    Thanks
    Parag

    Parag
    Click Mark as [answered.|https://forums.sdn.sap.com/resolve!default.jspa?threadID=8086789&resolution=3] to close the thread
    Mark as answered.
    Thanks
    Krish

  • Regarding  crystal report 2008

    dear sir,
    how to give index legend to command in crystal report 2008???
    Thanks
    Bharat

    well sir,go to step by step for add command in crystal report
    1.go to first DATABASE FIELDS
    2.right click on it and select database experts
    3.connect the database
    4.and now you can see add command and just click on and write sql query after that we select another command and write another sql query after that we click on link and clear all links and crate manual links after that we click on link option we see only inner join and left outer join enabled and disabled full outer join and right outer join.my question is how to enable full outer join and right outer join in command.
    Thanks
    Bharat

  • Regarding crystal report metadata

    I am working with crystal reports XI. I need to know where metadata gets stored in crystal reports and what are the possible ways to extract the metadata. Any clues or suggestions will be very helpful. Kindly assist. Thanks in advance.

    Crystal Reports is a proprietory format and not for public use.

  • Regarding Crystal Report Setup Installation

    Hi All,
    I am unable to instal crystal report designer. The crystal report add on has been successful installed in SAP B1 and it is also featuring in the main menu. But the "Account set up" option is not working. None of the option of the crystal reporter is working and an error message is shown while the add on is started.
    The Crystal Designer outside SAP is also not getting installed. Error message is showing- "Error Applying transforms"
    Edited by: Rui Pereira on Jan 26, 2009 5:45 PM

    yes I have. But the I m then not able to do the Account set up. The crystal Reports options are visible in the main menu but not responding.
    Can you suggest where can I get the crystal report set up files. May be the files I have used to install may get corrupt as they are very old and were the old evaluation version files.
      Is it true that now crystal report package is free and full version released for integration with sap.

  • Regarding Crystal report Sub Report.

    hi.
    i have one requirement About sub report.
    I have done customization...tables Document types.
    header Document
    rows    Documentrow1
    rows    Documentrows2
    one header and Two child tables i have created object and data also there.
    in Details section i put
    from Documentrows1 table
    line1
    line2
    lined3
    line4
    this is fine..
    but
    from Documentrows2  tabel i want to put
    line1
    line2
    line3
    linet4
    at Report footer.
    at end of the report only......
    Is it possible.
    i put one sub report.
    but if i click only it is opening new preview and then it is showing.
    line1
    line2
    line3
    only
    how can solve this one
    i need in single preview only....
    I need your Valuable suggestions..

    Dear Srininvas,
    You have to link Main report and subreport....
    In the navigation pane..Edit->subreport links..
    Rgards
    Ajith

  • Regarding Crystal report Line Adjustment at page footer

    hi.
    Plz have a look on below post.
    i am facing one problem line adjustment at each page..
    I Need your valuable suggestions..
    Line Adjustment at end of the page problem.

    Hi
    you should cut your line so it will end exactly at the end of the details section
    shachar

Maybe you are looking for