USP_RECORDOPERATION_SOLICITCODEMARKACTIVEPROMPT
Provides the prompt for the "Solicit Code: Mark Active" record operation.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | Represents information to be displayed in the record operation prompt. |
@DESCRIPTION | nvarchar(100) | INOUT |
Definition
Copy
CREATE procedure dbo.USP_RECORDOPERATION_SOLICITCODEMARKACTIVEPROMPT
(
@ID uniqueidentifier,
@DESCRIPTION nvarchar(100) output
)
as
set nocount on;
select
@DESCRIPTION = DESCRIPTION
from
dbo.SOLICITCODE
where
ID = @ID;
return 0;