
Hi,
I have added some code to add the financial dimension parameter to a SSRS report in AX365, but I get the following error when trying to run the report: Error executing code: FormBuildContainerControl object does not have method 'label'.
I amended the contract class and added the following:
[
DataMemberAttribute(identifierStr(DefaultDimension)),
SysOperationHelpTextAttribute(literalStr("Financial dimension")),
SysOperationLabelAttribute(literalStr("Financial dimension"))
]
public LedgerDefaultDimensionValueSet parmDefaultDimension(LedgerDefaultDimensionValueSet _sysDefaultDimension = DefaultDimension)
{
DefaultDimension = _sysDefaultDimension;
return DefaultDimension;
}
Does anyone know why this error is occurring?
Thanks
KR Norm