Crystal Reports 10 Report Parameter Input Missing

Post Author: Karl D
CA Forum: Crystal Reports
I just did a clean install of Vista Business and Crystal Reports 10.  I'm only having one issue, but it is very annoying.
I can open a report with parameters, click the lightning bolt, enter the parameters, and the report returns.  However, as soon as I make even the slightest changed to the command, or even look at it, I am prompted to re-enter parameters.
The problem is, the parameter dialog is then missing the input, so I have no way to enter anything.  The "Reset" button does nothing.  This happens for any report I have that uses parameters as soon as I try to view the command/query in any way.
What should I try first.  I had trouble coming up with anything in searches.
Good
Bad

I am not sure about the Citrix environment, but couple of times the file dialog was missing because the relevant dll was not registered.
To register the dll, run the following command:
regsvr32 "C:\Program Files\Common Files\Crystal Decisions\2.5\bin\filedialog.dll"
Make sure you receive "...dll succeeded" message

Similar Messages

  • Crystal report parameter usage

    Hi all,
    I am facing a issue in designing crystal report. I want to display records in report as per user entered value of date parameter but  in database if data is not present for given input date value then the report should run for value which is one older than given input date value which is present in database (In short, report run for near by older value than input date value if record is not present for entered input value)  .
    How to do it in crystal report.
    Please help.
    Any comment is valuable.
    Thanks

    You can try this - In your sql query select data for both the dates - input date and next higher date (something like where sale_date = {input date} or saledate ={input date}+1)
    In Crystal do a record select filter to display the data for input date
    For eg:
    if sale_date ={input date} then
        if count(sale_id) is not null then 'sale amount'
    else ' '.
    Basically use the idea not sure about how to put it in syntax without looking at other report elements....Hope it helps

  • Can I capture crystal report user input in my web application?

    Folks, I have a report that has a input paramter named "AccountKey". Crystal report launches its own input parameter capture screen where user can type in the AccountKey value and hit OK button. Subsequently the crystal report gets renedred in crystal report viewer.
    I have a requirement of rendering the report in PDF not in crystal report. How do I do that.
    I am able to do that when there is no user input needed in the crystal report or, if I can somehow supply needed input from code-behind, but the moment I has a parameter that expects user-input I loose control.
    Is there anyway I can capture what value user has entered in Crystal Report Input paramagter capture form? or, any alternate that can help me acheive the result?
    Thanks.

    Hi,
    To capture the values of Parameters the best thing you can do is to code for parameters and take values from it through text boxes, so that you can capture it.
    here some sample code for it - try it
    I would like you to know the following code that I have tried at my end using Viewer Object model:
    // Object Declaration
    ParameterFields boParameterFields = null;
    ParameterField boParameterField = null;
    ParameterValues boParameterValues = null;
    ParameterDiscreteValue boParameterDiscreteValue = null;
    ParameterRangeValue boParameterRangeValue = null;
    // loading the report
    CrystalReportViewer1.ReportSource = Server.MapPath("ReportWithSubReport.rpt");
    CrystalReportViewer1.RefreshReport();
    // passing database credentials...
    foreach(CrystalDecisions.Shared.TableLogOnInfo boTableLogOnInfo in CrystalReportViewer1.LogOnInfo)
                  ConnectionInfo boConnectionInfo = boTableLogOnInfo.ConnectionInfo;
                  boConnectionInfo.UserID ="sa";
                  boConnectionInfo.Password="sa";
    // Parameter Country
    boParameterFields = CrystalReportViewer1.ParameterFieldInfo;
    boParameterField = boParameterFields["Country"];
    boParameterValues = boParameterField.CurrentValues;
    boParameterDiscreteValue = new ParameterDiscreteValue();
    boParameterDiscreteValue.Value = "Argentina";
    boParameterValues.Add(boParameterDiscreteValue);
    // Parameter Sales
    boParameterField = boParameterFields["Sales"];
    boParameterValues = boParameterField.CurrentValues;
    boParameterRangeValue = new ParameterRangeValue();
    boParameterRangeValue.StartValue = 25000;
    boParameterRangeValue.EndValue = 100000;
    boParameterValues.Add(boParameterRangeValue);
    // Parameter @percentage in subreport named SubReport
    boParameterField = boParameterFields["@percentage", "SubReport"];
    boParameterValues = boParameterField.CurrentValues;
    boParameterValues.Clear();
    boParameterDiscreteValue = new ParameterDiscreteValue();
    boParameterDiscreteValue.Value = 75;
    boParameterValues.Add(boParameterDiscreteValue);
    Please note that I have used Range and Discrete values as parameter in the above code.
    Also if you want to use the ReportDocument Object model then you can use:
    ReportDocument.SetParameterValues("Parameter name", value)
    Note:- This code is valid for only discrete values of Parameters.
    or
    boParameterFieldDefinitions = boReportDocument.DataDefinition.ParameterFields;
    boParameterFieldDefinition = boParameterFieldDefinitions["@percentage","SubReport"];
    boParameterValues = boParameterFieldDefinition.CurrentValues;
    For getting output in PDF you can export the report to PDF throug viewer or from code fro e.g.-
    boReportDocument.ExportToDisk(ExportFormatType.portabledocumentformat,"c:\\temp\\myrpt.pdf");
    To download sample code click [here|https://boc.sdn.sap.com/codesamples].
    You can also take help from [Dev library|https://boc.sdn.sap.com/node/7770]
    Hope this helps!!
    Regards,
    Amit

  • Crystal Report - Parameter issue (advanced dialog box)

    In our wpf .net application we view the crystal report, the report prompts for entering 2 parameter values i.e 2 dates and inturn these parameters will be used to generate the crystal report.
    The parameter panel on the left has a button (show advanced dialog box). This button should again invoke the same parameter prompt dialog box, so that the user can modify these parameters and the report can be regenerated.
    Issue is that when I click on the the button, this generates a null reference exception in the code. The call stack is -
    at CrystalDecisions.Windows.Forms.ParameterFieldInfo.get_isDCP()
       at CrystalDecisions.Windows.Forms.InteractiveParameterPanel.ShowAdvancedDialog(ParameterUnit pu)
       at CrystalDecisions.Windows.Forms.InteractiveParameterPanel.pu_ShowAdvancedDialog(Object sender, EventArgs e)
       at CrystalDecisions.Windows.Forms.ParameterUnit.OnShowAvancedDialog(EventArgs e)
       at CrystalDecisions.Windows.Forms.ParameterUnit.editControl_ShowAdvancedDialog(Object sender, EventArgs e)
       at CrystalDecisions.Windows.Forms.ParameterValueEditControl.OnShowAdvancedDialog(EventArgs e)
       at CrystalDecisions.Windows.Forms.ParameterValueEditControl.btnShowAdvancedDialog_Click(Object sender, EventArgs e)
       at System.Windows.Forms.Control.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnClick(EventArgs e)
       at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
       at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ButtonBase.WndProc(Message& m)
       at System.Windows.Forms.Button.WndProc(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    Please note, I used the .net reflector to debug the crystal report dll , the isDCP method looks like -
    public bool isDCP
          get
            return (this.Attributes.Contains("IsDCP") && ((bool) this.Attributes["IsDCP"]));
    Looks like the attributes value is null.
    Please let me know your comments. Am I missing something while getting the report in the frontend.
    I use crystal reports 2008 sp 2 (also note that my gac contains different version of crystal reports (cannot remove them - tried it) , with windows server 2003. I use web service with proxy to get the report from the local server.
    Note I also tried to create sample application in which I specify the local path to reports source , this works. However when I tried to use webservice, i was getting soap exception.
    Please let me know how solve above issue

    So you found the Report Design forum, if you looked down one more you would have found the SDK forum, SDK stands for Software Development Kit if you did not know.
    Or did you not mention you get the same error when you run this report in CR Designer, if so then you were in the right forum.
    Try Service Pack 3 also
    Move to the SDK forums.

  • Crystal report parameter problem while uploading in sap business one

    Hi
    All
    I designed a crystal report using
    stored procedure
    and
    Routemas user defined table
    in sql server with three parameter
    routname,from date,to date
    these parameters are from storedprocedure only but not created in report
    i set the parameter routename  as dynamic and i assigned the routename field from routemas table
    when i run the report in the parameter window it displays the list of routenames
    upto this is k but
    when i upload this report in sap business one 8.81 PL-05  and
    run this report in sap environment First it asks parameters there
    it didnt display the list of routnames
    when the parameter routname is set as static and assign some  routenames manually
    then it shows the list in sap environment
    Can any suggest the answer
    Edited by: madhu ganga raju on Oct 17, 2011 7:06 AM

    Hi Rhaul,
    i don't exactly know why this is a problem, but if your not on latest (881 p10) then upgrade and try again.
    Or as a workaround,
    try saveing from CR to SAP with the CR add-on. That usualy works better then the import.
    Regards,
    D

  • Crystal report parameter issue in SAP B1 8.8

    Hi Experts,
    We are facing following issue in Crystal report SAP B1 8.8 version
    Can not open crystal report without mentioning optional parameters.
    User is forced to mention all parameters
    User should allow to open crystal report by mentioning mandetory parameters
    if We set for the parameter value of field [Optional Prompt] to 'True' and then preview in SAP Business One, then although the dialogue is displayed,  click 'OK' without populating the parameter value, the report is run
    but in our case we are passing parameters through Stored Procedure and this option is block in report to do so.
    means that option available to make optional true / false is block and we are not able to do anything.
    Pls. provide solution
    Regards
    Kamlesh Vagal

    Julie.
    This change has already occurred?
    Thanks.

  • Crystal report parameter asking for DB login

    Hi All,
    I have created a crystal report in 2008, in my crystal reprot i have a command which gives me 2 columns and a stored proced which give me 6 columns and then i joined them in link tab.
    Now in my report i have created a parameter using one the column from command. The data source for both are same database but diffrent tables.
    When i exported the report to enterprise and try to schedle it, for parameter option when i try to edit the parameter it promps me for database logon every time (i.e. every time i edit parameter it promps for Db logon) and i have already provide DB creds in database information page.
    BOXI R3.1 with no FP.
    please suggest on this.
    Thanks,
    Nimesh.

    In CMC, what option did you select on the Database Configuration section of the report properties?
    If it is " Prompt users for database credentials", then it'll prompt users for credentials whenever the report is run.
    If it is set to " use same credentials as above" (not exact wording), then it don't ask for credentials.

  • Crystal Report Parameter not showing in IPAD

    Hi All, 
    I create simple Purchase register report  by using Crystal report with date parameter
    My problem is that report not working on Ipad and its showing blank space .  
    The report working fine on ipad when i run report without parameter.
    Kindly tell me solution.

    Hi Rajesh,
    I am new to this Mobility..What is integration service upgrade..
    Currently we are using
    SMP Legacy connection typ1.
    BO version is 4.1 SP02.
    App is 6.0.6
    Please advise on this issue...and the steps which you have used..

  • SAP B1 suspends when Crystal Report parameter screen appears

    Crystal Report Add On is installed to my SAP B1 2007B (patch 10) system.
    When I run a CR report, a parameter screen appears for me to enter required parameter values. The system seems suspended to all other B1 users until I submitted the parameter values.
    Any idea of why this happens? And how to prevent this?
    Thank you.

    Hi,
    Is the addon download from SDN or developed by yourself?
    If it is developed by yourself, please make sure to open the CR report in another thread.
    You got to separate B1 Event Routine and Window Form Event Routine in different Thread.
    Otherwise one will be hung.
    Regards, Yatsea

  • 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

  • Crystal Report parameter creating pages of lists to choose from

    Hi All,
    We have created a crystal report to produce statements for customers. We have added a dynamic parameter so the user can choose which BP Codes they want to run the report for, but the report creates several pages of codes, so, the user has to look through the pages to find the code to select.
    Is there any way to stop the report from creating these pages? I have been unable to find any mention of these in the online help files.
    Thanks

    Hi Prem,,
    I have created a crystal report which contains a parameter to choose a BP Code to run it for.
    The parameter is a dynamic one, so it fetches the list from the database, however, instead of opening one drop down box to scroll & choose the BP, it creates 5 pages of lists, so the user first has to guess which page the BP might be on, then scroll through the page to find the code.
    I need to know if there is a way to change this behaviour in crystal reports.
    Thanks

  • Crystal report Parameter binding issue with Liveoffice

    Hello,
    I have created a Crystal report on top of BW query. In crystal report when parameter is set to null the report gets all data from BW query.
    On inserting the same Crystal report to Live office document on binding the parameter i get the data for selected value for parameter but i am not able to set the parameter to null to get all the data from BW queries.
    Please help!
    Regards,
    Rahul Doshi

    Hi,
    I was able to solve the issue with the below code. I have added a parameter value as <Not Specifed> in paramter.
    if {?parameter1}='<Not Specified>' Then like '*' else
    ={?Parameter1} and
    if {?Parameter2}='<Not Specified>' Then like '*' else
    ={?Parameter2} and
    if {?Parameter3}='<Not Specified>' Then like '*' else
    ={?Parameter3} and
    if {?Parameter4}='<Not Specified>' Then like '*' else
    ={?Parameter4}
    This code works perfectly fine in crystal report. But when i bind the parameter with excel in Live office it gives me below error.
    Parameter has no value.
    Details: errorKind
    Error in File {7D9B961E-ADB9-4292-9DDE-A8D11B94D78E}.rpt:
    Error in formula  Record Selection:
    'if {?Sales Office}='<Not Specified>' Then {0SD_C03_ZQRY_0SD_C03_0011_BOBJ.D[0SALES_OFF]K} like '*' else
    Parameter has no value.
    Details: errorKind (LO 26603)  (6603)
    Please help.
    Regards,
    Rahul Doshi

  • Report parameter input

    When I try to run a report which has parameter inputs for the condition, i need to type the value inside the input text box. But instead of input text box, how can I have a dropdown list containing a query result for me to select from for the values of parameters.
    Thanks very much for any help!
    Alvin

    In the Admin Edition define an ITEM Class List of Values

  • 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 parameter problem

    Dear experts,
    I created a crystal report to display a bill of material.
    To select the bill of material I created a paremeter ItemCode @SELECT * FROM OITM INNER JOIN OITT ON ItemCode = Code.
    Unfortunatly SAP shows ALL Items from The Item Master instead of showing only Items that are the Owner of a Bill of Material.
    Is there a way to solve this issue?
    Thanks
    Rüdiger
    Edited by: Rüdiger Frank on Apr 18, 2011 11:36 AM

    Hi,
    Try this
    ItemCode @SELECT * FROM OITT
    OR
    ItemCode @SELECT * FROM OITM INNER JOIN OITT ON OITM.ItemCode = OITT.Code
    Regards,
    Bala

Maybe you are looking for

  • How can i pass multiple values by a single variable to EXECUTE IMMEDIATE

    Hi All, I want to pass multiple values for where condition for execute immediate. Something Like this:- bold Declare v_cond varchar(1000); Begin v_cond := '''INR','USD'''; --(OPTION 1) v_cond := 'INR,USD'; --(OPTION 2) EXECUTE IMMEDIATE 'Delete from

  • HT1325 tried everything my puchased songs won't play..

    I need someone to help me out this has been bothering me or how can I get my refund back this crazy!

  • Im having problems with my itunes recognising my ipod

    I downloaded a new version of itunes onto a new laptop, and connected an old ipod that was showing a smiley face pic.  The ipod was about 6 years and i dropped it on the floor .  anyway after about two weeks or researching a solution (and ignoring al

  • Apex 3.0 Html Editor Standard item - Add feature.

    Hi, Can I customize your new Html Editor Standard field? I would like to add some buttons that will pop-up window. In futur, do you know if you will have package or something to customize the item ? Thanks

  • Cm2520 won't print from OS X leopard

    We have a MFP, oce cm2520 which uses a security feature so that each job requires a security code to entered and the jobs can be tallied according the user. Using the Generic 25C-1 driver I am able to connect with a G4 Macbook with OS X 10.4.11 I set