USP_SIMPLEDATALIST_PRINTERLIST
Lists the printer lists in the system
Definition
 Copy 
                                    
                create procedure dbo.USP_SIMPLEDATALIST_PRINTERLIST
                as
                set nocount on;
                select 
                    ID as VALUE, 
                    NAME as LABEL
                from dbo.PRINTERLIST
                return 0;