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