Crystal reports and crystal report viewer

Hi.
I have up to recently used crystal report version 11.5 and reports have been made available for users in the organisation via Crystal report viewer.2010 ver 11.2.1.3.
The reports have been saved without data, and the different parameters have been available for the users for them to select approriate dataset,.
I have now upgraded Crystal reports to version 2013 ver 14.1 and crystal report viewer to same version.
The problem now is that the parameters are no longer available for the users, and it is also a requirement to save the reports incl a dataset to even open the report in the new report viewer.
What have I missed? Anyone that can help me ?
brgds Torunn

Hi Torunn
An alternative may be to create a web app using either the Crystal Reports .NET or Java SDK. Depending on what development software you already have, this may be cheaper than CR Server or "BO server". E.g.; both the .NET SDK and the Java SDK are free:
SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads
SAP BusinessObjects - SAP Crystal Reports, Version For Eclipse Download
The above would be predicated on the assumption  that your org has some developer experience (or is willing to acquire it) and that you have the development software (e.g.; VS 2010, or 2012, or 2013 for the CR SDK for .NET).
- Ludek
Senior Support Engineer AGS Product Support, Global Support Center Canada
Follow us on Twitter

Similar Messages

  • Crystal reports and formatted reporting.

    hi experts,
    i have a clarification about  crystal reports and formatted reporting.in what scenarios they are used..
    points ll be rewarded...
    thanks
    baskar

    Hi ,
    Crystal Reports is a powerful, dynamic, actionable reporting solution that helps you design, explore, visualize, and deliver reports via the web or embedded in enterprise applications. It enables end users to consume reports with stunning visualizations, conduct on-report business modeling, and execute decisions instantly from the report itself—reducing dependency on IT and developers.
    The report can then be previewed on the screen, printed onto paper or exported to one of several different file formats such as PDF, Excel, text or CSV.
    It is also possible to run a Crystal Report without using the full Crystal Reports designer software. These alternate methods for running reports include locally installed viewers, schedulers, and report distribution tools. These are typically third-party software programs (independent of Business Objects) that allow you to open, refresh, preview, print and export an RPT file. In 2007 Business Objects released their own viewer, Crystal Reports Viewer XI, but unlike the independent viewers it does not allow the user to refresh the report, but only to view static data saved in the RPT file.
    Thnx,
    Srinivas

  • Crystal report(Can i link sub report and main report Compulsorily) - invalid path

    hi.
    i need small clarification.
    i am developing one Crystal report
    main report i took it from rdr1 one table...
    report is working fine..
    Sub report i took it from inv1 one table.
    i have not linked any fields from these tables.
    May be it is having links in b1..
    but in my other report both the tables.... from main report  and sub report does not have any relation.
    My Questions is..
    Can i Compulsorily link fields to main report...
    if both does not have any relation what should i do...
    i took two tables.
    main report rdr1
    sub report inv1...
    if i  run the report it is asking two parameters one is for sub report and other one for main report working find in crystal report.
    but...i want to run the report in b1.
    while importing i am getting the error (Plz have a look on below image)
    if i choose any other report it is importing  fine...
    Clearly i am mentioning i dont want to link both tables there is no links between two reports...
    in this scenario can develop  a report..
    I need your Valuable suggestions.
    here below u can find my developed sample report...
    http://www.megafileupload.com/en/file/544758/NewReport-rpt.html

    hi.
    If i try only i am getting the error..
    out side if i run i am able to run the crystal report but
    in b1 i am not able to import the report.
    you can also try my report
    from below link u can get my simple report.
    if u find any mistake what i have done plz inform me..
    http://megafileupload.com/en/file/544806/NewReport85-rpt.html

  • Difference between oracle reports and oracle report writer

    I would like to know the diffrence between oracle reports and oracle report writer.I would appreciate if i get more details of oracle report writer.
    Thanks
    Rajesh

    Hi;
    May I know the difference between Oracle reports and Oracle discovererDiscoverer vs. Oracle Reports
    http://businessintelligence.ittoolbox.com/documents/discoverer-vs-oracle-reports-17819
    http://www.oraclechamps.com/index.php?option=com_content&view=article&id=316:oracle-reports-vs-discoverer-difference-between-oracle-reports-6i-and-oracle-discoverer&catid=62:oracle-technical-documents&Itemid=104
    Discoverer Vs. Oracle Reports
    PS: Be notice here is oracle database related forum side. For your future issue please use Forum Home » E-Business Suite* forum side*
    Regard
    Helios

  • Document integration for Bex reports and web reports

    Hi,
    I would like to attach few documentaion (like business usage of the report) for all existing reports in BW system. We are delivering all reports through Bex reports and Web reports.
    Report user should be able to see attached documentation through "Document" property in Web report.
    I have followed this way but not able to get on-line documentation for queries.
    1. RSA1--> Documents >Meta Data> selected Object type ELEM> Import document> attached word document.
    2. I enabled Documents property in Query designer.
    3. When I executed this query in Bex, I could see document symbol for all characteristics & Key figures in all cell (in default view)
    4. The same result with Web report (all cells are having document symbol).
    But I dont want to display documents in defaul view, if any user wanted to have doucment info, then should click on "document" tab and should be able to down load / read on line.
    Let me know why I am getting document symbol for all key / char, even though i selected "ELEM". I know we could direclty import documents in query designer, what is the difference..
    Rgds..

    Hi,
    Anybody could provide step to step procedure for doucument integration for Bex reports.
    Best regards,

  • Use of READ REPORT and INSERT REPORT

    Hi Guys,
    i need a small help from u guys.......
    i want to know the use of READ REPORT and INSERT REPORT  with Example
    the requirement is...
    i want to declare an internal table with fields from custom table.
    if any field is aded in the custum table then that field also should get populated in the program.
    Ex: custom table fields are
    MANDT
    BUKRS
    MATNR
    LIFNR
    field1
    field2
    field3
    now suppose if a new field field4 is added in the Table
    then the Program should automatically pick-up the fields from FIELD1...FIELD4.
    i heard by using READ and INSERT report we can do it
    plz help me ...
    Thanks
    Sunil.:-)

    If you're on 46C or above, you can use the following to generate tables dynamically.
    CALL METHOD CL_ALV_TABLE_CREATE=>CREATE_DYNAMIC_TABLE
    EXPORTING
    IT_FIELDCATALOG = GT_FIELDCAT
    IMPORTING
    EP_TABLE = GS_DATA_HEAD
    EXCEPTIONS
    GENERATE_SUBPOOL_DIR_FULL = 1
    OTHERS = 2.
    But you are restricted to 32 calls, if I remember correctly.  If you are in a later release, you can use the RTTS classes to create internal tables dynamically, without the restriction on subroutine pools.
    These classes are CL_ABAP_TYPEDESCR and subclasses.
    There are a few blogs on SDN that give examples of their use.
    Matt

  • How to use url to open report and refresh report's data,but the report's toolbar haven't "refresh data" button

    Post Author: madbird
    CA Forum: WebIntelligence Reporting
    HI,
    scenario is
    I hope use url to open the report,and refresh the report data,but I didn't the user use the "refresh data" button to refresh the report's data.How to do that?
    regards

    Post Author: madbird
    CA Forum: WebIntelligence Reporting
    Thank you for your attention, amr_foci .
    I created a Web Intelligence report,there will be more than 30 companies use.The company only allowed to see the Company Data. I want to use the url of the way, from my company in the development of the system to open report, and refresh reported Table data.but do not want users to use the toolbar of "data refresh" button to refresh the data .
    Now the question of identity authentication system, as well as statements by url open the question of Has been resolved, but it can not shield statements through the pages of "data refresh" button.
    In addition, I now used by the business object XI system is posted on the JAVA environment.
    Regards,

  • Difference between Drill down Report and Interactive Report

    What is the difference between Drill down Report and Interactive Report?

    Hi,
        Drill down report and Interactive report seems to be acts as same. But there is a minor difference between those two.
    Drill Down Report  - When you  click on a particular field in a report it drills down to the next report, it won't trigger another screen.
    Interactive Report -  When you click on a particular field in a report it will trigger another report based on the field clicked. It opens another session internally in the same screen.
    Regards,
      Jayaram...

  • Error Logging in B2B Business Message Status Reports and Error Reports.

    Hi,
    Could someone please let us know as to how the error messages are being shown up in the b2b frontend in the Business Message Details Report and Error Reports.
    In some of the cases the error message logging is not happening properly and even against the valid transaction block the entire iAudit Report or the B2B Analyzer report is getting posted .
    In some cases the error message is logged as AIP-51505: General Validation Error (for the transaction block which is valid and having no errors)
    Is there any way from the b2b backend these error messages and business messages could be traced or is there any other way wherein the proper and relevant error messages could be tracked from B2B.
    Thanks
    Sachin.

    Hello,
    Business message status reports identify business message instance details.These details include the sending and receiving trading partners, exchange protocol,document protocol, business action and its state, message date, and message details.
    Error status reports identify error message details. These details include the error code, error text, business message identification, message date, and message details.
    Please fix up a telecon to 918041086150 for further discussion on the same.
    Rgds,Ramesh

  • Difference between r/3 report and bw report

    Hi
    can u give me detail difference between r/3 report and bw report.all information is geting in r/3 y bw report
    plz send me any document if u have
    prasanth.k

    Hi,
    These two reporting seem to function similarly with slice and dice.
    A) The major benefits of reporting with BW over R/3 are in terms of performance and analysis.
    1. Performance -- Heavy reporting along with regular OLTP transactions can produce a lot of load both on the R/3 and the database (cpu, memory, disks, etc). Just take a look at the load put on your system during a month end, quarter end, or year-end -- now imagine that occurring even more frequently.
    2. Data analysis -- BW uses a Data Warehouse and OLAP concepts for storing and analyzing data, where R/3 was designed for transaction processing. With a lot of work you can get the same analysis out of R/3 but most likely would be easier from a BW.

  • What are BI reports and ABAP reports and the difference between them ?

    What are BI reports and ABAP reports and the difference between them? please explain me in detail and let me know if you have some documentation about it.
    Thank you in advance!
    Steve Jobs

    Do we have to write custom code for the ABAP reports? Do you have any documentation about it?
    Thank you.
    Steve Jobs

  • Functional reporting and Administrative Reporting

    Hi All,
    Can anyone give the brief description for Functional reporting and Administrative Reporting with examples.
    Its very urgent......
    Regards,
    Sita

    Hi Sitarama,
    According to me, functional reporting refers to the detailed reports that are generally executed & used by the people who are actually doing the job (e.g. Payroll specialist). We are generally developing functional reports with ABAP. On the other hand, administrative reporting refers to the more high-end reports that are detail-free and gives the overall picture. They are generally used by managers, etc. (e.g. HR manager). We generally carry out administrative reporting in BI.
    For instance, a functional report may include all of the payroll wage types of the employees that are paid in the respective months whereas administrative report includes the total amount paid to all of the employees in the company.
    I hope this helps.
    Regards,
    Dilek

  • Normal report and ALV report, where exactly both are differs?

    For Normal report and ALV report, where exactly both are differs, I mean from which part the process / coding will differ, pls le me know..?
    Akshitha.

    Hi Akshitha,
    In Normal reports we use formatting techniques to display the report list. We define heading and size everything to display report list. But where as in alv we need not to use any formating there are some function modules which will automatically display output list in LIST  and GRID format.
    In Normal report we cannot make changes to the output list where in ALV report we can change the ALV output display dynamically. You can find lots of options for  the ALV list such as you can download output list into Excel sheet and Sorting options Acending and decending order in ALV but in normal report We need to write syntax in the report to display output list in sorting order.  The ALV report is very easy way to display the output compared to Ordinary report.
    Check below some links which will help you to understand about ALV. If you know about Normal report you can campare by userself the difference.
    Simple ALV report
    http://www.sapgenie.com/abap/controls/alvgrid.htm
    http://wiki.ittoolbox.com/index.php/Code:Ultimate_ALV_table_toolbox
    ALV
    1. Please give me general info on ALV.
    http://www.sapfans.com/forums/viewtopic.php?t=58286
    http://www.sapfans.com/forums/viewtopic.php?t=76490
    http://www.sapfans.com/forums/viewtopic.php?t=20591
    http://www.sapfans.com/forums/viewtopic.php?t=66305 - this one discusses which way should you use - ABAP Objects calls or simple function modules.
    2. How do I program double click in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=11601
    http://www.sapfans.com/forums/viewtopic.php?t=23010
    3. How do I add subtotals (I have problem to add them)...
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    4. How to add list heading like top-of-page in ABAP lists?
    http://www.sapfans.com/forums/viewtopic.php?t=58775
    http://www.sapfans.com/forums/viewtopic.php?t=60550
    http://www.sapfans.com/forums/viewtopic.php?t=16629
    5. How to print page number / total number of pages X/XX in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=29597 (no direct solution)
    6. ALV printing problems. The favourite is: The first page shows the number of records selected but I don't need this.
    http://www.sapfans.com/forums/viewtopic.php?t=64320
    http://www.sapfans.com/forums/viewtopic.php?t=44477
    7. How can I set the cell color in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=52107
    8. How do I print a logo/graphics in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=81149
    http://www.sapfans.com/forums/viewtopic.php?t=35498
    http://www.sapfans.com/forums/viewtopic.php?t=5013
    9. How do I create and use input-enabled fields in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=84933
    http://www.sapfans.com/forums/viewtopic.php?t=69878
    10. How can I use ALV for reports that are going to be run in background?
    http://www.sapfans.com/forums/viewtopic.php?t=83243
    http://www.sapfans.com/forums/viewtopic.php?t=19224
    11. How can I display an icon in ALV? (Common requirement is traffic light icon).
    http://www.sapfans.com/forums/viewtopic.php?t=79424
    http://www.sapfans.com/forums/viewtopic.php?t=24512
    12. How can I display a checkbox in ALV?
    http://www.sapfans.com/forums/viewtopic.php?t=88376
    http://www.sapfans.com/forums/viewtopic.php?t=40968
    http://www.sapfans.com/forums/viewtopic.php?t=6919
    Go thru these programs they may help u to try on some hands on
    ALV Demo program
    BCALV_DEMO_HTML
    BCALV_FULLSCREEN_DEMO ALV Demo: Fullscreen Mode
    BCALV_FULLSCREEN_DEMO_CLASSIC ALV demo: Fullscreen mode
    BCALV_GRID_DEMO Simple ALV Control Call Demo Program
    BCALV_TREE_DEMO Demo for ALV tree control
    BCALV_TREE_SIMPLE_DEMO
    BC_ALV_DEMO_HTML_D0100
    <b>Please Reward if useful<b>
    Regards,
    sunil kairam.

  • Are Crystal 9 and Crystal 10 supported with Windows 7?

    I have Crystal 9 installed for Peoplesoft report development and Crystal 10 installed for Kronos report development.  We are moving to Windows 7 and I am doing testing of all our applications and third party tools now.  What I am finding is that both versions will install without error but I cannot connect the ODBC DataDirect drivers and no other drivers will work.  So If I cannot connect to our Oracle database then I am wondering if these version are in fact supported on Windows 7?  Can someone please respond/explain?

    Hello,
    Both versions of Crystal Reports are not supported on Windows 7. But I believe Peoplesoft have their own ODBC driver so you'll have to check with them if they support those versions. Our original DataDirect driver would not be supported on Windows 7.
    And I don't believe the current 5.3 version are supported in CR 9 and 10.
    PeopleSoft should be able to confirm if their OEM build of CR 9 and 10 are supported or even tested on that OS.
    Should also mention only version is CR 2008 Service Pack 2, CR XI R2 SP6 is also but it's end of escalation life cycle now, meaning no more patches will be created.
    Thank you
    Don
    Edited by: Don Williams on Sep 30, 2010 1:24 PM

  • Generate reports and sub-reports based on JTable Swing.

    Hello everybody...
    Anyone know like to generate report and subreport dinamicaly using the tool jasper?
    The report will be based on a JTable Swing.
    Java Swing.

    As far as your target platform is supported by Crystal Reports, use it via free API at http://www.must.de/Jareport.htm

Maybe you are looking for

  • Regarding Error in Migo

    Dear All, Through transaction code called Migo we are creating the return delivery for a stock transport purchase order by giving the inputs as the material document we have flagged the item as okay and also checked the box which indicates via delive

  • Updating Data in Siebel From Portal

    Hi, Can you please let me know how i can get the data from Siebel to Portal, Make modifications to the data and update back to Siebel. Probably client is stressing to use WebDynpro GUI. In case you have a code sample or any means of Weblog  or any ki

  • Advanced Settings do not stick!!!

    Why do my "Advanced" settings change or come unchecked!! It is getting quite annoying. I check the box to remove ALL emails from server "right away". days later, all of a sudden all the same emails from the morning come down AGAIN. I go to my setting

  • Highlighting problems

    Hi, i have created a specific JTextField that, among other things, only can take in numbers. To do this I have modified the Document of the textfield. My problem is that the user can toggle between two different textfields using a combo box. One text

  • Can't login after Mountain Lion upgrade (Network accounts are unavailable)

    I performed a Mountain Lion upgrade on a 2011 MBP running Lion this weekend. The Mac may have been set up to connect to an AD server with my user account, but I thought I had disabled that months ago... aparently not. I performed the upgrade at home