USP_DATAFORMTEMPLATE_ADD_PROSPECTMANAGERREQUEST_PRELOAD
The load procedure used by the edit dataform template "Prospect Manager Request Add Form"
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @FUNDRAISERID | uniqueidentifier | IN | Input parameter indicating the context ID for the record being added. |
| @CURRENTAPPUSERID | uniqueidentifier | IN | Input parameter indicating the ID of the current user. |
| @STARTDATE | datetime | INOUT | Start date |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_ADD_PROSPECTMANAGERREQUEST_PRELOAD (
@FUNDRAISERID uniqueidentifier,
@CURRENTAPPUSERID uniqueidentifier,
@STARTDATE datetime = null output
) as
set nocount on;
set @STARTDATE = getdate();
return 0;