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 328: wip_utilities.print_label(p_txn_id => l_transaction_header_id, -- should be transaction header id

324:
325: /*Start - Bug 6417742(FP of 6342851): Added call label printing*/
326: if ( l_txnActionID = 31 and l_transaction_type_id=44 and l_flowSchedule = 'Y') then
327: -- print label
328: wip_utilities.print_label(p_txn_id => l_transaction_header_id, -- should be transaction header id
329: p_table_type => 2, --MMTT
330: p_ret_status => returnStatus,
331: p_msg_count => l_msg_count,
332: p_msg_data => error,

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

334: p_business_flow_code => 33); -- discrete business flow code
335:
336: -- do not error out if label printing, only put warning message in log
337: if(returnStatus <> fnd_api.g_ret_sts_success) then
338: WIP_UTILITIES.get_message_stack(p_msg => l_msg_stack);
339: if (l_logLevel <= wip_constants.full_logging) then
340: wip_logger.log(p_msg => 'An error has occurred with label printing.\n' ||
341: 'The following error has occurred during ' ||
342: 'printing: ' || l_msg_stack || '\n' ||

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

356: exception
357: when fnd_api.g_exc_unexpected_error then
358: rollback to wiptmpvb100;
359: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
360: wip_utilities.get_message_stack(p_msg => x_errorMsg,
361: p_delete_stack => fnd_api.g_false);
362: if(l_logLevel <= wip_constants.trace_logging) then
363: wip_logger.exitPoint(p_procName => g_pkgName || '.' || l_procName,
364: p_procReturnStatus => x_returnStatus,

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

373: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
374: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkgName,
375: p_procedure_name => l_procName,
376: p_error_text => SQLERRM);
377: wip_utilities.get_message_stack(p_msg => x_errorMsg,
378: p_delete_stack => fnd_api.g_false);
379: if(l_logLevel <= wip_constants.trace_logging) then
380: wip_logger.exitPoint(p_procName => g_pkgName || '.' || l_procName,
381: p_procReturnStatus => x_returnStatus,

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

538: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
539: if(fnd_api.to_boolean(nvl(p_rollBackOnErr, fnd_api.g_true))) then
540: rollback to wiptmpvb200;
541: else --caller wants error in MTI
542: wip_utilities.get_message_stack(p_msg => l_msgData,
543: p_delete_stack => fnd_api.g_false);
544:
545: update mtl_transactions_interface
546: set last_update_date = sysdate,

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

577:
578: if(fnd_api.to_boolean(nvl(p_rollBackOnErr, fnd_api.g_true))) then
579: rollback to wiptmpvb200;
580: else
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,