USP_DATAFORMTEMPLATE_EDIT_DATATUNEUP_3

The save procedure used by the edit dataform template "Data Tune-Up Edit Form 2".

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN The input ID parameter indicating the ID of the record being edited.
@CHANGEAGENTID uniqueidentifier IN Input parameter indicating the ID of the change agent invoking the procedure.
@ADDRESSFORMATTINGCODE tinyint IN Address formatting
@DONOTABBREVIATE bit IN Do not abbreviate address elements according to USPS format
@CAPITALIZE bit IN Capitalize the entire address

Definition

Copy


CREATE procedure USP_DATAFORMTEMPLATE_EDIT_DATATUNEUP_3
(
    @ID uniqueidentifier,
    @CHANGEAGENTID uniqueidentifier = null,
    @ADDRESSFORMATTINGCODE tinyint,
    @DONOTABBREVIATE bit,
    @CAPITALIZE bit
)

as
  set nocount on;

    declare @FTPCONNECTIONCODE tinyint;

  exec dbo.USP_DATAFORMTEMPLATE_EDITLOAD_DATATUNEUP_2
        @ID = @ID,
        @FTPCONNECTIONCODE = @FTPCONNECTIONCODE output

  exec dbo.USP_DATAFORMTEMPLATE_EDIT_DATATUNEUP_4
        @ID,
        @CHANGEAGENTID,
        @ADDRESSFORMATTINGCODE,
        @DONOTABBREVIATE,
        @CAPITALIZE,
        @FTPCONNECTIONCODE

  return 0;