Hi Everyone,
I have recently started SSRS report development using x++ after suggestion from some senior AX community members.
I need a lookup parameter which shows the list of Assetid from Assettable so that the report can be filtered.
Below is my contract class code :
1. [DataContractAttribute]
class EA_AssestableContract_UI
{
AssetId assetId;
}
2. [DataMemberAttribute("AssetId")]
public AssetId parmAssetId(AssetId _assetId=assetId)
{
assetid=_assetid;
return assetid ;
}
currently it is showing input assetid number to filter the report :

thank you.
*This post is locked for comments
I have the same question (0)