Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :
Dynamics 365 Community / Blogs / DaxGeek / Define a Method to Return t...

Define a Method to Return the Data to Reporting Services

Hossein.K Profile Picture Hossein.K 6,646
1. Right-click SrsRdpSampleClass, point to New, and then clickMethod.

2. Edit the method so that it contains the following code.


1
2
3
4
5
6
[SRSReportDataSetAttribute("TmpCust")]
public TmpCustTableSample getTmpCustTable()
{
select * from tmpCust;
return tmpCust;
}

3. Save the method and close the editor.


Best Regards,
Hossein Karimi

Comments

*This post is locked for comments