USP_REVENUELIFECYCLEOPTIONS_EDIT

Procedure use to update revenue lifecycle options.

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN
@CONSIDERRECOGNITION bit IN

Definition

Copy


CREATE procedure dbo.USP_REVENUELIFECYCLEOPTIONS_EDIT 
(
    @ID uniqueidentifier,
    @CONSIDERRECOGNITION bit
)
with execute as owner
as
begin
    update
        dbo.REVENUELIFECYCLECRITERIA
    set
        CONSIDERRECOGNITION = @CONSIDERRECOGNITION
    where
        ID = @ID;
end