DBA Data[Home] [Help]

APPS.INV_RCV_TXN_INTERFACE dependencies on FND_API

Line 1418: x_return_status := fnd_api.g_ret_sts_success;

1414: --
1415:
1416: BEGIN
1417:
1418: x_return_status := fnd_api.g_ret_sts_success;
1419:
1420: SAVEPOINT rcv_transactions_sa;
1421:
1422: l_allow_routing_override := fnd_profile.value('OVERRIDE_ROUTING');

Line 3384: WHEN fnd_api.g_exc_error THEN

3380: END IF;
3381: --4364407
3382:
3383: exception
3384: WHEN fnd_api.g_exc_error THEN
3385: ROLLBACK TO rcv_transactions_sa;
3386: x_return_status := fnd_api.g_ret_sts_error;
3387: -- Get message count and data
3388: fnd_msg_pub.count_and_get

Line 3386: x_return_status := fnd_api.g_ret_sts_error;

3382:
3383: exception
3384: WHEN fnd_api.g_exc_error THEN
3385: ROLLBACK TO rcv_transactions_sa;
3386: x_return_status := fnd_api.g_ret_sts_error;
3387: -- Get message count and data
3388: fnd_msg_pub.count_and_get
3389: ( p_count => x_msg_count
3390: , p_data => x_msg_data

Line 3459: WHEN fnd_api.g_exc_unexpected_error THEN

3455: CLOSE count_std_distributions_exp;
3456: END IF;
3457: --4364407
3458:
3459: WHEN fnd_api.g_exc_unexpected_error THEN
3460: ROLLBACK TO rcv_transactions_sa;
3461: x_return_status := fnd_api.g_ret_sts_unexp_error ;
3462:
3463: -- Get message count and data

Line 3461: x_return_status := fnd_api.g_ret_sts_unexp_error ;

3457: --4364407
3458:
3459: WHEN fnd_api.g_exc_unexpected_error THEN
3460: ROLLBACK TO rcv_transactions_sa;
3461: x_return_status := fnd_api.g_ret_sts_unexp_error ;
3462:
3463: -- Get message count and data
3464: fnd_msg_pub.count_and_get
3465: ( p_count => x_msg_count

Line 3538: x_return_status := fnd_api.g_ret_sts_unexp_error ;

3534: --4364407
3535:
3536: WHEN OTHERS THEN
3537: ROLLBACK TO rcv_transactions_sa;
3538: x_return_status := fnd_api.g_ret_sts_unexp_error ;
3539: IF SQLCODE IS NOT NULL THEN
3540: inv_mobile_helper_functions.sql_error('INV_RCV_TXN_INTERFACE.matching_logic', l_progress, SQLCODE);
3541: END IF;
3542: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)