DBA Data[Home] [Help]

APPS.GML_RCV_TXN_INTERFACE dependencies on FND_API

Line 705: x_return_status := fnd_api.g_ret_sts_success;

701:
702:
703: BEGIN
704:
705: x_return_status := fnd_api.g_ret_sts_success;
706:
707: SAVEPOINT rcv_transactions_sa;
708: -- the following steps will create a set of rows linking the line_record with
709: -- its corresponding po_line_location rows until the quantity value from

Line 1559: WHEN fnd_api.g_exc_error THEN

1555: CLOSE count_std_distributions;
1556: END IF;
1557:
1558: exception
1559: WHEN fnd_api.g_exc_error THEN
1560: ROLLBACK TO rcv_transactions_sa;
1561: x_return_status := fnd_api.g_ret_sts_error;
1562: -- Get message count and data
1563: fnd_msg_pub.count_and_get

Line 1561: x_return_status := fnd_api.g_ret_sts_error;

1557:
1558: exception
1559: WHEN fnd_api.g_exc_error THEN
1560: ROLLBACK TO rcv_transactions_sa;
1561: x_return_status := fnd_api.g_ret_sts_error;
1562: -- Get message count and data
1563: fnd_msg_pub.count_and_get
1564: ( p_count => x_msg_count
1565: , p_data => x_msg_data

Line 1608: WHEN fnd_api.g_exc_unexpected_error THEN

1604: IF count_std_distributions%isopen THEN
1605: CLOSE count_std_distributions;
1606: END IF;
1607:
1608: WHEN fnd_api.g_exc_unexpected_error THEN
1609: ROLLBACK TO rcv_transactions_sa;
1610: x_return_status := fnd_api.g_ret_sts_unexp_error ;
1611:
1612: -- Get message count and data

Line 1610: x_return_status := fnd_api.g_ret_sts_unexp_error ;

1606: END IF;
1607:
1608: WHEN fnd_api.g_exc_unexpected_error THEN
1609: ROLLBACK TO rcv_transactions_sa;
1610: x_return_status := fnd_api.g_ret_sts_unexp_error ;
1611:
1612: -- Get message count and data
1613: fnd_msg_pub.count_and_get
1614: ( p_count => x_msg_count

Line 1660: x_return_status := fnd_api.g_ret_sts_unexp_error ;

1656: END IF;
1657:
1658: WHEN OTHERS THEN
1659: ROLLBACK TO rcv_transactions_sa;
1660: x_return_status := fnd_api.g_ret_sts_unexp_error ;
1661: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)
1662: THEN
1663: fnd_msg_pub.add_exc_msg
1664: ( g_pkg_name