DirOrganizationalUnit.fetchChildren()

Returns the list of Organizational Units that are under that OU. For example: //Fetch for all Children OUs under Boston allChildOU = fetchChildren(bostonOU) i= 0 for each ouC in allChildOU do lines[i] = [ouC.fullName] i = i +1 end