profile_names

Declaration

profile_names: STRING)

Description

A comma-separated list of all the available profiles. Searches for profiles in the 'profiles' location.

See Also

profile functions
Profile Manager
Location Manager

Example

script build_report is
  num_profiles := token_string_count (profile_names)
  i := 0;
  while i < num_profiles loop
    prof_name := token_string_item (profile_names, i)
    load_profile_vars (prof_name)
    -- do something with the variables
    i := i + 1
  end
end