DBA Data[Home] [Help]

APPS.WIP_ONLINE_MTL_TXN_PROCESSOR dependencies on WIP_UTILITIES

Line 292: wip_utilities.print_label(p_txn_id => p_processHeaderID,

288:
289:
290: /*Bug 6417742 (FP of 6342851) - Commented label printing call, this API will be called from WIP_MTLTEMPPROC_PRIV.PROCESSWIP.
291: -- print label
292: wip_utilities.print_label(p_txn_id => p_processHeaderID,
293: p_table_type => 2, --MMTT
294: p_ret_status => returnStatus,
295: p_msg_count => l_msg_count,
296: p_msg_data => error,

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

297: p_label_status => labelStatus,
298: p_business_flow_code => 33); -- discrete business flow code
299: -- do not error out if label printing, only put warning message in log
300: if(returnStatus <> fnd_api.g_ret_sts_success) then
301: WIP_UTILITIES.get_message_stack(p_msg => l_msg_stack);
302: if (l_logLevel <= wip_constants.full_logging) then
303: wip_logger.log(p_msg => 'An error has occurred with label printing.\n' ||
304: 'The following error has occurred during ' ||
305: 'printing: ' || l_msg_stack || '\n' ||

Line 442: -- WIP_UTILITIES.get_message_stack(p_msg => x_err_msg);

438: end if;
439: when others then
440: x_return_status := fnd_api.g_ret_sts_unexp_error;
441: x_err_msg := SQLERRM;
442: -- WIP_UTILITIES.get_message_stack(p_msg => x_err_msg);
443: if (l_logLevel <= wip_constants.trace_logging) then
444: wip_logger.exitPoint(p_procName => 'wipopsrb.lpnCompleteFlow',
445: p_procReturnStatus => x_return_status,
446: p_msg => 'unexp error: ' || x_err_msg,

Line 553: wip_utilities.get_message_stack(p_msg => x_err_msg);

549: if(x_return_status <> fnd_api.g_ret_sts_success) then
550: if (l_logLevel <= wip_constants.full_logging) then
551: wip_logger.log('component validation failed', dummyErrCode);
552: end if;
553: wip_utilities.get_message_stack(p_msg => x_err_msg);
554: raise fnd_api.g_exc_unexpected_error;
555: end if;
556:
557: --process the components

Line 575: wip_utilities.print_label(p_txn_id => l_cmpl_txnTmpID,

571: end if;
572:
573: /* Start - Bug 6013398: Moved below code from procedure wma_completion.process to here*/
574: /* Start of fix for bug 4253002 */
575: wip_utilities.print_label(p_txn_id => l_cmpl_txnTmpID,
576: p_table_type => 2, --MMTT
577: p_ret_status => l_retStatus,
578: p_msg_count => msgCount,
579: p_msg_data => error,

Line 584: wip_utilities.get_message_stack(p_msg => l_msg_stack);

580: p_label_status => labelStatus,
581: p_business_flow_code => 26); -- discrete business flow code
582: -- do not error out if label printing, only put warning message in log
583: if(l_retStatus <> fnd_api.g_ret_sts_success) then
584: wip_utilities.get_message_stack(p_msg => l_msg_stack);
585: if (l_logLevel <= wip_constants.full_logging) then
586: wip_logger.log(p_msg => 'An error has occurred with label printing.\n' ||
587: 'The following error has occurred during ' ||
588: 'printing: ' || l_msg_stack || '\n' ||

Line 652: WIP_UTILITIES.get_message_stack(p_msg => x_err_msg);

648: wip_logger.cleanUp(dummyErrCode);
649: end if;
650: when others then
651: x_return_status := fnd_api.g_ret_sts_unexp_error;
652: WIP_UTILITIES.get_message_stack(p_msg => x_err_msg);
653: if (l_logLevel <= wip_constants.trace_logging) then
654: wip_logger.exitPoint(p_procName => 'wipopsrb.lpnCompleteJob',
655: p_procReturnStatus => x_return_status,
656: p_msg => SQLERRM,