USP_MKTPOSTALTEMPLATE_GETOPTIONS
Returns the options specified for a postal template.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@POSTALTEMPLATEID | uniqueidentifier | IN |
Definition
Copy
create procedure dbo.[USP_MKTPOSTALTEMPLATE_GETOPTIONS]
(
@POSTALTEMPLATEID uniqueidentifier = null
)
as
set nocount on;
select
[PRESORTOPTIONS],
[VALIDATEADDRESSES]
from dbo.[MKTPOSTALTEMPLATE]
where [ID] = @POSTALTEMPLATEID;
return 0;