USP_DATAFORMTEMPLATE_ADD_FINANCIALINSTITUTION_PRELOAD
The load procedure used by the edit dataform template "Financial Institution Add Form"
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@COUNTRYID | uniqueidentifier | INOUT | Country |
@BANKINGSYSTEMID | uniqueidentifier | INOUT |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_ADD_FINANCIALINSTITUTION_PRELOAD
(
@COUNTRYID uniqueidentifier = null output,
@BANKINGSYSTEMID uniqueidentifier = null output
)
as
set nocount on;
exec @COUNTRYID = dbo.UFN_COUNTRY_GETDEFAULT;
exec dbo.USP_BANKINGSYSTEM_GETDEFAULT @DEFAULTBANKINGSYSTEMID = @BANKINGSYSTEMID output;
return 0;