|
add_portal_user function |
|
Contained in package wwsec_api. Call this function to create a new Oracle Portal user record and return a person ID. In Oracle9iAS Portal 9.0.2 (or later) this function can be used to add a user profile for a user that exists in Oracle Internet Directory (OID). The user must already exist in OID before this function is called. The result of this function is that the user attributes are updated based on the values that are passed. A local entry for the user is also created in the Portal. This local entry can then be used to grant appropriate privileges to access various Portal objects. function add_portal_user (
) return number; |
|
Version: Oracle Portal 3.0.6.6.5 or later |
|
|
Parameters: |
|
|
p_user_name |
The user name of the user being added to Oracle Portal. Datatype: in varchar2 |
|
p_db_user |
A database user name. Datatype: in varchar2 |
|
p_empno |
An employee number. Datatype: in varchar2 |
|
p_display_personal_info |
Enter Y or N to choose to display personal information. Datatype: in varchar2 |
|
p_last_name |
The user's family name. Datatype: in varchar2 |
|
p_first_name |
The user's given name. Datatype: in varchar2 |
|
p_middle_name |
The user's middle name. Datatype: in varchar2 |
|
p_known_as |
The user's nickname. Datatype: in varchar2 |
|
p_maiden_name |
The user's maiden name. Datatype: in varchar2 |
|
p_date_of_birth |
The user's date of birth. Note: Use the date format DD-MON-YYYY format (the month is not case sensitive). Datatype: in varchar2 |
|
p_email |
The user's e-mail address Datatype: in varchar2 |
|
p_work_phone |
The user's work phone number. Datatype: in varchar2 |
|
p_home_phone |
The user's home phone number. Datatype: in varchar2 |
|
p_mobile_phone |
The user's mobile phone number. Datatype: in varchar2 |
|
p_pager |
The user's pager number. Datatype: in varchar2 |
|
p_fax |
The user's fax number. Datatype: in varchar2 |
|
p_office_addr1 |
The first line of the user's office address. Datatype: in varchar2 |
|
p_office_addr2 |
The second line of the user's office address. Datatype: in varchar2 |
|
p_office_addr3 |
The third line of the user's office address. Datatype: in varchar2 |
|
p_office_city |
The city in which the user's office is located. Datatype: in varchar2 |
|
p_office_state |
The state in which the user's office is located. Datatype: in varchar2 |
|
p_office_zip |
The zip code for the person's office. Datatype: in varchar2 |
|
p_office_country |
The country in which the user's office is located. Datatype: in varchar2 |
|
p_home_addr1 |
The first line of the user's home address. Datatype: in varchar2 |
|
p_home_addr2 |
The second line of the user's home address. Datatype: in varchar2 |
|
p_home_addr3 |
The third line of the user's home address Datatype: in varchar2 |
|
p_home_city |
The user's home city. Datatype: in varchar2 |
|
p_home_state |
The user's home state. Datatype: in varchar2 |
|
p_home_zip |
The user's home zip code. Datatype: in varchar2 |
|
p_home_country |
The user's home country. Datatype: in varchar2 |
|
p_organization |
The user's organization. Note: This parameter is currently ignored. The organization value is always taken from the subscriber. Datatype: in varchar2 |
|
p_title |
The user's job title. Datatype: in varchar2 |
|
p_spending_limit |
The user's spending limit. Note: This parameter is currently ignored. Datatype: in number |
|
p_hire_date |
The user's date of hire. Note: Use the date format DD-MON-YYYY format (the month is not case sensitive). Datatype: in varchar2 |
|
p_source |
The source of user information (via bulkload, or UI). Note: This parameter is currently ignored. Datatype: in varchar2 |
|
p_manager_user_name |
The user name of the user's manager. Datatype: in varchar2 |
|
p_portal_user |
Indicates whether the user is an active Oracle Portal user. 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 |