im_employees_initial_list

one of the documented procedures in this installation of the ACS
Usage:
im_employees_initial_list
What it does:
Memoizes and returns a list where the ith element is the user's last initital and the i+1st element is the number of employees with that initial
Defined in: /web/philip/tcl/intranet-defs.tcl

Source code:


    return [im_memoize_list  "select im_first_letter_default_to_a(u.last_name), count(1)
               from im_employees_active u
              group by im_first_letter_default_to_a(u.last_name)"]


philg@mit.edu