USP_SIMPLEDATALIST_CAMPAIGNCATEGORY
Definition
Copy
create procedure dbo.USP_SIMPLEDATALIST_CAMPAIGNCATEGORY
as
set nocount on;
select
[LOCALID] as [VALUE],
[DESCRIPTION] as [LABEL]
from [dbo].[RE7_CAMPAIGNCATEGORYCODE]
order by [DESCRIPTION];
return 0;