DBA Data[Home] [Help]

APPS.FND_OAM_CPCHARTS_COL dependencies on FND_USER

Line 291: Fnd_User U,

287:
288: /*query from old request java code:
289: select count(distinct(R.Request_ID)) into ct_pending
290: from Fnd_Concurrent_Programs_vl CP,
291: Fnd_User U,
292: Fnd_Concurrent_Requests R,
293: Fnd_Responsibility_Tl RES,
294: Fnd_Application A,
295: Fnd_amp_requests_v rv,

Line 348: Fnd_User U,

344:
345: /* query from old request java code:
346: select count(distinct(R.Request_ID)) into ct_inactive
347: From Fnd_Concurrent_Programs_vl CP,
348: Fnd_User U,
349: Fnd_Concurrent_Requests R,
350: Fnd_Responsibility_Tl RES,
351: Fnd_Application A,
352: Fnd_amp_requests_v rv,

Line 577: from fnd_concurrent_requests, fnd_user

573: PROCEDURE refresh_running_req_user
574: IS
575: cursor req_c is
576: select count(*) count, user_name
577: from fnd_concurrent_requests, fnd_user
578: where requested_by = user_id and status_code = 'R'
579: group by user_name;
580:
581: BEGIN

Line 1197: from fnd_user

1193: where responsibility_key = 'SYSTEM_ADMINISTRATOR';
1194:
1195: select user_id, user_name
1196: into user_id, user_name
1197: from fnd_user
1198: where user_name = 'SYSADMIN';
1199:
1200: -- Now initialize the environment for SYSADMIN
1201: fnd_global.apps_initialize(user_id, resp_id, appl_id);