USP_DATAFORMTEMPLATE_ADD_FUNDRAISINGGOAL_PRELOAD
The load procedure used by the edit dataform template "Fundraising Goal Add Data Form"
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @GROUPID | 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. |
| @BASECURRENCYID | uniqueidentifier | INOUT | Currency |
Definition
Copy
create procedure dbo.USP_DATAFORMTEMPLATE_ADD_FUNDRAISINGGOAL_PRELOAD
(
@GROUPID uniqueidentifier,
@CURRENTAPPUSERID uniqueidentifier = null,
@BASECURRENCYID uniqueidentifier = null output
)
as
begin
set nocount on;
set @BASECURRENCYID = dbo.UFN_APPUSER_GETBASECURRENCY(@CURRENTAPPUSERID);
return 0;
end