Link to home
Start Free TrialLog in
Avatar of Rocking
Rocking

asked on

Passing parameters in formula field to main report, Java, Crystal Reports , crjava-runtime_12.2.215

I am unable to pass the value in the formula field in the crystal report though java.
there is a class with the name "FormulaFieldController" but there is no method in that by which we can set the values in the formula field.

Since the report is already created with few formula fields and are calculated on the basis of the parameter passed.


Please teach me how to send the value in the formula field?

Source code is given below

<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>

<%@page import="com.crystaldecisions.reports.sdk.*"%>
<%@page import="com.crystaldecisions.sdk.occa.report.lib.*"%>
<%@page import="com.crystaldecisions.sdk.occa.report.data.*"%>
<%@page import="com.crystaldecisions.report.web.viewer.*"%>
<%@page import="com.crystaldecisions.reports.sdk.*"%>

<%
      String REPORT_NAME = "Report1.rpt";
      //Refer to the Viewers SDK in the Java Developer Documentation for more information on using the CrystalReportViewer
      //API.
      ReportClientDocument reportClientDoc = new ReportClientDocument();
      reportClientDoc.open(REPORT_NAME, 0);
      
      CrystalReportViewer viewer = new CrystalReportViewer();
      viewer.setOwnPage(true);
      viewer.setOwnForm(true);
      viewer.setPrintMode(CrPrintMode.ACTIVEX);
      session.setAttribute("reportSource",
                  reportClientDoc.getReportSource());
      Object reportSource = session.getAttribute("reportSource");
      

            
      viewer.setReportSource(reportSource);
      //Render the report.
      viewer.processHttpRequest(request, response, getServletConfig()
                  .getServletContext(), null);
%>
Avatar of vasto
vasto
Flag of United States of America image

Create a parameter and use it inside the formula. By setting the parameter value you can change the behavior and the result of the formula.
Avatar of Mike McCracken
Mike McCracken

Why do you think you need to change the formula?

mlmcc
Avatar of Rocking

ASKER

@mlmcc
Why do you think you need to change the formula?

I don't need to change the formula,what i need is formula value is displayed as it is passed from the screen i.e jsp file.
Like for instance we need to show the title of the application which depends upon the locale of the client.There is a formulate field with the name "@title",just need to set the value in this field.


@vasto
Create a parameter and use it inside the formula.
I cannot modify the report layout nor added parameter in the same.

Reg parameter i am using on filed whose value i set though java code,even though i am setting the default value,the prompt message always appears asking for the value.
How can i avoid such prompt in cr viewer?
TO avoid the parameter prompt you have to pass the values from the application.  
I don't see the code that is setting the values

Default values are just that default and are displayed as the default value in the parameter screen.  They cab be accepted or changed by the user.

There may be an option on the call to the viewer to disable the prompts.

In VB6 methods you can set the formulas with a statement like

  crRptObj.Formulas(1) = " 'Text You Want to see' "

In general if you want a formula to show a value passed in by the user it is easier to use a parameter and just display it.

mlmcc
Avatar of Rocking

ASKER

In the view i couldn't find any such method to block the prompt message.
I am sending the parameters using the below code

ParameterFieldController paramController = reportClientDoc.getDataDefController().getParameterFieldController();
paramController.setCurrentValue("","id","20");


Yes your are correct,in vb it is possible to set the value of the formula field through code.

In general if you want a formula to show a value passed in by the user it is easier to use a
parameter and just display it.

Since i cannot modify the code therefore i need to send the value using the formula field.
Please let me know if it is possible.
Avatar of Rocking

ASKER

I have already gone through the above link before and found the sample for creating the formula field sample code.

But what i need is to pass to set value in the existing formula field in the report?

With the help of below code i am able to get the object of the formula field from the report file

 DataDefController dataDefController = clientDoc.getDataDefController();
 IField field = dataDefController.findFieldByFormulaForm( "{table.field}" );

As per the above code it returns the object of "IField ".

But unable to find out how to set the text value?
him121, I don't know how is in Java but in .NET ReportDocument provides a method SetParameterValue. If you set the parameter values correctly the parameter dialog  will be not shown.
My advice is to resolve your problem with the parameters and use a parameter value to set the report behaviour instead of trying to change a formula.
Try something like

 field  =  "5"

What do you want to set the formula to?

mlmcc
ASKER CERTIFIED SOLUTION
Avatar of Rocking
Rocking

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Rocking

ASKER

No reply on this question