Oracle9iAS Portal Developer Kit

get_names_table function

Contained in package wwpre_api_util.

Call this function to get the table of preference name records. This function returns the table of all the records for a given preference path.

  function get_names_table
  (
  p_path in varchar2
  )
  return names_table;

Version: Oracle Portal 3.0.8

Parameters:

p_path

The path for the preference name.

Datatype: in varchar2

Returns:

This function returns the preference name table

Exceptions:

  • If the path is not found, a PATH_NOT_FOUND_EXCEPTION is raised.

  • If a name is not found, a NAME_NOT_FOUND_EXCEPTION is raised.

Exceptions:

declare

l_names_table wwpre_api_util.names_table;

begin

l_names_table := wwpre_api_util.get_names
(
p_path => 'ORACLE.TOOLS.PORTAL.STYLE',
);

end;

Related topics

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