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