DBA Data[Home] [Help]

APPS.INV_RECEIVING_TRANSACTION dependencies on INV_MOBILE_HELPER_FUNCTIONS

Line 15: inv_mobile_helper_functions.tracelog

11: IS
12: l_debug number := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
13: BEGIN
14: IF (l_debug = 1) THEN
15: inv_mobile_helper_functions.tracelog
16: (p_err_msg => p_err_msg,
17: p_module => 'inv_receiving_transaction',
18: p_level => p_level);
19: END IF;

Line 363: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);

359: ROLLBACK TO rcv_cleanup_sp;
360: CLOSE lpn_pack_histroy_cur;
361:
362: x_return_status := FND_API.G_RET_STS_ERROR;
363: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);
364:
365: WHEN OTHERS THEN
366: IF (l_debug = 1) THEN
367: print_debug('rcv_txn_clean_up: Other Exception',4);

Line 375: inv_mobile_helper_functions.sql_error('inv_receiving_transaction.rcv_txn_clean_up', l_progress, SQLCODE);

371:
372: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
373:
374: IF SQLCODE IS NOT NULL THEN
375: inv_mobile_helper_functions.sql_error('inv_receiving_transaction.rcv_txn_clean_up', l_progress, SQLCODE);
376: IF (l_debug = 1) THEN
377: print_debug('rcv_txn_clean_up : l_progress = ' || l_progress ||' SQLCODE is '||SQLCODE,4);
378: END IF;
379: END IF;

Line 380: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);

376: IF (l_debug = 1) THEN
377: print_debug('rcv_txn_clean_up : l_progress = ' || l_progress ||' SQLCODE is '||SQLCODE,4);
378: END IF;
379: END IF;
380: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);
381:
382: END rcv_txn_clean_up;
383:
384:

Line 942: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);

938: IF (l_debug = 1) THEN
939: print_debug('Execution error in txn_complete',4);
940: END IF;
941: x_return_status := fnd_api.g_ret_sts_error;
942: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);
943:
944: WHEN fnd_api.g_exc_unexpected_error THEN
945: IF (l_debug = 1) THEN
946: print_debug('Unexpected error in txn_complete',4);

Line 949: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);

945: IF (l_debug = 1) THEN
946: print_debug('Unexpected error in txn_complete',4);
947: END IF;
948: x_return_status := fnd_api.g_ret_sts_unexp_error ;
949: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);
950:
951: WHEN OTHERS THEN
952: IF (l_debug = 1) THEN
953: print_debug('Exception in txn_complete',4);

Line 970: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);

966: --fnd_msg_pub.count_and_get
967: -- ( p_count => x_msg_count
968: -- , p_data => x_msg_data
969: -- );
970: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);
971:
972: END txn_complete;
973:
974: PROCEDURE txn_mobile_timeout_cleanup(p_group_id IN NUMBER,

Line 1195: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);

1191: IF (l_debug = 1) THEN
1192: print_debug('TXN_MOBILE_TIMEOUT_CLEANUP - Execution error in TXN_MOBILE_TIMEOUT_CLEANUP',4);
1193: END IF;
1194: x_return_status := fnd_api.g_ret_sts_error;
1195: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);
1196:
1197: WHEN fnd_api.g_exc_unexpected_error THEN
1198: IF (l_debug = 1) THEN
1199: print_debug('TXN_MOBILE_TIMEOUT_CLEANUP - Unexpected error in TXN_MOBILE_TIMEOUT_CLEANUP',4);

Line 1202: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);

1198: IF (l_debug = 1) THEN
1199: print_debug('TXN_MOBILE_TIMEOUT_CLEANUP - Unexpected error in TXN_MOBILE_TIMEOUT_CLEANUP',4);
1200: END IF;
1201: x_return_status := fnd_api.g_ret_sts_unexp_error ;
1202: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);
1203:
1204: WHEN OTHERS THEN
1205: IF (l_debug = 1) THEN
1206: print_debug('TXN_MOBILE_TIMEOUT_CLEANUP - Exception in TXN_MOBILE_TIMEOUT_CLEANUP',4);

Line 1223: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);

1219: --fnd_msg_pub.count_and_get
1220: -- ( p_count => x_msg_count
1221: -- , p_data => x_msg_data
1222: -- );
1223: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);
1224:
1225: END txn_mobile_timeout_cleanup;
1226:
1227: END inv_receiving_transaction;