USP_DATALIST_ADORGANIZATIONALUNITS

Displays a list of all of the Active Directory organizational units associated with the application

Definition

Copy


create procedure dbo.USP_DATALIST_ADORGANIZATIONALUNITS
as
    set nocount on;

    select ID,
    [NAME],
    [GROUP],
    OUPATH
    from dbo.ADORGANIZATIONALUNIT
    order by NAME;