USP_DATAFORMTEMPLATE_ADD_LOCATION_PRELOAD

The load procedure used by the edit dataform template "Event Location Add Form"

Parameters

Parameter Parameter Type Mode Description
@COUNTRYID uniqueidentifier INOUT Country

Definition

Copy


                    CREATE procedure dbo.USP_DATAFORMTEMPLATE_ADD_LOCATION_PRELOAD(
                        @COUNTRYID uniqueidentifier = null output
                    ) as
                        set nocount on;
                        exec @COUNTRYID = dbo.UFN_COUNTRY_GETDEFAULT;
                        return 0;