USP_KPI_MARKETING_MAILING_RESPONSES

Parameters

Parameter Parameter Type Mode Description
@VALUE int INOUT
@ASOFDATE datetime IN
@SEGMENTATIONID uniqueidentifier IN
@SELECTIONID uniqueidentifier IN
@OUTPUTFORMAT tinyint IN

Definition

Copy


CREATE procedure dbo.[USP_KPI_MARKETING_MAILING_RESPONSES]
(
  @VALUE int output,
  @ASOFDATE datetime,
  @SEGMENTATIONID uniqueidentifier = null,
  @SELECTIONID uniqueidentifier = null,
  @OUTPUTFORMAT tinyint
)
as
  set nocount on;

  declare @r int;

  exec @r = dbo.[USP_KPI_MARKETING_MAILING_RESPONSES_INTERNAL_WITHIDSET] @SELECTIONID, @ASOFDATE, @SEGMENTATIONID, @OUTPUTFORMAT, @VALUE output;

  return @r;