Hi Viewers, Below is the code sample for Multi-select lookup in the SSRS report by UI builder class. In this example, I am using UI builder class - ItemListUIBuilder Contact class - ItemListContract DP class - ItemListDP In the contract class add a list-type parameter, as shown below. Contract class must decorated with attributes as shown below. give the ULBuilder class name to SysOperationContractProcessingAttribute [ DataContractAttribute, SysOperationContractProcessingAttribute(classStr(ItemListUIBuilder))] class ItemListContract { List ItemIDList; [ DataMemberAttribute, AifCollectionTypeAttribute("Item Id", Types::String) ] public List parmItemIdList(List _ItemIDList = ItemIDList) { ItemIDList = _ItemIDList; return ItemIDLis...
Comments
Post a Comment