USP_ASSIGNCONSTITSECURITYATTRIBUTESPROCESS_GETPARAMETERS

Retrieves parameter settings for a given assign constituent security attributes process parameter set.

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


            CREATE procedure dbo.USP_ASSIGNCONSTITSECURITYATTRIBUTESPROCESS_GETPARAMETERS
            (
                @ID uniqueidentifier = null
            )
            as
                set nocount on;

                select 
                    NAME, 
                    DATELASTRUN,
                    SCOPEIDSETREGISTERID,
                    ASSIGNTOIDSETREGISTERID,
                    CONSTIT_SECURITY_ATTRIBUTEID,
                    CREATEOUTPUTIDSET, 
                    OUTPUTIDSETNAME, 
                    OVERWRITEOUTPUTIDSET
                from 
                    dbo.ASSIGNCONSTITSECURITYATTRIBUTESPROCESS
                where 
                    ID = @ID;