USP_DATALIST_MKTEXPORTDEFINITIONMEMBERSHIP
Displays a list of all membership export definitions.
Definition
Copy
CREATE procedure dbo.[USP_DATALIST_MKTEXPORTDEFINITIONMEMBERSHIP]
as
set nocount on;
select *
from dbo.[UFN_MKTEXPORTDEFINITION_GETDATALIST](2) as [E]
order by [E].[NAME];
return 0;