USP_MKTPOSTALTEMPLATE_LOAD

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


create procedure dbo.[USP_MKTPOSTALTEMPLATE_LOAD]
(
  @ID uniqueidentifier = null
)
as
  set nocount on;

  select
    [NAME],
    [VALIDATEADDRESSES],
    [PRESORTOPTIONSFILENAME],
    [PRESORTOPTIONS],
    [TSLONG]
  from dbo.[MKTPOSTALTEMPLATE]
  where [ID] = @ID;

  return 0;