USP_DATAFORMTEMPLATE_ADD_PRELOAD_DONORCHALLENGEENCUMBERBUSINESS
The load procedure used by the edit dataform template "Update Donor Challenge Business Process Add Form"
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@CURRENTAPPUSERID | uniqueidentifier | IN | Input parameter indicating the ID of the current user. |
@SITEID | uniqueidentifier | INOUT | Site |
Definition
Copy
create procedure dbo.USP_DATAFORMTEMPLATE_ADD_PRELOAD_DONORCHALLENGEENCUMBERBUSINESS
(
@CURRENTAPPUSERID uniqueidentifier,
@SITEID uniqueidentifier = null output
)
as
set nocount on;
set @SITEID = dbo.UFN_APPUSER_DEFAULTSITEFORUSER(@CURRENTAPPUSERID);