What is the attribute/element (such as ValuesTypes, ParameterValuesType..) I should refer to Query Parameter - Value according to the RDL XML Schema Definition as the following example?
<QueryParameters>
<QueryParameter Name="@.CompanyName">
<Value>=Parameters!CompanyName.Value</Value>
</QueryParameter>
</QueryParameters>
Thanks a lot.
Where exactly do you want to refer to the QueryParameter?
I'm not really sure what you are asking. However, if you are wondering where to define the attribute/element of the parameter. You can use this as an example. It is a parameter I created for filtering by Year.
<ReportParameter Name="WHSEDateDimCalendarYear">
<DataType>Integer</DataType>
<Prompt>CalendarYear</Prompt>
<ValidValues>
<DataSetReference>
<DataSetName>WHSEDateDimCalendarYear</DataSetName>
<ValueField>ParameterValue</ValueField>
<LabelField>ParameterCaptionIndented</LabelField>
</DataSetReference>
</ValidValues>
</ReportParameter>
|||Thanks for reply to my post. What I am looking for, is the type of Attribute/Element I should refer to, for QueryParamater -Value. In your post, for example, your ValueField (attribute? or element? i'm not sure about it well) is refer to ItemChoiceType31.ValueField, and DatasetName is refer to ItemChoiceType31.DatasetName according to RDL Report Definition XML Schema. I tried to look for the same as for the QueryParameter -Value, cause there are so many Value type defined in the Schema that I did not know what type of Value i should refer to it.