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 1184: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);

1180: IF (l_debug = 1) THEN
1181: print_debug('Execution error in txn_complete',4);
1182: END IF;
1183: x_return_status := fnd_api.g_ret_sts_error;
1184: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);
1185:
1186: WHEN fnd_api.g_exc_unexpected_error THEN
1187: IF (l_debug = 1) THEN
1188: print_debug('Unexpected error in txn_complete',4);

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

1187: IF (l_debug = 1) THEN
1188: print_debug('Unexpected error in txn_complete',4);
1189: END IF;
1190: x_return_status := fnd_api.g_ret_sts_unexp_error ;
1191: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);
1192:
1193: WHEN OTHERS THEN
1194: IF (l_debug = 1) THEN
1195: print_debug('Exception in txn_complete',4);

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

1208: --fnd_msg_pub.count_and_get
1209: -- ( p_count => x_msg_count
1210: -- , p_data => x_msg_data
1211: -- );
1212: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);
1213:
1214: END txn_complete;
1215:
1216: PROCEDURE txn_mobile_timeout_cleanup(p_group_id IN NUMBER,

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

1433: IF (l_debug = 1) THEN
1434: print_debug('TXN_MOBILE_TIMEOUT_CLEANUP - Execution error in TXN_MOBILE_TIMEOUT_CLEANUP',4);
1435: END IF;
1436: x_return_status := fnd_api.g_ret_sts_error;
1437: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);
1438:
1439: WHEN fnd_api.g_exc_unexpected_error THEN
1440: IF (l_debug = 1) THEN
1441: print_debug('TXN_MOBILE_TIMEOUT_CLEANUP - Unexpected error in TXN_MOBILE_TIMEOUT_CLEANUP',4);

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

1440: IF (l_debug = 1) THEN
1441: print_debug('TXN_MOBILE_TIMEOUT_CLEANUP - Unexpected error in TXN_MOBILE_TIMEOUT_CLEANUP',4);
1442: END IF;
1443: x_return_status := fnd_api.g_ret_sts_unexp_error ;
1444: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);
1445:
1446: WHEN OTHERS THEN
1447: IF (l_debug = 1) THEN
1448: print_debug('TXN_MOBILE_TIMEOUT_CLEANUP - Exception in TXN_MOBILE_TIMEOUT_CLEANUP',4);

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

1461: --fnd_msg_pub.count_and_get
1462: -- ( p_count => x_msg_count
1463: -- , p_data => x_msg_data
1464: -- );
1465: inv_mobile_helper_functions.get_stacked_messages(x_message => x_msg_data);
1466:
1467: END txn_mobile_timeout_cleanup;
1468:
1469: END inv_receiving_transaction;