EA7_spGetCustomFormApplicationChecklistSettings

Parameters

Parameter Parameter Type Mode Description
@CustomFormID int IN

Definition

Copy

            CREATE PROCEDURE [dbo].[EA7_spGetCustomFormApplicationChecklistSettings]
                -- Add the parameters for the stored procedure here

                @CustomFormID int
            AS
            BEGIN
                -- SET NOCOUNT ON added to prevent extra result sets from

                -- interfering with SELECT statements.

                SET NOCOUNT ON;

                -- Insert statements for procedure here

                SELECT [ID], [CustomFormID], [ItemsSelectedValues], [ItemsSelectedText], [StatusSelectedValues], [StatusSelectedText]
                FROM EA7_CustomFormApplicationChecklistSetting
                WHERE [CustomFormID] = @CustomFormID
            END