DBA Data[Home] [Help]

APPS.FND_CP_OPP_REQ dependencies on FND_MESSAGE

Line 154: fnd_message.set_name('FND','CONC-OPP MESSAGE MISMATCH');

150: return;
151: else
152: -- Yikes, the request id does not match, log an error message
153: if (FND_LOG.LEVEL_ERROR >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
154: fnd_message.set_name('FND','CONC-OPP MESSAGE MISMATCH');
155: fnd_message.set_token('REQID', reqid, FALSE);
156: fnd_message.set_token('MGRID', cpid, FALSE);
157: fnd_log.message(FND_LOG.LEVEL_ERROR,
158: 'fnd.plsql.fnd_cp_opp_req.wait_for_reply', TRUE);

Line 155: fnd_message.set_token('REQID', reqid, FALSE);

151: else
152: -- Yikes, the request id does not match, log an error message
153: if (FND_LOG.LEVEL_ERROR >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
154: fnd_message.set_name('FND','CONC-OPP MESSAGE MISMATCH');
155: fnd_message.set_token('REQID', reqid, FALSE);
156: fnd_message.set_token('MGRID', cpid, FALSE);
157: fnd_log.message(FND_LOG.LEVEL_ERROR,
158: 'fnd.plsql.fnd_cp_opp_req.wait_for_reply', TRUE);
159: end if;

Line 156: fnd_message.set_token('MGRID', cpid, FALSE);

152: -- Yikes, the request id does not match, log an error message
153: if (FND_LOG.LEVEL_ERROR >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
154: fnd_message.set_name('FND','CONC-OPP MESSAGE MISMATCH');
155: fnd_message.set_token('REQID', reqid, FALSE);
156: fnd_message.set_token('MGRID', cpid, FALSE);
157: fnd_log.message(FND_LOG.LEVEL_ERROR,
158: 'fnd.plsql.fnd_cp_opp_req.wait_for_reply', TRUE);
159: end if;
160:

Line 411: errmsg := fnd_message.get_string('FND', 'CONC-PP CMGR ONLY');

407: from fnd_concurrent_requests fcr
408: where request_id = reqid;
409: exception
410: when no_data_found then
411: errmsg := fnd_message.get_string('FND', 'CONC-PP CMGR ONLY');
412: return ;
413: end;
414:
415:

Line 459: errmsg := fnd_message.get_string('FND', 'CONC-PP NO RESPONSE');

455: -- ??? what to do here?
456: -- update the pp_actions table so the post-processor will not process this req
457: update_pp_action(reqid, cpid);
458: update_req_pp_status(reqid, PP_ERROR);
459: errmsg := fnd_message.get_string('FND', 'CONC-PP NO RESPONSE');
460: return;
461:
462: else
463: -- processing has started, wait some more

Line 492: errmsg := fnd_message.get_string('FND', 'CONC-PP TIMEOUT');

488: -- send terminate command to OPP service
489: fnd_cp_opp_cmd.terminate_opp_request(reqid, cpid);
490:
491: update_req_pp_status(reqid, PP_TIMEOUT);
492: errmsg := fnd_message.get_string('FND', 'CONC-PP TIMEOUT');
493: return;
494:
495: end if;
496: