Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » BIRT » report parameter not set(org.eclipse.birt.report.engine.api.impl.ParameterValidationException: Required parameter is not set)
report parameter not set [message #754134] Tue, 01 November 2011 00:31
Missing name Mising name is currently offline Missing name Mising nameFriend
Messages: 11
Registered: August 2011
Junior Member
I am getting the above error even though I set the parameters from my jsf page.
Any help is appreciated.


my jsf page:


<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
xmlns:jsfbirt="http://jsf4birt.components" xmlns:h="http://java.sun.com/jsf/html">
<af:document title="FacilitiesOpenByStateForStateUsers.jsf" id="d1">
<af:form id="f1">
<af:panelStretchLayout id="psl1">
<f:facet name="center">
<af:panelGroupLayout layout="scroll">
<!-- id="af_one_column_stretched" -->
<!--af:panelGroupLayout id="mainGroup">
<af:panelFormLayout id="titleForm">
<af:inputText label="Title" id="titleInput" value="#{pageFlowScope.title}"/>
<f:facet name="footer">
<af:group id="g1">
<af:commandButton text="Submit" id="submitButton"/>
</af:group>
</f:facet>
</af:panelFormLayout-->
<!--af:panelGroupLayout id="reportGroup" partialTriggers="titleInput"-->
<jsfbirt:birtWrapper id="facilitiesOpenByStateForStateUsers" reportDesign="/reports/facilitiesOpenByStateForStateUsers.rptdesign">
<f:param value="#{reportsBean.fromDate}" name="fromDate" />
<f:param value="#{reportsBean.toDate}" name="toDate"/>
<f:param value="#{reportsBean.stateCode}" name="stateCode"/>
</jsfbirt:birtWrapper>
<!--/af:panelGroupLayout-->
<!--/af:panelGroupLayout-->
<!--/f:facet-->
</af:panelGroupLayout>
</f:facet>
</af:panelStretchLayout>
<af:resource type="javascript">
function showPDFReport(actionEvent) {
actionEvent.cancel();
JSF4Actuate.pdf('facilitiesOpenByStateForStateUsers');
}

function showMSWordReport(actionEvent) {
actionEvent.cancel();
JSF4Actuate.doc('facilitiesOpenByStateForStateUsers');
}
function showExcelReport(actionEvent) {
actionEvent.cancel();
JSF4Actuate.xls('facilitiesOpenByStateForStateUsers');
}
</af:resource>
<af:toolbar id="reportToolBar">
<af:commandToolbarButton text="PDF" id="pdfReport">
<af:clientListener type="action" method="showPDFReport"/>
</af:commandToolbarButton>
<af:commandToolbarButton text="MSWord" id="MSWordReport">
<af:clientListener type="action" method="showMSWordReport"/>
</af:commandToolbarButton>
<af:commandToolbarButton text="Excel" id="ExcelReport">
<af:clientListener type="action" method="showExcelReport"/>
</af:commandToolbarButton>
<af:commandToolbarButton text="Cancel" id="cancel" action="return"
partialSubmit="true" immediate="true">
</af:commandToolbarButton>
</af:toolbar>
</af:form>
</af:document>
</f:view>
Previous Topic:Dynamically sort a crosstable at render time
Next Topic:How to reference more than one row of a dataset in a dynamic text element
Goto Forum:
  


Current Time: Fri Sep 20 23:12:36 GMT 2024

Powered by FUDForum. Page generated in 0.03438 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top