DBA Data[Home] [Help]

APPS.FND_JOBS_PKG dependencies on FND_REQUEST

Line 35: ** and FND_REQUEST.SUBMIT_REQUEST

31: /*
32: ** No AOL equivalent - replace with body of code that combines
33: ** calls to FND_CONC_MAINTAIN.APPS_INITIALIZE_FOR_MGR,
34: ** FND_CONC_MAINTAIN.GET_PENDING_REQUEST_ID,
35: ** and FND_REQUEST.SUBMIT_REQUEST
36: */
37: function SUBMIT_JOB(P_APPLICATION_SHORT_NAME in varchar2,
38: P_CONCURRENT_PROGRAM_NAME in varchar2,
39: P_ALTERNATE_PROGRAM in varchar2)

Line 109: request_id := fnd_request.submit_request (application => 'FND',

105: end if;
106: /* If it is about to be run then there will be a request id. */
107: if ((request_id is not NULL) and (request_id = 0)) then
108: /* Submit the recompile request since it isn't about to be run */
109: request_id := fnd_request.submit_request (application => 'FND',
110: program => 'FNDSCMPI',
111: argument1 => 'N');
112: if ((FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL)) then
113: fnd_log.string(FND_LOG.LEVEL_STATEMENT,

Line 168: request_id := fnd_request.submit_request(application => 'FND',

164: if ((dev_phase <> 'PENDING') or
165: (dev_status <> 'NORMAL') or
166: (dev_status is null)) then
167: /* Submit the recompile request since it isn't about to be run */
168: request_id := fnd_request.submit_request(application => 'FND',
169: program => 'FNDSCMPI',
170: argument1 => 'N');
171: /* Log result */
172: if (fnd_log.LEVEL_STATEMENT >= fnd_log.g_current_runtime_level) then