DBA Data[Home] [Help]

APPS.CSF_GANTT_DATA_PKG dependencies on STANDARD

Line 4129: --standard call to get message count and the message information

4125: x_return_status := fnd_api.g_ret_sts_unexp_error;
4126: RAISE fnd_api.g_exc_unexpected_error;
4127: END IF;
4128:
4129: --standard call to get message count and the message information
4130: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
4131: --
4132: EXCEPTION
4133: WHEN fnd_api.g_exc_error THEN

Line 4627: -- Standard start of API savepoint

4623: SELECT object_version_number
4624: FROM jtf_tasks_b
4625: WHERE task_id = p_task_id;
4626: BEGIN
4627: -- Standard start of API savepoint
4628: SAVEPOINT drag_n_drop;
4629:
4630: -- Standard call to check for call compatibility
4631: IF NOT fnd_api.compatible_api_call(l_api_version, p_api_version, l_api_name

Line 4630: -- Standard call to check for call compatibility

4626: BEGIN
4627: -- Standard start of API savepoint
4628: SAVEPOINT drag_n_drop;
4629:
4630: -- Standard call to check for call compatibility
4631: IF NOT fnd_api.compatible_api_call(l_api_version, p_api_version, l_api_name
4632: , 'csf_gantt_data_pkg') THEN
4633: RAISE fnd_api.g_exc_unexpected_error;
4634: END IF;

Line 4892: -- Standard check of p_commit

4888: RAISE fnd_api.g_exc_error;
4889: END IF;
4890: END IF;
4891:
4892: -- Standard check of p_commit
4893: IF fnd_api.to_boolean(p_commit) THEN
4894: COMMIT WORK;
4895: END IF;
4896:

Line 4897: -- Standard call to get message count and if count is 1, get message info

4893: IF fnd_api.to_boolean(p_commit) THEN
4894: COMMIT WORK;
4895: END IF;
4896:
4897: -- Standard call to get message count and if count is 1, get message info
4898: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
4899: EXCEPTION
4900: WHEN fnd_api.g_exc_error THEN
4901: ROLLBACK TO drag_n_drop;