USP_SIMPLEDATALIST_INTERACTIONSTATUS

Definition

Copy


create procedure dbo.USP_SIMPLEDATALIST_INTERACTIONSTATUS as

  select  
    'Pending' as VALUE

  union all

  select 
    'Completed' as VALUE

  union all

  select 
    'Canceled' as VALUE

  union all

  select 
    'Declined' as VALUE