Oracle FND api–create User

Source: Internet
Author: User

--api-fnd_user_pkg.createuser
--
--example--

-- --------------------------------------
--API to CREATE FND User
-- --------------------------------------

DECLARE
Lc_user_name VARCHAR2 (+): = ' quanweiru_test1 ';
Lc_user_password VARCHAR2 (+): = ' Oracle123 ';
Ld_user_start_date Date: = To_date (' 01-jun-2015 ');
Ld_user_end_date VARCHAR2 (+): = NULL;
Ld_password_date VARCHAR2 (+): = To_date (' 01-jun-2015 ');
Ld_password_lifespan_days number: = 90;
LN_PERSON_ID number: = 5022;
Lc_email_address VARCHAR2 (+): = ' [email protected] ';
BEGIN
Fnd_user_pkg.createuser (
X_user_name = Lc_user_name,
X_owner = NULL,
X_unencrypted_password = Lc_user_password,
X_start_date = Ld_user_start_date,
X_end_date = Ld_user_end_date,
X_password_date = Ld_password_date,
X_password_lifespan_days = Ld_password_lifespan_days,
x_employee_id = ln_person_id,
x_email_address = lc_email_address);

COMMIT;
EXCEPTION
When OTHERS
Then
ROLLBACK;
Dbms_output. Put_Line (SQLERRM);
END;

Oracle FND api–create User

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.