USP_DATAFORMTEMPLATE_PRELOAD_MATCHINGGIFTCONDITION_2
The load procedure used by the edit dataform template "Matching Gift Condition Add Form 2"
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ORGANIZATIONID | 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_PRELOAD_MATCHINGGIFTCONDITION_2
(
@ORGANIZATIONID uniqueidentifier,
@CURRENTAPPUSERID uniqueidentifier,
@BASECURRENCYID uniqueidentifier = null output
) as begin
set nocount on;
set @BASECURRENCYID = dbo.UFN_APPUSER_GETBASECURRENCY(@CURRENTAPPUSERID)
return 0;
end