0% found this document useful (0 votes)
69 views

How To End Date App User

This document provides instructions for ending or disabling an applications user account in Oracle E-Business Suite. There is no way to directly delete a user account, but a user can be ended or disabled by either 1) passing an end date to the FND_USER_PKG.UPDATEUSER procedure or 2) calling the FND_USER_PKG.DISABLEUSER procedure and passing the username. Once disabled, a user account can be re-enabled by calling FND_USER_PKG.ENABLEUSER.

Uploaded by

Herman
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
69 views

How To End Date App User

This document provides instructions for ending or disabling an applications user account in Oracle E-Business Suite. There is no way to directly delete a user account, but a user can be ended or disabled by either 1) passing an end date to the FND_USER_PKG.UPDATEUSER procedure or 2) calling the FND_USER_PKG.DISABLEUSER procedure and passing the username. Once disabled, a user account can be re-enabled by calling FND_USER_PKG.ENABLEUSER.

Uploaded by

Herman
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Document 1064798.

Page 1 of 1

How to End-Date/Delete an Applications User (Doc ID 1064798.1)


Modified: Dec 31, 2013

Type: HOWTO

In this Document
Goal
Solution
References

APPLIES TO:
Oracle Application Object Library - Version 11.5.10.2 to 12.2 [Release 11.5 to 12.2]
Information in this document applies to any platform.
***Checked for relevance on 29-Nov-2012***

GOAL
How to end-date an applications user.

SOLUTION
There is no API or scripts to delete user accounts in FND_USER. Deletion of an an e-business suite user
account is not possible and not supported. The supported methods to disable an Applications User are:
1. To end-date the user account from the Define Users forms or using the following API :
FND_USER_PKG.UPDATEUSER you may pass an end date to the parameter X_END_DATE of the
procedure FND_USER_PKG.UPDATEUSER.
This will disable the user account.
The example below shows how to end-date custom user PIERRE:
fnd_user_pkg.updateuser
(x_user_name=>'PIERRE',x_owner=>'CUST',x_end_date=>SYSDATE);

x_owner can be either SEED or CUST:


To end date seeded users (i.e. sysadmin) x_owner= SEED
To end date custom users x_owner = CUST
2. To use FND_USER_PKG.DISABLEUSER API:
Pass the username as parameter. This will disable the user.

Note : After disabling a user, you can enable it by using the package FND_USER_PKG.EnableUser

REFERENCES
NOTE:742972.1 - How to Stop the Force Password Reset on Creation of User Account
NOTE:760780.1 - Unable To Pass NULL Values Parameters To The Package API FND_USER_PKG

https://support.oracle.com/epmos/faces/DocumentDisplay?_adf.ctrl-state=18xunxyoh9...

20/6/2014

You might also like