DBA Data[Home] [Help]

APPS.FND_USER_PKG dependencies on FND_GRANTS

Line 3888: -- A temp fix to update fnd_grants.grantee_key

3884: app_exception.raise_exception;
3885: end;
3886:
3887: -- Added for bug 4676568
3888: -- A temp fix to update fnd_grants.grantee_key
3889: -- No need to check SQL%NOTFOUND because if there is no data to be
3890: -- updated in fnd_grants.grantee_key, that is perfectly fine.
3891: update fnd_grants
3892: set grantee_key = x_new_user_name

Line 3890: -- updated in fnd_grants.grantee_key, that is perfectly fine.

3886:
3887: -- Added for bug 4676568
3888: -- A temp fix to update fnd_grants.grantee_key
3889: -- No need to check SQL%NOTFOUND because if there is no data to be
3890: -- updated in fnd_grants.grantee_key, that is perfectly fine.
3891: update fnd_grants
3892: set grantee_key = x_new_user_name
3893: where grantee_key = x_old_user_name
3894: and grantee_type = 'USER';

Line 3891: update fnd_grants

3887: -- Added for bug 4676568
3888: -- A temp fix to update fnd_grants.grantee_key
3889: -- No need to check SQL%NOTFOUND because if there is no data to be
3890: -- updated in fnd_grants.grantee_key, that is perfectly fine.
3891: update fnd_grants
3892: set grantee_key = x_new_user_name
3893: where grantee_key = x_old_user_name
3894: and grantee_type = 'USER';
3895: