USP_SIMPLEDATALIST_CONSTIT_SECURITY_ATTRIBUTES

This simple datalist returns all constituent security attributes in the system.

Definition

Copy


CREATE procedure dbo.USP_SIMPLEDATALIST_CONSTIT_SECURITY_ATTRIBUTES
as
    set nocount on;

    select
        [ID] as VALUE,
        [NAME] as LABEL
    from
        dbo.CONSTIT_SECURITY_ATTRIBUTE
    order by
        [NAME];

    return 0;