USP_REPORT_GIVINGLEVELPROGRAM_GETPROGRAMS
Returns the names and IDs of all Giving Level Programs
Definition
Copy
create procedure dbo.USP_REPORT_GIVINGLEVELPROGRAM_GETPROGRAMS
as
set nocount on;
select
GLP.ID,
GLP.NAME
from
dbo.GIVINGLEVELPROGRAM GLP
order by
GLP.NAME;