USP_DATAFORMTEMPLATE_PRELOAD_CLEARMGCLAIMPROCESS
The load procedure used by the edit dataform template "Clear Matching Gift Claims Process Add Form"
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@REVENUERECORDTYPE | uniqueidentifier | INOUT | Revenue record type |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_PRELOAD_CLEARMGCLAIMPROCESS
(
@REVENUERECORDTYPE uniqueidentifier = null output
)
as
set nocount on;
select @REVENUERECORDTYPE = ID
from dbo.RECORDTYPE
where upper(NAME) = 'REVENUE';
return 0;