DBA Data[Home] [Help]

APPS.WIP_MTLPROC_PRIV dependencies on FND_MSG_PUB

Line 65: fnd_msg_pub.initialize;

61: begin
62: savepoint wipmtlpb_SP1;
63:
64: if(fnd_api.to_boolean(p_initMsgList)) then
65: fnd_msg_pub.initialize;
66: end if;
67:
68: if (l_logLevel <= wip_constants.trace_logging) then
69: l_params(1).paramName := 'p_txnTmpID';

Line 179: fnd_msg_pub.add;

175: l_jobStatusCode := l_jobStatus;
176: end;
177: fnd_message.set_name('WIP', 'WIP_PICKING_STATUS_ERROR');
178: fnd_message.set_token('STATUS', l_jobStatus);
179: fnd_msg_pub.add;
180: raise fnd_api.g_exc_unexpected_error;
181: end if;
182: */
183:

Line 216: fnd_msg_pub.add;

212:
213: else
214: fnd_message.set_name('WIP', 'OPERATION_PROCESSING_ERROR');
215: l_errMsg := 'Invalid WIP Entity Type:' || l_issueRec.wipEntityType;
216: fnd_msg_pub.add;
217: raise fnd_api.g_exc_unexpected_error;
218: end if;
219:
220: if(x_returnStatus <> fnd_api.g_ret_sts_success) then

Line 262: fnd_msg_pub.add;

258: if(fnd_api.to_boolean(p_endDebug)) then
259: wip_logger.cleanUp(x_returnStatus => l_returnStatus); --discard logging return status
260: end if;
261: fnd_message.set_name('WIP', 'INVALID_MMTT_TEMP_ID');
262: fnd_msg_pub.add;
263: writeError(p_txnTmpID);
264:
265: when fnd_api.g_exc_unexpected_error then
266: rollback to wipmtlpb_SP1;

Line 283: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_mtlProc_priv',

279: end if;
280: when others then
281: rollback to wipmtlpb_SP1;
282: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
283: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_mtlProc_priv',
284: p_procedure_name => 'processTemp',
285: p_error_text => SQLERRM);
286: writeError(p_txnTmpID);
287: if (l_logLevel <= wip_constants.trace_logging) then

Line 600: fnd_msg_pub.add;

596: p_msg => l_errMsg,
597: x_returnStatus => l_returnStatus); --discard logging return status
598: end if;
599: fnd_message.set_name('WIP', 'OPERATION_PROCESSING_ERROR');
600: fnd_msg_pub.add;
601: --need to add a message to the stack and count it
602: when wip_constants.records_locked then
603: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
604: if (l_logLevel <= wip_constants.trace_logging) then

Line 611: fnd_msg_pub.add;

607: p_msg => 'records locked',
608: x_returnStatus => l_returnStatus);
609: end if;
610: fnd_message.set_name('INV', 'INV_WIP_WORK_ORDER_LOCKED');
611: fnd_msg_pub.add;
612: when others then
613: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
614: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_mtlProc_priv',
615: p_procedure_name => 'processTxn',

Line 614: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_mtlProc_priv',

610: fnd_message.set_name('INV', 'INV_WIP_WORK_ORDER_LOCKED');
611: fnd_msg_pub.add;
612: when others then
613: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
614: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_mtlProc_priv',
615: p_procedure_name => 'processTxn',
616: p_error_text => SQLERRM);
617: if (l_logLevel <= wip_constants.trace_logging) then
618: wip_logger.exitPoint(p_procName => 'wip_mtlProc_priv.processTxn',

Line 624: fnd_msg_pub.add;

620: p_msg => 'unexpected error: ' || SQLERRM,
621: x_returnStatus => l_returnStatus); --discard logging return status
622: end if;
623: fnd_message.set_name('WIP', 'OPERATION_PROCESSING_ERROR');
624: fnd_msg_pub.add;
625: end processTxn;
626:
627: --This procedure fetches the repetitive schedules and how much of the component
628: --quantity can be allocated to that schedule. As different cursors are used for

Line 1140: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_mtlProc_priv',

1136: x_returnStatus => l_returnStatus); --discard logging return status
1137: end if;
1138: when others then
1139: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
1140: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_mtlProc_priv',
1141: p_procedure_name => 'processRepetitive',
1142: p_error_text => SQLERRM);
1143: if (l_logLevel <= wip_constants.trace_logging) then
1144: wip_logger.exitPoint(p_procName => 'wip_mtlProc_priv.processRepetitive',

Line 1217: /*Fix Bug 10058202, add fnd_msg_pub.initialize

1213: x_returnStatus => x_returnStatus,
1214: x_errorMsg => l_error_msg);
1215:
1216: IF(x_returnStatus <> fnd_api.g_ret_sts_success) THEN
1217: /*Fix Bug 10058202, add fnd_msg_pub.initialize
1218: to clear the fnd_message stack before adding error
1219: message back to stack to avoid duplications*/
1220: fnd_msg_pub.initialize;
1221: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');

Line 1220: fnd_msg_pub.initialize;

1216: IF(x_returnStatus <> fnd_api.g_ret_sts_success) THEN
1217: /*Fix Bug 10058202, add fnd_msg_pub.initialize
1218: to clear the fnd_message stack before adding error
1219: message back to stack to avoid duplications*/
1220: fnd_msg_pub.initialize;
1221: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
1222: fnd_message.set_token('MESSAGE', l_error_msg);
1223: fnd_msg_pub.add;
1224: raise fnd_api.g_exc_unexpected_error;

Line 1223: fnd_msg_pub.add;

1219: message back to stack to avoid duplications*/
1220: fnd_msg_pub.initialize;
1221: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
1222: fnd_message.set_token('MESSAGE', l_error_msg);
1223: fnd_msg_pub.add;
1224: raise fnd_api.g_exc_unexpected_error;
1225: END IF;
1226: l_process_phase := '4';
1227: x_returnStatus := fnd_api.g_ret_sts_success;

Line 1260: fnd_msg_pub.add;

1256: SQLCODE;
1257:
1258: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
1259: fnd_message.set_token('MESSAGE', l_error_msg);
1260: fnd_msg_pub.add;
1261:
1262: IF (l_log_level <= wip_constants.trace_logging) THEN
1263: wip_logger.exitPoint(p_procName => 'wip_cplProc_priv.processOATxn',
1264: p_procReturnStatus => x_returnStatus,