USP_MKTLIST_TOGGLEINACTIVEPROMPT
Provides the prompt for the "List: Mark Inactive" record operation.
Parameters
| Parameter | Parameter Type | Mode | Description | 
|---|---|---|---|
| @ID | uniqueidentifier | IN | Represents information to be displayed in the record operation prompt. | 
| @NAME | nvarchar(154) | INOUT | 
Definition
 Copy 
                                    
create procedure dbo.[USP_MKTLIST_TOGGLEINACTIVEPROMPT]
(
  @ID uniqueidentifier,
  @NAME nvarchar(154) output
)
as
  set nocount on;
  select
    @NAME = [NAME]
  from dbo.[MKTLIST]
  where [ID] = @ID;
  return 0;