Crystal Reports and Viewer using Parameters

I am using Crystal Reports 2008 to create a simple purchase order report from our Sap system.
I have created a parameter that is a static date value for people to enter when they launch the report.
When I  refresh the data in Crystal Reports 2008 I receive a prompt asking for the date to be entered.
However when I run this saved report in the Crystal Reports viewer it does not prompt for a date to be entered and the Change button is greyed out.
Any assistance would be appreciated.
Regards
Dave Ainsworth

Hi Ashok
Thanks for your assistance, I have tried this approach and when I open the report in the Viewer it reports an error.  "No saved data in this report".
I have then ran the same report in an older version of the viewer (In help about it says Pinnacle) and the report asks for the date range to be entered.
The problem seems to be with the Crystal Reports Viewer and not the report.
The Viewer is version 12.2.0.r325
Can you advise?
Cheers
Dave Ainsworth

Similar Messages

  • Export and save a Crystal Report in PDF using parameters

    Hi @all!
    Is it possible to suppress the output of an Crystal Report in a window using parameters? Instead of that I want to save the pdf in a specified folder without using the publication-function.
    Fot the parameter I use these link:
    [http://devlibrary.businessobjects.com/businessobjectsxir2/en/en/boe_sdk/boesdk_dotnet_doc/doc/boesdk_net_doc/html/Report_Linking13.html]
    Best regards,
    Dirk

    Hi,
    this is the forum for the SAP Integration Kit. I would suggest you post your question into the Crystal Reports forum.
    the answer - yes you can use OpenDocument to show the report right away as PDF.
    Ingo

  • Crystal report in JSP using activeX viewer

    Hi,I'm trying to integrate JSP and crystal report.
    can you give me a sample code to display crystal report in JSP using activeX viewer(not pure HTML)
    I'm using crystal report 9,there are ASP sample come with CR9,but no JSP.also I don't want use Crystal Enterprise9 even I know the URL reporting may be the eaier way.

    Hi,I'm trying to integrate JSP and crystal report.
    can you give me a sample code to display crystal
    report in JSP using activeX viewer(not pure HTML)
    I'm using crystal report 9,there are ASP sample come
    with CR9,but no JSP.also I don't want use Crystal
    Enterprise9 even I know the URL reporting may be the
    eaier way.Hi, did u manage to get the ActiveX Viewer up with JSP? I'm also trying to do the same thing. If you could, pls kindly email me the basic source codes to [email protected]? Thanks

  • Unable to print crystal report over web using ActiveX Control

    Post Author: jimmyp
    CA Forum: General
    We have a problem with printing crystal report over web using ActiveX Control.  When clicking print button, it only shows a blank dialog web crystal viewer page without any error.  The page just simply hangs.  We installed the PrintControl DLL and enable all the security setting for ActiveX Control for IE.  It still does not print.  Does anyone know why?  
    Environment.
    Bundle Crystal Report v10
    Asp.net 2.0
    IE 6.0 or higher.
    Appreciate for your help.
    Jimmy

    Post Author: Ian Kulmatycki
    CA Forum: General
    A team member here found this, I haven't read it, I'm not sure if our problems are related to this, but hopefully it helps someone:
    -ian
    When Secure Sockets Layer (SSL) is enabled, using the ActiveX control to print reports from a Crystal 10 DHTML viewer results in the following error message:
    "A communication error occurred, printing will be stopped."
    How can this error message be resolved?
    Resolution
    This is a known issue with Crystal Reports 10 and Crystal Enterprise 10 viewers and has been tracked. The Track ID is ADAPT00282199.
    This error occurs due to the receiving application performing a case-sensitive check for the HTTPS request header value "ON". When a sender application sends the value as "on" in lower case, the error occurs. The update below changes the receiving application to be case-insensitive.
    Hot Fixes or Service Packs address this issue as indicated below. With the updates, this issue is resolved.
    Unless indicated otherwise, Weekly Hot Fix updates from our FTP site have only been tested with English versions of products.
    For Crystal Reports 10 and Crystal Enterprise 10, the update for this issue is included in the Crystal 10 Viewers Weekly Hot Fix (WHF). This is available in English only at the following location:
    ftp://ftp.crystaldecisions.com/outgoing/EHF/viewers10win_en.zip
    This issue is addressed in the following components (and later versions):
    PageObjectModel.dll, version 10.0.5.785, dated 8/25/2004
    ReportRenderer.dll, version 10.0.5.785, dated 8/25/2004
    WebReporting.dll, version 10.0.5.785, dated 8/25/2004

  • Crystal report from JSP using the JRC

    Hi, I am trying to call crystal report from JSP using the JRC.
    But i am getting the Error as 'Logon Failed'. my web.xml entry is
    <env-entry>
    <env-entry-name>jdbc/Test</env-entry-name>
    <env-entry-value>!oracle.jdbc.driver.OracleDriver!jdbc:oracle:thin:{userid}/{password}@//10.0.0.1:1521/TestDB</env-entry-value>
    <env-entry-type>java.lang.String</env-entry-type>
    </env-entry>
    i am setting the userid and password in the code. Please see the below code for your reference. Please help me to solve the issue.
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ page import="com.crystaldecisions.report.web.viewer.CrystalReportViewer"%>
    <%@ page import="com.crystaldecisions.sdk.occa.report.data.*"%>
    <%@ page import="com.crystaldecisions.reports.reportengineinterface.JPEReportSourceFactory" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.reportsource.IReportSourceFactory2" %>
    <%@ page import="com.crystaldecisions.sdk.occa.report.reportsource.IReportSource" %>
    <%@ page import="com.crystaldecisions.reports.reportengineinterface.JPEReportSource" %>
    <html>
    <head>
    <title>Crystal Report with Database Logon information</title> </head>
    <body bgcolor="#ffffff">
    <%
    try
    String report = "/TEMPLATE.rpt";
    IReportSourceFactory2 rptSrcFactory = new JPEReportSourceFactory();
    JPEReportSource reportSource = (JPEReportSource) rptSrcFactory.createReportSource(report, request.getLocale());
    CrystalReportViewer viewer = new CrystalReportViewer();
    viewer.setReportSource(reportSource);
    viewer.setHasRefreshButton(true);
    IConnectionInfo newConnInfo = new ConnectionInfo();
    newConnInfo.setUserName("TEST");
    newConnInfo.setPassword("TEST");
    ConnectionInfos newConnInfos = new ConnectionInfos();
    newConnInfos.add(newConnInfo);
    viewer.setDatabaseLogonInfos(newConnInfos);
    viewer.setEnableLogonPrompt(false);
    viewer.setOwnPage(true);
    viewer.setOwnForm(true);
    out.println("Connection Information: "+viewer.getDatabaseLogonInfos().getConnectionInfo(0).getAttributes().toString());
    viewer.processHttpRequest(request, response, getServletConfig().getServletContext(),null);
    viewer.dispose();
    catch(Exception e)
    throw new JspException( e);
    %>
    </body>
    </html>

    I never really had much luck with this approach.
    Mind you I was using Crystal Reports 10, and as far as I recall it didn't allow setting/changing of database at this level.
    Things to check
    - can you create a database connection on your page with this URL/username/password?
    - what server are you using? Tomcat? WebLogic?
    I found this in your other post:
    Connection Information: {Server Name=ee6rpt, Connection String=DSN=s(ee6rpt);User ID=s(ee62test);Password=;UseDSNProperties=b(false), Database Name=, Database DLL=crdb_odbc.dll}That would indicate it is using odbc to connect to the database (crdb_odbc.dll). ODBC is a bad idea with java.
    The way I have got it to work for me (after much trial and error) was to in Crystal Reports to connect using the Oracle Driver, and specifying a tnsname - eg define REPORT_DS in tnsnames.ora.
    When running through the JRC, it looked for a JNDI datasource under that same name "REPORT_DS".
    Don't know if that will help you or not.
    Good luck,
    evnafets

  • Select multiple items from a list box as values for a parameter of crystal report and Oracle procedure

    -  I have a  Product list box (asp.net) used as multiple selected values for  a parameter. 
    - The Product ID is defined in the Oracle procedure as NUMBER data type. 
    -  In my crystal report, I have a parameter field allow multiple values as p_product_id type as Number.  This is the code in my Record Selection Formula for the report:
    ({?p_product_id}[1] = -1 OR {Procedure_name.product_id} in {p_product_id})
    -  In C#, this is my code
    List<decimal?> productUnit = new List<decimal?>();
    int counter = 0;
    decimal prod;
    for (int i = 0; i < lstProducts.Items.Count; i++)
                  if (lstProducts.Items[i].Selected)
                                if (decimal.TryParse(lstProduct.Items[i].Value, out prod))
                                    productUnit.Add((decimal?)prod);                              
                                    counter++;
           if (counter == 0)
                       productUnit.Add(-1);                      
    ReportingDAO rDataFactory = new ReportingDAO();
    retVal = rDataFactory.GetProductReport(productUnit);
    public CrystalDecisions.CrystalReports.Engine.ReportDocument GetProductReport(List<decimal?> productUnit)
              CrystalDecisions.CrystalReports.Engine.ReportDocument retVal = new rptProductDownload();
              ReportLogon rptLog = new ReportLogon();
             rptLog.Logon(retVal, "RPT_PRODUCT_DOWNLOAD");
             retVal.SetParameterValue("p_product_id", productUnit); 
    I keep having the "Value does not fall within the expected range" when I debug.  My question is, is the data type I used for procedure/Crystal report/ and C# correct ?  I always have problem with the data type.  Any help would be
    appreciated
    Thank you

    Hi progGirl,
    Thank you for your post, but Microsoft doesn't provide support for CrystalReport now. Please post your question in SAP official site here:
    http://forums.sdn.sap.com/forum.jspa?forumID=313
    Thank you for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Barcode not displaying/printing in Crystal Report java viewer

    We have written a Crystal report (in Developer XI release 2 with service pack 4 installed) which produces barcode labels.  The barcodes are Code 39 barcodes and are generated by printing the string \*data_field\* in a Code 39 barcode font.  The asterisk is the character used for the Code 39 start/stop sequence in the barcode font.
    In Developer everything works fine and prints out and scans correctly. When we make the report available to our end users in the Crystal Reports java viewer all we get where the barcode should appear is white space on screen or when we print.  (The rest of the report behaves correctly). 
    We have tried a few things and have found that if both asterisks or the starting or ending asterisk is left in a different font (i.e. not the barcode font) then the rest of the string displays and prints in the barcode font.  (unfortunately without bot asterisks you don't get a scanable barcode).
    Has anyone got any suggestions on how to fix this?
    (In case it might be relevant the barcode font we are using is this one: http://www.barcodesinc.com/free-barcode-font/)
    Thanks
    Trevor

    Hello Ludek,
                    I have found that the issue is caused by the bold attributes of my field.
                    You can try the following and you should encounter the same issue:
                                    - Create a Report
                                    - Create a formula with many characters
                                    - Put you field in Times New Roman bold 8.
                    The following Font Size in  Times New Roman are in issue: 5 u2013 8 u2013 11- 14
                    The following Font Size in  Arial are in issue: 8 u2013 11 u2013 12 u2013 14
    Thank you.
    Charles
    Edited by: Charles Gagnon on May 2, 2011 5:38 PM

  • Crystal Reports and MII 11.5

    Are there any documents out there on the pros and cons of integrating Crystal Reports with MII?  Can it be done.  If so, how can my company do this?

    Hi,
    The Software Crystal Report is a software for creating reports very good and the MII is a software for creating reports and integrate your manufacturing and more ...
    Is possible integrate the two system, but I'm not view very advantages, because if you have installed MII in your company is much simpler to create the reports within the SAP MII.
    That depends on your business if uses the reports to Crystal Reports and want to keep this software integrates the software, if your company wants more intelligence use SAP MII I think much better.
    I not view documents in SDN about Crystal Reports and SAP MII.
    See also on Xcelsius other tool very good.
    Hope this helps...
    Danilo

  • Crystal Reports and SAP BW 7

    Hi,
    I have been reading these posts and got bit confused.
    What do I need to integrate Crystal Reports and SAP BW 7 without BOE. My company has SAP NW license and Crystal Reports Enterprise license and plan to use CR for formatted reporting. Do I still need integration kit into SAP BW in order to create crystal reports on BEx queries and save into BW and view through the SAP NW Portal?
    Or am I fine without integration kit?
    many thanks

    Based on the below Ingo's blog in BI expert we would only need the following:
    You must install Crystal Reports Designer on the client
    You must install the client components for the BusinessObjects Integration Kit for SAP Solutions
    You must install an SAP front end with the SAP NetWeaver BI 7.X Add-On and the SAP BW 3.5 Add-On components on the client when using the connectivity on top of SAP NetWeaver BI
    Users need to have the necessary authorizations in the SAP system. For SAP NetWeaver BI, this means that users require the authorizations to view and execute BI queries. There are additional authorizations for SAP ERP access in authorizations class ZSSI that are specific to the connectivity that BusinessObjects provides.
    You must release the BI queries that you want to use with Crystal Reports for external access. You can set this property in the BI Query Designer.
    So, no mention of BOE.
    http://www.bi-expertonline.com/article.cfm?id=3666

  • Crystal Reports and PlexIS

    Recently I was working on a new report generated through Crystal Reports, and I finally got it to work. The problem I am running into now is that I have to import the report into PlexIS Claims Manager (www.plexisweb.com). I have documentation on how to do this, and have followed the step-by-step instructions to do so. One of the steps requires placing the file in a reports folder, along with a corresponding .rcg file for the report. The PlexIS administrator utility then updates, "using up" the .rcg file and saving the .rpt file. The problem I am running into is at this step, when I update the reports both the .rcg and .rpt files mysteriously disappear. I have contacted PlexIS tech support, only to find out that they have never seen anything like this happen before and have no idea what the problem could be. Does anyone have any suggestions?

    Call them back and ask them what version of Crystal Reports their application is compatible with.
    i.e., have you installed a newer version (you didn't mention the version) and their application may have the runtime files for a previous version of CR.
    If you are reporting off their data and viewing the report through their application (not directly from you CR) then the ball would be in their court so to speak.

  • 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

  • Unicode Hindi Printing in Crystal Report Java Viewer

    I am facing a strange problem. We have a report made in Crystal Report 11.5 which contains Unicode Hindi Text. The reports are viewed using Java Plugin Viewer. The report successfully dispalyed in the Java Viewer with proper hindi encoding in the web browser(both firefox and IE). But whenever I try to print the information, the hindi text are not printed properly, the dependant vowel signs are dislocated.
    But the same page is displayed and can be printed properly from a Linux Machine, Using firefox browser..
    any solution to this strange behaviour.
    Vipin Bose

    Only option I can think of, is to create your own printer dialog and capture the cancel print event there.
    You will not be able to get at the print cancel event of the printer dialog displayed by the CR viewer print button.
    Ludek

  • Upload Crystal Report to by using Internet Explorer

    Hi all visitors
    i have crystal report. and  in my report, i use group to summary the floor name.
    when i click on each floor, my report doesn't link to POS because i use text box covert the group.
    when i upload my report to crystal report server and i view it using FireFox, the report show very well and no link.
    but when i view it by using Internet Explorer,my report can link and some lines are not correct.
    Anybody know how i view the crystal report on IE well as FireFox?
    best Regards,

    Hi,
       What version of Internet Explorer(IE) are you using.
       If you are using IE 8 or newer, try switching on the Compatibility Mode.
           http://support.microsoft.com/kb/956197
    Regards,
    Ken

  • CRVS2010 Beta - Crystal reports and VS2010

    I wanted to ask you whether is it possible in any case to use crystal reports 10/11 with visual studio 2010. Is the only option to upgrade to crystal reports for vs2010?
    As I tried both versions I'm getting red cross on all of my crystal reports, and the crystal viewer could not be of course edited from vs2010 because there is no such component in the toolbox.

    Hello,
    Yes, no other versions of CR are supported in VS 2010 and currently there are no plans to support anything other than CR 2010 in VS 2010. They may work but if any issues we can't escalate them to R&D.
    CR4VS2010 is beta, so do not distribute to a production system if you plan to upgrade your app. And it is currently only supported on Clean PC's, no other versions of CR installed.
    Thank you
    Don

  • How do I install UFL for Crystal Report XI for use on BOE InfoView XI 3.1?

    I have a Crystal XI Report that uses a UFL that was created by someone else. The library works just fine on my machine but I need to put this report out in BOE InfoView XI 3.1 for users. The library is Java Class.
    I have tried to put the library onto the BOE server but the folder structure, etc. is different on the BOE server.
    Could use some help on this.
    Thanks in advance.

    I have a license for Crystal XI on my desktop and that is all.
    We have licensing for BOE Repository to store and execute Crystal Reports. When I run a published Crystal Report the view panel in InfoView displays Crystal Report 2008 logo.
    Crystal Reports with UFL work on my machine because I can follow the documentation for Crystal Java UFL's (which is the same as the note you referenced), but that documentation is useless for BOE InfoView because Crystal Reports on the BOE InfoView server is entirely different.

Maybe you are looking for

  • IPad stolen.  don't remember if I turned off 'find my iphone' or not

    Please help. I've researched a bunch but have not been able to find an answer to this situation. My iPad air was recently lost/believed stolen (I left it in the library and nobody recovered it) Here are the stats as best I can remember them. *     It

  • Planning Disaster Recovery Site for SAP ERP ECC 6.0

    Dear All, I am planning for DR ( Disaster Recovery ) Site. Our current environment is Production Site OS        : AIX 5.3 DB        : IBM DB2      version 8.2 SAP      : SAP ERP 6.0 ECC 6 Disaster Recovery Site OS        : AIX 6.1 DB        : IBM DB2

  • Automatic determination of header condition in sales document

    Hi Friends,                 How can we make a header condition automatically determined in a sales document ? Regards Mahesh

  • Set max length for input parameter in SSRS

    I have an input parameter (@year)   to display a simple report. This input parameter taken Year from user (ex: 2015) manually. Here my problem is to restrict the user to max length of 4. It should allow only (ex:2015) not (ex:20155) like that. Can an

  • X3-02 v06.05 firmware

    Hi, I have a Nokia X3-02 with v06.00 firmware installed. When I connet it to PC, Nokia Ovi Suite software shows me an update to v06.05 firmware. Update seems to be installed properly, but when checking the version on the phone, it shows the v06.00 fi