reporting services - Split report parameters in stored procedure -
i work crm 2015. when try create report multiply-values parameter, can not split on list id. tried many ways like:
alter procedure [dbo].[pn_rep_loadresources] (@stage nvarchar(1000)) where(stage.new_stageid in (select value dbo.fnsplit(@stage,','))) where(stage.new_stageid in (select value dbo.split(@stage,','))) where(stage.new_stageid in (select value dbo.split(@stage,','))) where(stage.fn_getguidsfromstring in (select value dbo.split(@stage)))
and other, nothing works. have problem this?
Comments
Post a Comment