Oracle9iAS Portal Developer Kit

get_system_var_names function

Contained in package wwctx_api.

Call this function to get the set of external system variable names.

External system variable names are used (for example) when editing a page, i.e. the Parameters tab allows you to assign a public portlet parameter to any one of the known external system variables. The names of these known system variables is retrieved by calling this function.

function get_system_var_names
return system_var_names_type;

Version: Oracle9iAS Portal 9.0.2 or later

Returns:

This function returns the set of external system variable names.

Exceptions:

This function raises no user-defined exceptions.

Example:

l_system_var_names wwctx_api.system_var_names_type;
l_system_var_name wwctx_api.system_var_name_type;

l_system_var_names := wwctx_api.get_system_var_names;
for i in 1..l_system_var_names.count loop
l_system_var_name := l_system_var_names(i);
...
end loop;

Related topics

The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio