DBA Data[Home] [Help]

APPS.CSF_GPS_PUB dependencies on FND_API

Line 269: IF NOT fnd_api.compatible_api_call(1.0, p_api_version, l_api_name, g_pkg_name) THEN

265: BEGIN
266: SAVEPOINT csf_save_location_feeds;
267:
268: -- Check for API Compatibility
269: IF NOT fnd_api.compatible_api_call(1.0, p_api_version, l_api_name, g_pkg_name) THEN
270: RAISE fnd_api.g_exc_unexpected_error;
271: END IF;
272:
273: -- Initialize Message Stack if required

Line 270: RAISE fnd_api.g_exc_unexpected_error;

266: SAVEPOINT csf_save_location_feeds;
267:
268: -- Check for API Compatibility
269: IF NOT fnd_api.compatible_api_call(1.0, p_api_version, l_api_name, g_pkg_name) THEN
270: RAISE fnd_api.g_exc_unexpected_error;
271: END IF;
272:
273: -- Initialize Message Stack if required
274: IF p_init_msg_list = fnd_api.g_true THEN

Line 274: IF p_init_msg_list = fnd_api.g_true THEN

270: RAISE fnd_api.g_exc_unexpected_error;
271: END IF;
272:
273: -- Initialize Message Stack if required
274: IF p_init_msg_list = fnd_api.g_true THEN
275: fnd_msg_pub.initialize;
276: END IF;
277:
278: -- Initialize Return Status

Line 279: x_return_status := fnd_api.g_ret_sts_success;

275: fnd_msg_pub.initialize;
276: END IF;
277:
278: -- Initialize Return Status
279: x_return_status := fnd_api.g_ret_sts_success;
280:
281: FORALL i IN 1..p_count
282: INSERT INTO csf_gps_location_feeds(
283: location_feed_id

Line 309: IF fnd_api.to_boolean(p_commit) THEN

305: , p_parked_time_tbl(i)
306: , p_address_tbl(i)
307: );
308:
309: IF fnd_api.to_boolean(p_commit) THEN
310: COMMIT;
311: END IF;
312: EXCEPTION
313: WHEN OTHERS THEN

Line 314: x_return_status := fnd_api.g_ret_sts_unexp_error;

310: COMMIT;
311: END IF;
312: EXCEPTION
313: WHEN OTHERS THEN
314: x_return_status := fnd_api.g_ret_sts_unexp_error;
315: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
316: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
317: END IF;
318: fnd_msg_pub.count_and_get(p_data => x_msg_data, p_count => x_msg_count);