USP_DATAFORMTEMPLATE_VIEW_MEMBERSHIPDUESBATCHFORM_PRELOAD
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | |
@DATALOADED | bit | INOUT | |
@BASECURRENCYID | uniqueidentifier | INOUT | |
@PDACCOUNTSYSTEMID | uniqueidentifier | INOUT | |
@SHOWACCOUNTSYSTEM | bit | INOUT |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_VIEW_MEMBERSHIPDUESBATCHFORM_PRELOAD
(
@ID uniqueidentifier
, @DATALOADED bit = 0 output
, @BASECURRENCYID uniqueidentifier = null output
, @PDACCOUNTSYSTEMID uniqueidentifier = null output
, @SHOWACCOUNTSYSTEM bit = null output
)
as
set nocount on;
set @DATALOADED = 1;
exec USP_DATAFORMTEMPLATE_ADD_MEMBERSHIPDUES_PRELOAD
@BASECURRENCYID = @BASECURRENCYID output
, @PDACCOUNTSYSTEMID = @PDACCOUNTSYSTEMID output
, @SHOWACCOUNTSYSTEM = @SHOWACCOUNTSYSTEM output
, @CURRENTAPPUSERID = @ID;
return 0;