USP_GRADELEVEL_MOVEDOWN

Executes the "Grade level move down" record operation.

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN Input parameter indicating the ID of the record being deleted.
@CHANGEAGENTID uniqueidentifier IN Input parameter indicating the ID of the change agent invoking the delete.

Definition

Copy


          CREATE procedure dbo.USP_GRADELEVEL_MOVEDOWN
          (
              @ID uniqueidentifier,
              @CHANGEAGENTID uniqueidentifier
          )
          as begin
              -- use the common move routine

              exec USP_GRADELEVEL_MOVE @ID, 1, @CHANGEAGENTID
              return 0;

          end