USP_DATAFORMTEMPLATE_VIEW_SESSION_GETTERMS

The load procedure used by the view dataform template "Session terms view"

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN The input ID parameter used to load the fields defined on the form.
@DATALOADED bit INOUT Output parameter indicating whether or not data was actually loaded.
@SESSIONTERMS xml INOUT Terms

Definition

Copy


                CREATE procedure dbo.USP_DATAFORMTEMPLATE_VIEW_SESSION_GETTERMS
                (
                    @ID uniqueidentifier,
                    @DATALOADED bit = 0 output,
                    @SESSIONTERMS xml = null output
                )
                as
                    set nocount on

                    set @DATALOADED = 1

                    select @SESSIONTERMS = dbo.UFN_SESSION_GETTERMS_TOITEMLISTXML(@ID)

                    return 0