USP_DATAFORMTEMPLATE_ADD_TERM_PRELOAD

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

Parameters

Parameter Parameter Type Mode Description
@SESSIONID uniqueidentifier IN Input parameter indicating the context ID for the record being added.
@TIMETABLEID uniqueidentifier INOUT

Definition

Copy


CREATE procedure dbo.USP_DATAFORMTEMPLATE_ADD_TERM_PRELOAD
(
    @SESSIONID uniqueidentifier,
    @TIMETABLEID uniqueidentifier = null output
)
as

set nocount on

select 
    @TIMETABLEID = TIMETABLEID
from dbo.SESSION
where SESSION.ID = @SESSIONID

return 0