DBA Data[Home] [Help]

APPS.CSF_GANTT_DATA_PKG dependencies on STANDARD

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

1616: x_return_status := fnd_api.g_ret_sts_unexp_error;
1617: RAISE fnd_api.g_exc_unexpected_error;
1618: END IF;
1619:
1620: --standard call to get message count and the message information
1621: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
1622: --
1623: EXCEPTION
1624: WHEN fnd_api.g_exc_error THEN

Line 2039: -- Standard start of API savepoint

2035: FROM jtf_tasks_b
2036: WHERE task_id = p_task_id;
2037:
2038: BEGIN
2039: -- Standard start of API savepoint
2040: SAVEPOINT drag_n_drop;
2041:
2042: -- Standard call to check for call compatibility
2043: IF NOT fnd_api.compatible_api_call(l_api_version, p_api_version, l_api_name

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

2038: BEGIN
2039: -- Standard start of API savepoint
2040: SAVEPOINT drag_n_drop;
2041:
2042: -- Standard call to check for call compatibility
2043: IF NOT fnd_api.compatible_api_call(l_api_version, p_api_version, l_api_name
2044: , 'csf_gantt_data_pkg') THEN
2045: RAISE fnd_api.g_exc_unexpected_error;
2046: END IF;

Line 2228: -- Standard check of p_commit

2224: RAISE fnd_api.g_exc_error;
2225: END IF;
2226: END IF;
2227:
2228: -- Standard check of p_commit
2229: IF fnd_api.to_boolean(p_commit) THEN
2230: COMMIT WORK;
2231: END IF;
2232:

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

2229: IF fnd_api.to_boolean(p_commit) THEN
2230: COMMIT WORK;
2231: END IF;
2232:
2233: -- Standard call to get message count and if count is 1, get message info
2234: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
2235: EXCEPTION
2236: WHEN fnd_api.g_exc_error THEN
2237: ROLLBACK TO drag_n_drop;