DBA Data[Home] [Help]

APPS.XLA_FSAH_INT_PVT dependencies on FND_MSG_PUB

Line 962: fnd_msg_pub.initialize;

958:
959: ----------------------
960: IF (fnd_api.to_boolean (p_init_msg_list))
961: THEN
962: fnd_msg_pub.initialize;
963: END IF;
964:
965: --DBMS_OUTPUT.put_line ('fnd_api.to_boolean got initialized');
966:

Line 1470: fnd_msg_pub.count_and_get (p_count => x_msg_count,

1466: WHEN fnd_api.g_exc_error
1467: THEN
1468: ROLLBACK;
1469: x_return_status := fnd_api.g_ret_sts_error;
1470: fnd_msg_pub.count_and_get (p_count => x_msg_count,
1471: p_data => x_msg_data
1472: );
1473: WHEN fnd_api.g_exc_unexpected_error
1474: THEN

Line 1477: fnd_msg_pub.count_and_get (p_count => x_msg_count,

1473: WHEN fnd_api.g_exc_unexpected_error
1474: THEN
1475: ROLLBACK;
1476: x_return_status := fnd_api.g_ret_sts_unexp_error;
1477: fnd_msg_pub.count_and_get (p_count => x_msg_count,
1478: p_data => x_msg_data
1479: );
1480: WHEN xla_exceptions_pkg.application_exception
1481: THEN

Line 1498: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)

1494:
1495: ROLLBACK;
1496: x_return_status := fnd_api.g_ret_sts_unexp_error;
1497:
1498: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)
1499: THEN
1500: fnd_msg_pub.add_exc_msg (c_default_module, l_api_name);
1501: END IF;
1502:

Line 1500: fnd_msg_pub.add_exc_msg (c_default_module, l_api_name);

1496: x_return_status := fnd_api.g_ret_sts_unexp_error;
1497:
1498: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)
1499: THEN
1500: fnd_msg_pub.add_exc_msg (c_default_module, l_api_name);
1501: END IF;
1502:
1503: fnd_msg_pub.count_and_get (p_count => x_msg_count,
1504: p_data => x_msg_data

Line 1503: fnd_msg_pub.count_and_get (p_count => x_msg_count,

1499: THEN
1500: fnd_msg_pub.add_exc_msg (c_default_module, l_api_name);
1501: END IF;
1502:
1503: fnd_msg_pub.count_and_get (p_count => x_msg_count,
1504: p_data => x_msg_data
1505: );
1506: xla_exceptions_pkg.raise_message (p_location => 'XLA_FSAH_INT_PVT.reverse_journal_entries'
1507: );