Dear Gents,
I am trying to Extend the contract class of the Customer Account Statement report in order to add a new Parameter ( NoYes Parameter ), i am using the following code:
[ExtensionOf(ClassStr(CustAccountStatementExtContract)) ]
final class CustAccountStatementExtContract_Extension
{
private NoYes IncludeVendTrans;
[DataMemberAttribute("IncludeVendTrans")]
public NoYes parmIncludeVendTrans(NoYes _IncludeVendTrans = IncludeVendTrans)
{
IncludeVendTrans = _IncludeVendTrans;
return IncludeVendTrans;
}
}
i am being able to call the parmIncludeVendTrans in the DP extension class, but i am not able to see the parameter on the report dialog or in the parameter group of the report.
any Idea why it is not appearing ? Am i missing something ? Really Appreciate your help guys.
Thank you For Your Support.