DBA Data[Home] [Help]

APPS.WIP_MTLTEMPPROC_PRIV dependencies on WIP_UTILITIES

Line 73: wip_utilities.get_message_stack(p_msg => x_errorMsg,

69: if(l_retCode <> 0) then
70: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
71: fnd_message.set_token('MESSAGE', l_errMsg);
72: fnd_msg_pub.add;
73: wip_utilities.get_message_stack(p_msg => x_errorMsg,
74: p_delete_stack => fnd_api.g_false);
75: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
76: else
77: wip_utilities.get_message_stack(p_msg => x_errorMsg,

Line 77: wip_utilities.get_message_stack(p_msg => x_errorMsg,

73: wip_utilities.get_message_stack(p_msg => x_errorMsg,
74: p_delete_stack => fnd_api.g_false);
75: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
76: else
77: wip_utilities.get_message_stack(p_msg => x_errorMsg,
78: p_delete_stack => fnd_api.g_false);
79: end if;
80:
81:

Line 101: wip_utilities.get_message_stack(p_msg => x_errorMsg,

97: end if;
98: exception
99: when fnd_api.g_exc_unexpected_error then
100: rollback to wiptmpvb0;
101: wip_utilities.get_message_stack(p_msg => x_errorMsg,
102: p_delete_stack => fnd_api.g_false,
103: p_separator => ' ');
104: if (l_logLevel <= wip_constants.trace_logging) then
105: wip_logger.exitPoint(p_procName => 'wip_mtlTempProc_priv.processTemp',

Line 119: wip_utilities.get_message_stack(p_msg => x_errorMsg,

115: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
116: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_mtlTempProc_priv',
117: p_procedure_name => 'processTemp',
118: p_error_text => SQLERRM);
119: wip_utilities.get_message_stack(p_msg => x_errorMsg,
120: p_delete_stack => fnd_api.g_false,
121: p_separator => ' ');
122: fnd_message.set_name('WIP', 'MTL_PROC_FAIL');
123: l_errCode := fnd_message.get;

Line 367: wip_utilities.print_label(p_txn_id => l_transaction_header_id, -- should be transaction header id

363: l_flowSchedule = 'Y' and
364: l_transaction_type_id = WIP_CONSTANTS.CPLASSY_TYPE and
365: (l_lpnID is null or fnd_api.to_boolean(p_processLpn))) then
366: -- print label
367: wip_utilities.print_label(p_txn_id => l_transaction_header_id, -- should be transaction header id
368: p_table_type => 2, --MMTT
369: p_ret_status => returnStatus,
370: p_msg_count => l_msg_count,
371: p_msg_data => error,

Line 377: WIP_UTILITIES.get_message_stack(p_msg => l_msg_stack);

373: p_business_flow_code => 33); -- discrete business flow code
374:
375: -- do not error out if label printing, only put warning message in log
376: if(returnStatus <> fnd_api.g_ret_sts_success) then
377: WIP_UTILITIES.get_message_stack(p_msg => l_msg_stack);
378: if (l_logLevel <= wip_constants.full_logging) then
379: wip_logger.log(p_msg => 'An error has occurred with label printing.\n' ||
380: 'The following error has occurred during ' ||
381: 'printing: ' || l_msg_stack || '\n' ||

Line 399: wip_utilities.get_message_stack(p_msg => x_errorMsg,

395: exception
396: when fnd_api.g_exc_unexpected_error then
397: rollback to wiptmpvb100;
398: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
399: wip_utilities.get_message_stack(p_msg => x_errorMsg,
400: p_delete_stack => fnd_api.g_false);
401: if(l_logLevel <= wip_constants.trace_logging) then
402: wip_logger.exitPoint(p_procName => g_pkgName || '.' || l_procName,
403: p_procReturnStatus => x_returnStatus,

Line 416: wip_utilities.get_message_stack(p_msg => x_errorMsg,

412: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
413: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkgName,
414: p_procedure_name => l_procName,
415: p_error_text => SQLERRM);
416: wip_utilities.get_message_stack(p_msg => x_errorMsg,
417: p_delete_stack => fnd_api.g_false);
418: if(l_logLevel <= wip_constants.trace_logging) then
419: wip_logger.exitPoint(p_procName => g_pkgName || '.' || l_procName,
420: p_procReturnStatus => x_returnStatus,

Line 581: wip_utilities.get_message_stack(p_msg => l_msgData,

577: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
578: if(fnd_api.to_boolean(nvl(p_rollBackOnErr, fnd_api.g_true))) then
579: rollback to wiptmpvb200;
580: else --caller wants error in MTI
581: wip_utilities.get_message_stack(p_msg => l_msgData,
582: p_delete_stack => fnd_api.g_false);
583:
584: update mtl_transactions_interface
585: set last_update_date = sysdate,

Line 620: wip_utilities.get_message_stack(p_msg => l_msgData,

616:
617: if(fnd_api.to_boolean(nvl(p_rollBackOnErr, fnd_api.g_true))) then
618: rollback to wiptmpvb200;
619: else
620: wip_utilities.get_message_stack(p_msg => l_msgData,
621: p_delete_stack => fnd_api.g_false);
622:
623: update mtl_transactions_interface
624: set last_update_date = sysdate,