USP_SIMPLEDATALIST_CURRENCYSET

Returns a list of currency set with names.

Definition

Copy


                create procedure dbo.USP_SIMPLEDATALIST_CURRENCYSET
                as
                    set nocount on;

                    select
                        CURRENCYSET.ID as VALUE,
                        CURRENCYSET.NAME as LABEL
                    from
                        dbo.CURRENCYSET
                    order by
                        LABEL;