USP_SIMPLEDATALIST_MKTSOURCECODEPERFORMANCE
Displays all distinct source code parts by name
Definition
Copy
CREATE procedure dbo.[USP_SIMPLEDATALIST_MKTSOURCECODEPERFORMANCE]
as
set nocount on;
select distinct
[NAME] as VALUE,
[NAME] as LABEL
from dbo.[MKTSOURCECODEPARTDEFINITION]
order by [NAME];
return 0;