USP_SIMPLEDATALIST_FINANCIALINSTITUTIONNAMES
This simple datalist returns all distinct constituent financial institution names.
Definition
Copy
CREATE procedure dbo.[USP_SIMPLEDATALIST_FINANCIALINSTITUTIONNAMES]
as
set nocount on;
select distinct
[ID] as [VALUE],
[DESCRIPTION] as [LABEL]
from dbo.[FINANCIALINSTITUTION];
return 0;