USP_DATAFORMTEMPLATE_VIEW_EDUCATIONALCONFIGURATION

The load procedure used by the view dataform template "Educational Configuration View Form"

Parameters

Parameter Parameter Type Mode Description
@USEACADEMICCATALOG bit INOUT Use academic catalog
@DATALOADED bit INOUT Output parameter indicating whether or not data was actually loaded.

Definition

Copy


                CREATE procedure dbo.USP_DATAFORMTEMPLATE_VIEW_EDUCATIONALCONFIGURATION (
                    @USEACADEMICCATALOG bit = null output,
                    @DATALOADED bit = 0 output
                ) as
                    set nocount on;

                    set @DATALOADED = 1;

                    select top 1
                        @USEACADEMICCATALOG = USEACADEMICCATALOG
                    from
                        dbo.EDUCATIONALCONFIGURATION;

                    return 0;