
Hi All,
I have created a form with temporary table as a data source , I am populating the data through X++ code.
What ever the data filled in a grid I want to shown in a SSRS report , how can I pass that data source to the RDP class Or query based reports.
Could anyone guide me , I am looking from a long time
thanks
Veer
*This post is locked for comments
I have the same question (0)Look for any box report that uses the SrsTmpTblMarshaller class. Basically you call the class to store your temp table as a container into an actual database table, and then pass the record Id of that record as a parameter in your data contract. Then the data provider fetches that record back, unpacks the temporary table, and either consumes it (uses the temp table as a form of parameter for building other data) or in some cases just passes it directly to the report as raw data.
msdn.microsoft.com/.../srstmptblmarshaller.aspx
Seeing an existing report that uses it makes a lot more sense than trying to read about it, I find.