USP_ADD_DISBURSEMENTPROCESSTEMPLATE_PRELOAD

The load procedure used by the edit dataform template "Disbursement Process Template Add Data Form"

Parameters

Parameter Parameter Type Mode Description
@CONTEXTID tinyint IN Input parameter indicating the context ID for the record being added.
@TYPECODE tinyint INOUT

Definition

Copy


CREATE procedure dbo.USP_ADD_DISBURSEMENTPROCESSTEMPLATE_PRELOAD
(
  @CONTEXTID tinyint,
  @TYPECODE tinyint = null output
)
as
  set nocount on;
  set @TYPECODE = @CONTEXTID;