USP_SIMPLEDATALIST_TIMEZONEENTRY
Returns a list of all active time zone entries.
Definition
Copy
CREATE procedure dbo.USP_SIMPLEDATALIST_TIMEZONEENTRY as
select
ID as VALUE,
DISPLAYNAME as LABEL
from dbo.TIMEZONEENTRY
where ACTIVE = 1
order by SEQUENCE