USP_DATAFORMTEMPLATE_EDIT_ALTERNATESTUDENTID

The save procedure used by the edit dataform template "Alternate Student ID Edit Form".

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN The input ID parameter indicating the ID of the record being edited.
@CHANGEAGENTID uniqueidentifier IN Input parameter indicating the ID of the change agent invoking the procedure.
@ALTERNATELOOKUPIDTYPECODEID uniqueidentifier IN Type
@ALTERNATELOOKUPID nvarchar(100) IN Alternate Student ID

Definition

Copy


          CREATE procedure dbo.USP_DATAFORMTEMPLATE_EDIT_ALTERNATESTUDENTID
          (
              @ID uniqueidentifier,
              @CHANGEAGENTID uniqueidentifier = null,
              @ALTERNATELOOKUPIDTYPECODEID uniqueidentifier,
              @ALTERNATELOOKUPID nvarchar(100)
          ) as
              set nocount on;

            EXEC USP_DATAFORMTEMPLATE_EDIT_ALTERNATELOOKUPID @ID, @CHANGEAGENTID, @ALTERNATELOOKUPIDTYPECODEID, @ALTERNATELOOKUPID

              return 0;