Is it possible to add two dataviews to a ds parameter?
I’m using Ice.RPT.BAQReportSvc → GetNewBAQReportParam to get a BAQReportParam view and a StyleList view returned. To print the label I want to use BAQReport.TransformAndSubmit. Here i need to give parameter ds which includes both view. Is it possible to build a ds parameter and add both views? If yes, how would you guys do it?
Parameter path = “ds” if that is the literal name of the dataset the GetNewBAQReportParam expects
Parameter Name = the DataTable that will go inside the ds
View Name = the DataView that the data will come from within App Studio
You may add multiple sets of these to the rest-kinetic object to build out a ds with multiple tables.
Do not click “Dataset” - if you do, hit the trash-can and re-add, there is a bug.
Thanks Gabe, I was constantly trying to fix it in the response parameters from the GetNewBAQReportParam, but looking at your screenshot using request parameters I was directly triggered to use it at the TransformAndSubmit. Thanks a lot, got it working now!