|
id_sso function |
|
Contained in package wwsec_api. Call this function to return a person ID when given a user name or global unique identifier (GUID). The function first validates whether the user exists in the Single Sign-On (SSO) Server. It also creates a shadow entry in Oracle9iAS Portal (if one does not exist) before returning the person ID. function id_sso (
) return number; |
|
Version: Oracle Portal 3.0.6.6.5 or later |
|
|
Parameters: |
|
|
p_user_name |
The user name of the Oracle Portal user. Datatype: in varchar2 |
|
p_userguid |
The global unique identifier used to identify the user in OID. It is an optional parameter and when specified takes precedence over p_user_name. Note: This parameter is available in Oracle9iAS Portal 9.0.2 or later. Datatype: in varchar2 |
|
Returns: This function returns a person ID. Exceptions:
Example: l_id number;
); |
|
|
The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio |