ad_partner_list_all_var_names

one of the documented procedures in this installation of the ACS
Usage:
ad_partner_list_all_var_names
What it does:
Returns a list of just the variable names that we are collecting. This is good when doing inserts/updates.
Defined in: /web/philip/tcl/ad-partner-defs.tcl

Source code:


    set all_pairs [ad_partner_list_all_vars]
    set var_names [list]
    foreach pair $all_pairs {
	lappend var_names [lindex $pair 0]
    }
    return $var_names


philg@mit.edu