USP_KPI_MARKETING_SEGMENT_RESPONSES
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@VALUE | int | INOUT | |
@ASOFDATE | datetime | IN | |
@SEGMENTID | uniqueidentifier | IN | |
@SELECTIONID | uniqueidentifier | IN | |
@OUTPUTFORMAT | tinyint | IN |
Definition
Copy
CREATE procedure dbo.[USP_KPI_MARKETING_SEGMENT_RESPONSES]
(
@VALUE int output,
@ASOFDATE datetime,
@SEGMENTID uniqueidentifier = null,
@SELECTIONID uniqueidentifier = null,
@OUTPUTFORMAT tinyint
)
as
set nocount on;
declare @r int;
exec @r = dbo.[USP_KPI_MARKETING_SEGMENT_RESPONSES_INTERNAL_WITHIDSET] @SELECTIONID, @ASOFDATE, @SEGMENTID, @OUTPUTFORMAT, @VALUE output;
return @r;