In CMC Manage- Add-     Crystal reports option is missing

Hi: I want to import a .rpt via CMC. I understand that I am supposed to navigate  to a folder and Manage -> Add -> Crystal Report
  In my case the only options are ProgramFile and LocalDocument.
  Does someone know why? Is it because, CrystalReports designer is not installed?
                                 ...thanks, Stan

If you select "Local Document" and then select the .rpt file you want to publish, it will know that this is a Crystal Report and give you a couple of options for that.  It will then be added to the system correctly.
-Dell

Similar Messages

  • How to add Crystal Report Basic 2008 in SAP B1 2005 B

    Hi All Experts,
    I have installed Crystal Report Basic 2008 in SAP B1 2005 B PL 25.
    But I dont know how to add this in addon.
    Can any body guide me to do plz.
    With Warm Regards,
    Chintesh Soni

    Chintesh Soni 
    Go to administration >add-on mabager and make sure crystal report is started
    now select administration -> Crystal Report Administration->Account Setup ->enter password for ur database and click-> update->create Ext Tables
    now select Manage Crystal Report->new report ->Browse to add .rpt file, give a name description select module and you can set the access as public or any specific group. select public for first time and click update
    Now click on Preview and Print to view the report
    Thanks
    Krish

  • Crystal Report Optional Prompt Not supported

    Hi,
    I am creating a Crystal Report on top of BEx query. We have 4 parameters in BEx and i have created one parameter in Crystal which should be an optional one. The report is working perfectly alright when run in designer. But when published to enterprise the optional prmpt is not working as intended. It is expecting a value all the times. I tried to default it some value, but it is not working.
    We are using BO XI 3.1 FP2.8, Crystal Reports 2008 SP2 FP2.8 BI 7.X.
    We are using BI Publisher to publish the reports. Alos i have treid testing by directly saving the report to enterprise but the result is the same.
    Any suggestions or help is greatly appreciated.
    Regards,
    Venkat

    I am already using the Not HasValue(). And that is working perfectly when tested from Crystal Reports designer. But it is not working only when published to the enterprise.
    Regards,
    Venkat

  • Best way to add crystal reports

    Hi All,
    I have worked with crystal reprots in past and have done this by adding a DataSet and having this populated with the SQL statement from the database.
    I want to have a way where i can add reports to a folder and have the report pulled in to the vb.net application dynamically, so can leave the application as is and not have to keep re-compiling the code and have it done through updates.
    what is the best way to do this a system i used to work with used to be able to add 3 files in to a folder . Par . SQL .Rpt
    this used to pull the report from the folder and add to the specified menu or submenu.
    i have figured out i can either do it through a database table or xml file for adding but need to work out how to get the paramater name and type and add to the form dynamically.
    any help will be appriciated.
    Regards
    AIDAN

    Depending on the version of CR you are working with, your best way will be to use InProc RAS. See samples here:
    https://wiki.sdn.sap.com/wiki/display/BOBJ/NETRASSDK+Samples
    Also, consult the developer help for your version of Crystal Reports.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Deploying a crystal report - options

    Hi,
    I'm not sure if this is the right place to put this question, but I've gone through all the other forums and though this looked like the best fit.  Apologies if this isn't the case.
    What I'm hoping to find out though is what options are available to me to run an existing crystal report on a number of other systems.  To give abit of background I work for a company that has around 140 stores across Australia.  We currently use a thin client POS system at the stores and there has come a need to use another reporting facility, and we're hoping Crystal Reports will meet that criteria.  The need is to allow the stores to view reports locally without having to rely on a server.
    We are planning on purchasing the full version of Crystal Reports designer to build the reports themselves at Head Office (we are currently using the Trial version to see if we can accomplish the results we need) but the hurdle we face at the moment is how the stores themselves will actually run the reports and view the results on their end.
    Our initial line of thinking was that the reports would use an XML based datasource and the sample reports that we have built are structured on that as well.  The XML datasource would be refreshed from the Thin Client system onto the stores local directory whenever a report is ran.  What we don't know is how to run the Crystal Report using that datasource without using some additional third party programs (or even something like a C# application acting as the middleman).
    We aren't even sure if this is the best approach or if there's another option, but essentially we are looking to see what options are available to run a .rpt file locally.  We've looked at the CrystalReportsViewer freeware application and we're not sure if that meets our requirements (it didn't seem to actively point to the XML datasource, and also had a fair amount of popups and external links).
    I'm hoping someone might be able to point me in the right direction.  If you need any other information then let me know.
    Thanks

    Hello
    I really like your questions. Much better to get those out of the way now than after you've jumped over the cliff LOL
    Re. the size of the dataset and XML. One thing I forgot is that you could use a direct connection to an XML, but do ensure that you are using the crdb_adoplus.dll driver (). The crdb_xml.dll driver () converts all data types to string (for what ever reason...) which often leads to issues.
    Now to your questions.
    if the XML datasource was to always reside in c:Data.XML then the viewer would update accordingly to reflect any changes to that datasource?
    - Yes this will be fine. Actually in this case it will be the engine reading the report and the report has that info stored internally.
    But remember you do have the option of changing the path as per the KB in my previous post.
    Also a quick question about the SDK's. Do they work with the express version of Visual Studio or would they require the full version?
    - The CR SDK does not integrate with the express version of VS .NET.
    Re. the SDKs
    - Click [here|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/40bccdfd-88a6-2b10-1da1-c47a54b625a7] for a presentation on the available SDKs. The Developer help files also discuss these. But in you r case, as I read your posts, it looks to me like this will be a pretty simple / vanilla kind of application. If the XML will always be in the same location and the reports do not need any selection formula, parameters, etc., passed to them, the code could be as simple as:
    Dim crReportDocument As New CrystalDecisions.CrystalReports.Engine.ReportDocument()
    'Load the report
    crReportDocument.Load("<path to your report>")
    'Bind the report to the viewer
    CrystalReportViewer1.ReportSource = crReportDocument
    crReportDocument.Close
    crReportDocument.Dispose
    - Ludek

  • Hierarchical Data Source in Crystal Reports Options

    We are trying to use Crystal Reports in VS2005 and set the data source
    to a list of our objects.
          Dim list As New BindingList(Of Payslip)
          Dim Report2 As New CrystalReport2()
          Report2.SetDataSource(list)
    This works fine when we are just considering the Payslip class in
    isolation. However we have a property on Payslip which contains a list
    of another class Element.
       Public Property Elements() As BindingList(Of Element)
          Get
             Return _Elems
          End Get
          Set(ByVal Value As BindingList(Of Element))
             _Elems = Value
          End Set
       End Property
    We would like to be able to display the Elements in the report, in a
    sub report ideally. However we cannot find a way of doing this. We can
    tell Crystal Reports how to link an Element to a PaysSlip, but not how
    to get to the Elements in the first place (i.e. by going through the
    property called Elements).
    How can we achieve this?

    The fundamental data model of Crystal Reports is relational and not object hierarchial.
    Are you able to transform the object hierarchy to a relational model?
    Sincerely,
    Ted Ueda

  • Crystal reports 2008 SP1 missing in BusinessObjects Crystal Reports website

    We have used Crystal reports 2008 as a reporting utility in our application and have released our product last year. During our release the latest software available  was Crystal reports 2008 base + SP1 + SP2 + Fix Pack 2.7 and same was mentioned in our documentation as mentioned in BELOW.
    The current supported version of Crystal Reports is Crystal Reports 2008 with
    Service Pack 2 and Fixpack 2.7. The installation sequence is as follows:
    1. Install Crystal Reports 2008 base.
    2. Install Crystal Reports 2008 SP1.
    3. Install Crystal Reports 2008 SP2.
    4. Install Fixpack 2.7. This can be found under the hotfix section on the web site.
    Questions
    1) Now the issue is that, Crystal reports 2008 SP1  is NOT available for download in the "Business Objects u2013 Crystal Reports Runtime Packages". Why was it removed? Any clue? Without this our instructions doesn't hold good.
    2) If Crystal reports 2008 SP1 will NOT be available any more then what is the equivalent installable for "Crystal reports 2008 base + SP1 + SP2 + Fix Pack 2.7" to be used?  Can Crystalreports 2008 SP3 Full Build + Fix Pack 3.3 be used instead of "Crystal reports 2008 base + SP1 + SP2 + Fix Pack 2.7" ?
    Pls Clarify.

    Hello,
    Download Service Pack 3.0 full build: https://smpdl.sap-ag.de/~sapidp/012002523100009989492010E/cr2008_sp3_fullbuild.zip
    and then Fix Pack 3.3: https://smpdl.sap-ag.de/~sapidp/012002523100016815822010E/cr2008fp33.exe
    Then you and your users don't need to go through all of those upgrade steps.
    Thank you
    Don

  • Crystal Report 2013 error miss the rasauditingw.dll

    Group,
    when I open the assistant to import reports the error occurs attached person has requested the dll, so that the error does not occur more?
    Unable to find the entry point of the procedure in the dynamic-link library
    Jaqueline Martins

    Hi Jaqueline,
                   Try this changes
    1. Go to the CR Designer installed patch, normally it is C:\Program Files (x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\win32_x86
    If it is your default location, please find out the correct path.
    2. Rename "rasauditingw.dll" manually in this path. For example change the name to "rasauditingw.dll.bak"
    Then please try again with the report.
    Regards
    Vinoth

  • I can't add A Crystal Report to CMC

    Hello,
    I download the Crystal Reports Server a month ago. 
    I've been adding reports for our management.  The management said they don't like this product in that it is very slow when viewing reports.  I am looking at the reports and trying to troubleshoot.  I deleted a report, worked on the stored procedure and wanted to add the report back.
    Now, when I right click on the folder, I no longer see add crystal report.  Now it only says add local document or program.
    I'm not sure what happened?!
    How do I get the CMC to be able to add Crystal Reports again?
    Thank you.
    Tony

    I knew to do that.
    When I look at the servers, I see that the crystal reports job server is disabled.  I've tried several times to enable it.
    I also tried to clone the server and then enable the clone.  It is disabled also and will NOT become enabled.
    I had already loaded service pack 3.  That did nto work either.
    I am going to uninstall and reinstall and see if that will resolve anything.
    Tony

  • Crystal report server2008 (XI R2): CMC session timeout error

    HI
    Crystal report server2008 (XI R2): CMC session timeout error
                Accessing folders, scheduling reporting or running reports are working fine with Central Management Console (CMC) within the Crystal report server or accessing CMC within VPN machine.  But when CMC is accessed through browser from client desktop i.e through proxy URL, users are not able to access folder or personal folders to view any reports even admin user is not able to access folders. When users try to access folder or personal folders it gives session-timeout errors. Within less than a 1 or 2 minutes it is showing session timeout error. Appreciates any one help on this quickly.
    Regards,
    Patrick Raths

    Please post your query to the [Business Objects Enterprise Administration|BI Platform; forum. This forum is dedicated to development and deployment of .Net applications that connect and interact with BusinessObjects Enterprise, BusinessObjects Edge, or Crystal Reports Server. This includes the development of applications using the BusinessObjects Enterprise, Report Application Server, Report Engine, and Web Services SDKs.
    BTW., if thi is an important issue, I'd recommend creating a phone case.
    Ludek
    Edited by: Ludek Uher on Aug 11, 2010 1:58 PM

  • Creating Crystal Report Thru InfoView Options

    Post Author: TriciaS
    CA Forum: Integrated Solutions
    When I click on New in InfoView, I see Crystal Reports as an option. I've been creating Crystal Reports locally, then loading them into InfoView.  Can I create Crystal Reports right through InfoView?  When I click on the Crystal Reports option in the New menu, I get a page not found error.  The same thing is true if I click Modify on one I loaded in.  Do we need to install something on the server to enable this?  Thanks!

    Post Author: kibbey
    CA Forum: Integrated Solutions
    Is anyone from BO looking at these forums?  I have noted the very same problem with our site.

  • Database, user name, password for Crystal report

    We're running BOE XI 3.1 and we use WebI reports.  One of our departments uses Crystal reports, and they'd like to be able to run them in our BOE environment so that they can refresh reports over the Web.  They uploaded a report to BOE (using Add -> Crystal Reports) but when they try to refresh it they aren't prompted for the database or a password, and the refresh fails.
    How do you specify the database / data source / data connection (or whatever it's called) for a Crystal report? How do you specify the user name and password to use for authenticating to the database?
    Thanks,
       Laura

    I am fairly new on this forum but we have been doing exactly what you are talking about with Crystal Reports published to BO XI 3.1 for a while.  There are a few things we have found that have to be done to make this work right...
    - Use the EXACT same ODBC/database connection setup on both the Crystal Report developer's machine and on the BO server
    - On the developer's machine use integrated security for the database connection
    - Then after you upload the report to BO, go into CMC and open the Crystal Report's properties.  In there under "Default Settings" you will see an option for Database Configuration.  The User and Password under the "Use original logon informstion from the report" should be empty.  Put in a valid userid and password that has access to the database.
    - Also, in the Database Configuration screen make sure the Server and Database boxes are filled-in - they will be greyed out and you can't change them (this is why you have to make sure the ODBC/database info is the same).  If they are wrong, you will need to fix the ODBC/database connection in the original RPT file.
    - Finally, you need to scroll to the bottom of the Database Configuration page and select the radio box "Use same database logon as when report is run" and then Save and Close
    Now when users run the report it will use the user and password you entered to do it.  The disadvantage is you are not using integrated security but then the users also never get prompted for a password.  We tried very hard to get integrated security to work but could not manage it.
    Hope this helps!
    Larry

  • Error when saving Crystal Report into BOE

    Hi there,
    I'm having problem on saving rpt (with parameter) into BOE.
    My rpt is working fine in Crystal Report 2008.
    I've tried to Add Crystal Report using Save As, and returned error:
    Error Message: Failed to read data from report file: abc.rpt.
    Reason: Failed to read parameter object.
    However, it working fine when I add crystal report (no parameter) using Save As.
    Would appreciate is there anyone can help on this error.
    Many thanks!

    Hi Yann,
    As you have created a dynamic parameter in the Crystal Reports, the error message occurs because the user or group who created the LOV does not have the appropriate rights in Business View Manager.If you have installed Business Objects Enterprise on the same machine, then please try the following workaround:
    1. Log on to Business View Manager as administrator.
    2. Click View > Repository Explorer.
    3. Right-click Dynamic Cascading Prompts. Click Edit Rights.
    4. Click the appropriate user or group receiving the error.
    5. Click the Granted option for the right to View, Edit & Set Security rights.
    6. Click OK. Close Business View Manager.
    Now try to save the report into Enterprise and see the results.
    Regards
    Arun Sasi

  • VisualAge RPG  and crystal report  + IBM Websphere Studio Dveloper client

    Hi friends
    My doubt is with regard to VisualAge RPG an alternative of java for AS400 servers yet iam posting here
    I am trying to call Crystal report using VARPG The IDE used is IBM Websphere studio developer for iseries 6.0.
    In VARPG GUI based windows application i am able to add Crystal Report Viewer (CRviewer.dll) to the ACtivex control object. I have to set the Report source and activate the Activex. The control has a property named ReportSource which is of numeric type. I tried to set the report source by calling openReport methox of Craxdrt.dll. I get a error as follows
    0211 Error occurred while calling program or procedure OpenReport.
    Cause . . . . . : The program attempted to call program or
    procedure OpenReport, but was unable to access the program or procedure. If
    the name is *N, the call was a bound call by procedure pointer.
    Recovery . . . : Check the error log file FVDCERRS.LOG for more
    information on the cause of the error. If the call was to a local
    program, then the program could not be found, or the accumulated
    parameters exceeded 1024 bytes in length. If not found, either specify
    the full path name or make sure the program resides in a directory
    listed in the PATH environment variable. Verify that the file
    extension is correct. If no extension is specified, .EXE is assumed.
    Is my way of calling crystal report is correct or i have to set the report source by any other way.
    Thanks in advance
    Ashokans

    Vamsi
    You ned to specify the location of the reports in the RAS server.
    Follow these steps.
    1. Go to the crystal configuration manager.
    2. Click Crystal Report Application Server and stop the service.
    3. Click the properties button.
    4. Go to the parameters tab and from the option type select Server.
    5. In the report directory text box, specify the director in which the reports are located.
    6. Click ok and Start the Crystal Report Application Server
    thats about it

  • Cannot view a Crystal Report in InfoView

    Hi,
    I created a report in Crystal Reports 2008, using connection to SAP tables and Function Modules. The reports contains some parameters and In Crystal Designer it works fine.
    Then I put it into the InfoView. If I try to view it, I get the error:
    "An error has occurred: Servlet execution threw an exception " before promting the database log on information.
    If I remove the parameters from this report, I can start the viewer without errors. Reports with parameters and other connection type work in this InfoView.
    The same report with parameters and SAP connection works fine in another InfoView.
    We upgraded the SAP Integration Kit on the server, but it did not help.
    I really need to find a solution for this problem, because cannot present the reports to the customer.
    Could somebody propose a solution? Probably someone has a similar problem?
    Kind regards,
    Oleksandr

    Hi,
    Thanks for your replies. Sorry for delay with my answer. Yesterday our admin upgraded the server (incl. JCO), the problem with the reports with parameters is resolved. But, now I have another problem with the database connection.
    Locally I use BO XI 3.1, Crystal Reports SP2, BO XI Integration for SAP solutions. On the server :
    BO Enterprise XI 3.1 SP2
    BO XI 3.1 Integration for SAP Solutions FP 2.1 Update
    BO XI 3.1 Integration for SAP Solutions Russian Language Pack
    BO XI 3.1 Integration for SAP Solutions SP2
    SAP BO XI 3.1 Integration, version for SAP solutions applications SP3 Update
    SAP BO XI 3.1 Integration, version for SAP solutions applications Russian Language Pack
    Now I create locally an empty report in Crystal Reports, just select in the database-assistent one SAP table and save without using these fields at all.
    Then, I go to the customer InfoView, there add this report using "Add->Crystal Reports..." from my local folder. If I click "View", I get the error:
    "Error in File Test: Failed to load database information. "
    If I click "View" for a report with parameters, a screen appears for the parameter selection, but after "Execute" I get the same error.
    Yesterday before server upgrade I could start the viewer for the same reports without parameters. All reports can be viewed now in another InfoView.
    I tried to change some options for the report Database Configuration in CMC, but it did not help. Possibly was I wrong with the settings?
    I would appreciate if you give me any idea how this problem can be solved.
    Thanks in advance!
    Oleksandr

Maybe you are looking for

  • One CTS+ for multiple landscapes?

    We have about 15 landscapes (ECC, R3, CRM, BI, PI, etc.) Each landscape has its own single SLD. We want to configure ONLY one CTS+ on an SM7.0 to handle all of the change request management for the 15 landscapes. Is this possible? Thanks!

  • New hard drive and now can't get library back!

    Hi, My hard drive recently crashed and I did not have a backup (I know, I know!). Anyway, new hard drive installed and some of my files were saved including some music files. However, when I try to add them to iTunes, they do not add. I have everythi

  • How to center the text in JLabel without image?

    I need to center the text inside JLabel, how do i do it? Also I need some advise, what is the best way to mark a clicked card (I'm making a card game)?

  • Hooking G5 to flat screen

    how do i hook my G5 to my flat screen tv? will i get a very good picture with that hook up and what might i be able to watch? any advice would be appreciated!

  • Problem from alpha conversion in bi report input screen

    Hi Experts, we have implemented standard MM module and loaded data. Everything is ok, but problem is while running any bi report for MM, at selection screen when we provide material (0MATERIAL (18)) value is 11, it is not excepting instead of it acce