DBA Data[Home] [Help]

APPS.EAM_BUSINESSOBJECT_APITYPE dependencies on STANDARD

Line 57: -- Standard Start of API savepoint

53: l_api_name CONSTANT VARCHAR2(30) := 'apiname';
54: l_api_version CONSTANT NUMBER := 1.0;
55: l_full_name CONSTANT VARCHAR2(60) := g_pkg_name || '.' || l_api_name;
56: BEGIN
57: -- Standard Start of API savepoint
58: SAVEPOINT apiname_apitype;
59:
60: -- Standard call to check for call compatibility.
61: IF NOT fnd_api.compatible_api_call(

Line 60: -- Standard call to check for call compatibility.

56: BEGIN
57: -- Standard Start of API savepoint
58: SAVEPOINT apiname_apitype;
59:
60: -- Standard call to check for call compatibility.
61: IF NOT fnd_api.compatible_api_call(
62: l_api_version
63: ,p_api_version
64: ,l_api_name

Line 80: -- Standard check of p_commit.

76:
77: -- API body
78:
79: -- End of API body.
80: -- Standard check of p_commit.
81: IF fnd_api.to_boolean(p_commit) THEN
82: COMMIT WORK;
83: END IF;
84:

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

81: IF fnd_api.to_boolean(p_commit) THEN
82: COMMIT WORK;
83: END IF;
84:
85: -- Standard call to get message count and if count is 1, get message info.
86: fnd_msg_pub.count_and_get(
87: p_count => x_msg_count
88: ,p_data => x_msg_data);
89: EXCEPTION