Oracle9iAS Portal Developer Kit

person_info function (ID)

Contained in package wwsec_api.

Call this function to return information about a person when given a person ID.

function person_info

(

p_person_id in number

)

return wwsec_person%rowtype;

Version: Oracle Portal 3.0.6.6.5 or later

Parameter:

 p_person_id

A unique identifier for a person.

Datatype: in number

Returns:

This function returns person information.

Exception:

  • If the ID specified does not exist, INVALID_PERSON_ID_EXCEPTION is raised.

  • If a problem occurs for which an exception has not been defined, an UNEXPECTED_EXCEPTION is raised.

Example:

l_person_rec wwsec_person%rowtype;

l_person_rec := wwsec_api.person_info

(

p_person_id => 787633

);

Related topics

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