USP_SIMPLEDATALIST_STANDINGORDERSIMPORTTEMPLATE

Provides a list of file import templates for standing orders.

Definition

Copy


                CREATE procedure dbo.USP_SIMPLEDATALIST_STANDINGORDERSIMPORTTEMPLATE
                as
                    begin
                        set nocount on;

                        select
                            ID as VALUE,
                            NAME as LABEL
                        from
                            dbo.STANDINGORDERSIMPORTTEMPLATE
                        order by
                            LABEL
                    end