DBA Data[Home] [Help]

APPS.CST_START_IMP_PROCESS dependencies on FND_MESSAGE

Line 55: fnd_file.put_line(fnd_file.log,fnd_message.get_string('BOM','CST_REQ_ERROR'));

51: OR (FCR.argument5 is null)
52: OR (l_req_arg is null));
53:
54: if (NVL(l_min_reqid,FND_GLOBAL.CONC_REQUEST_ID) <> FND_GLOBAL.CONC_REQUEST_ID) then
55: fnd_file.put_line(fnd_file.log,fnd_message.get_string('BOM','CST_REQ_ERROR'));
56: CONC_STATUS := fnd_concurrent.set_completion_status('ERROR',substr(fnd_message.get_string('BOM','CST_REQ_ERROR'),1,240));
57: return;
58: end if;
59:

Line 56: CONC_STATUS := fnd_concurrent.set_completion_status('ERROR',substr(fnd_message.get_string('BOM','CST_REQ_ERROR'),1,240));

52: OR (l_req_arg is null));
53:
54: if (NVL(l_min_reqid,FND_GLOBAL.CONC_REQUEST_ID) <> FND_GLOBAL.CONC_REQUEST_ID) then
55: fnd_file.put_line(fnd_file.log,fnd_message.get_string('BOM','CST_REQ_ERROR'));
56: CONC_STATUS := fnd_concurrent.set_completion_status('ERROR',substr(fnd_message.get_string('BOM','CST_REQ_ERROR'),1,240));
57: return;
58: end if;
59:
60:

Line 116: fnd_file.put_line(fnd_file.log,(fnd_message.get_string('BOM','CST_EXCEPTION_OCCURED')));

112: EXCEPTION
113: When others then
114: rollback;
115: fnd_file.put_line(fnd_file.log,'CST_START_IMP_PROCESS.Start_Process() '|| to_char(SQLCODE) || ','|| substr(SQLERRM,1,180));
116: fnd_file.put_line(fnd_file.log,(fnd_message.get_string('BOM','CST_EXCEPTION_OCCURED')));
117:
118:
119: END Start_process;
120: