USP_DATAFORMTEMPLATE_PRELOAD_WPPHILANTHROPICGIFT
The load procedure used by the edit dataform template "WealthPoint Philanthropic Gift Add Form 2"
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @WEALTHID | uniqueidentifier | IN | Input parameter indicating the context ID for the record being added. |
| @ACCOUNTTYPECODE | smallint | INOUT | Account type code |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_PRELOAD_WPPHILANTHROPICGIFT(
@WEALTHID uniqueidentifier,
@ACCOUNTTYPECODE smallint = null output
) as begin
select @ACCOUNTTYPECODE = ACCOUNTTYPECODE from dbo.WEALTHPOINTCONFIGURATION;
return 0;
end