DBA Data[Home] [Help]

APPS.INV_RCV_TXN_INTERFACE dependencies on FND_API

Line 1387: x_return_status := fnd_api.g_ret_sts_success;

1383: -- End for Bug 7440217
1384:
1385: BEGIN
1386:
1387: x_return_status := fnd_api.g_ret_sts_success;
1388:
1389: SAVEPOINT rcv_transactions_sa;
1390:
1391: l_allow_routing_override := fnd_profile.value('OVERRIDE_ROUTING');

Line 3138: WHEN fnd_api.g_exc_error THEN

3134: END IF;
3135: --4364407
3136:
3137: exception
3138: WHEN fnd_api.g_exc_error THEN
3139: ROLLBACK TO rcv_transactions_sa;
3140: x_return_status := fnd_api.g_ret_sts_error;
3141: -- Get message count and data
3142: fnd_msg_pub.count_and_get

Line 3140: x_return_status := fnd_api.g_ret_sts_error;

3136:
3137: exception
3138: WHEN fnd_api.g_exc_error THEN
3139: ROLLBACK TO rcv_transactions_sa;
3140: x_return_status := fnd_api.g_ret_sts_error;
3141: -- Get message count and data
3142: fnd_msg_pub.count_and_get
3143: ( p_count => x_msg_count
3144: , p_data => x_msg_data

Line 3213: WHEN fnd_api.g_exc_unexpected_error THEN

3209: CLOSE count_std_distributions_exp;
3210: END IF;
3211: --4364407
3212:
3213: WHEN fnd_api.g_exc_unexpected_error THEN
3214: ROLLBACK TO rcv_transactions_sa;
3215: x_return_status := fnd_api.g_ret_sts_unexp_error ;
3216:
3217: -- Get message count and data

Line 3215: x_return_status := fnd_api.g_ret_sts_unexp_error ;

3211: --4364407
3212:
3213: WHEN fnd_api.g_exc_unexpected_error THEN
3214: ROLLBACK TO rcv_transactions_sa;
3215: x_return_status := fnd_api.g_ret_sts_unexp_error ;
3216:
3217: -- Get message count and data
3218: fnd_msg_pub.count_and_get
3219: ( p_count => x_msg_count

Line 3292: x_return_status := fnd_api.g_ret_sts_unexp_error ;

3288: --4364407
3289:
3290: WHEN OTHERS THEN
3291: ROLLBACK TO rcv_transactions_sa;
3292: x_return_status := fnd_api.g_ret_sts_unexp_error ;
3293: IF SQLCODE IS NOT NULL THEN
3294: inv_mobile_helper_functions.sql_error('INV_RCV_TXN_INTERFACE.matching_logic', l_progress, SQLCODE);
3295: END IF;
3296: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)