DBA Data[Home] [Help]

APPS.HR_KI_OPT_LOAD_API dependencies on FND_USER

Line 175: select user_id from fnd_user

171: where
172: responsibility_key = X_OPTION_LEVEL_KEY;
173:
174: CURSOR CUR_VALIDATE_LEVEL_USR IS
175: select user_id from fnd_user
176: where
177: user_name = X_OPTION_LEVEL_KEY;
178:
179:

Line 298: fnd_user usr

294: select
295: distinct opt.option_id,opt.object_version_number
296: from HR_KI_OPTIONS opt,HR_KI_OPTION_TYPES oty,
297: hr_ki_integrations int,
298: fnd_user usr
299: where
300: opt.option_type_id=oty.option_type_id
301: and int.integration_id=opt.integration_id
302: and upper(int.integration_key) = upper(X_INTEGRATION_KEY)