DBA Data[Home] [Help]

APPS.CCT_IVR_PUB dependencies on STANDARD

Line 124: -- Standard start of API savepoint

120: l_YYYY VARCHAR2 (128);
121: l_ZZZZ VARCHAR2 (128);
122:
123: BEGIN
124: -- Standard start of API savepoint
125: SAVEPOINT create_ivr_pub;
126:
127: -- Initialize API return status to success
128: x_return_status := fnd_api.g_ret_sts_success;

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

127: -- Initialize API return status to success
128: x_return_status := fnd_api.g_ret_sts_success;
129: x_app_data := NULL;
130:
131: -- Standard call to check for call compatibility
132: IF NOT fnd_api.compatible_api_call(l_api_version, p_api_version,
133: l_api_name, g_pkg_name) THEN
134: RAISE fnd_api.g_exc_unexpected_error;
135: END IF;

Line 239: -- Standard check of p_commit

235: );
236:
237:
238: ---------------------------------------------------------
239: -- Standard check of p_commit
240: IF fnd_api.to_boolean(l_commit) THEN
241: COMMIT WORK;
242: END IF;
243:

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

258: dbms_output.put_line ('Output = ' || x_app_data);
259:
260: ****/
261:
262: -- Standard call to get message count and if count is 1, get message info
263: fnd_msg_pub.count_and_get
264: ( p_count => x_msg_count,
265: p_data => x_msg_data );
266: