SSRS report using contract class
SSRS report Custom SSRS report development: Requirement: Create following report design using "Customer number" as parameter. Used object: 1. Temp table (if required) 2. Contract class (if required) 3. DP class 4. Controller class 5. Report design 6. Action menu item Temp table: If report based on custom table, create new temp table(preferably used as inMemory type) otherwise create extension of standard table and add the required extendable field. Contract class: Create contract class if report contains any parameter to run the report. In the following example taken customer number as report parameter [DataContractAttribute] public class XXX_CustomerAgingContract { AccountNum accountNum; [DataMemberAttribute("Customer number")] public AccountNum parmCustomerNum(accountNum _accountNum = accountNum) ...