DBA Data[Home] [Help]

APPS.EAM_COMPLETION dependencies on FND_API

Line 487: IF NOT fnd_api.compatible_api_call(l_api_version, p_api_version,

483: -- Standard Start of API savepoint
484: SAVEPOINT apiname_apitype;
485:
486: /*Standard call to check for call compatibility.
487: IF NOT fnd_api.compatible_api_call(l_api_version, p_api_version,
488: l_api_name, g_pkg_name) THEN
489: RAISE fnd_api.g_exc_unexpected_error;
490: END IF;
491:

Line 489: RAISE fnd_api.g_exc_unexpected_error;

485:
486: /*Standard call to check for call compatibility.
487: IF NOT fnd_api.compatible_api_call(l_api_version, p_api_version,
488: l_api_name, g_pkg_name) THEN
489: RAISE fnd_api.g_exc_unexpected_error;
490: END IF;
491:
492: -- Initialize message list if p_init_msg_list is set to TRUE.
493: IF fnd_api.to_boolean(p_init_msg_list) THEN

Line 493: IF fnd_api.to_boolean(p_init_msg_list) THEN

489: RAISE fnd_api.g_exc_unexpected_error;
490: END IF;
491:
492: -- Initialize message list if p_init_msg_list is set to TRUE.
493: IF fnd_api.to_boolean(p_init_msg_list) THEN
494: fnd_msg_pub.initialize;
495: END IF;*/
496:
497: -- Initialize API return status to success

Line 541: WHEN fnd_api.g_exc_error THEN

537: -- Standard call to get message count and if count is 1, get message info.
538: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
539:
540: EXCEPTION
541: WHEN fnd_api.g_exc_error THEN
542: ROLLBACK TO apiname_apitype;
543: x_return_status := 1;
544: fnd_msg_pub.count_and_get(p_count => x_msg_count,
545: p_data => x_msg_data);

Line 547: WHEN fnd_api.g_exc_unexpected_error THEN

543: x_return_status := 1;
544: fnd_msg_pub.count_and_get(p_count => x_msg_count,
545: p_data => x_msg_data);
546:
547: WHEN fnd_api.g_exc_unexpected_error THEN
548: ROLLBACK TO apiname_apitype;
549: x_return_status := 1;
550: fnd_msg_pub.count_and_get(
551: p_count => x_msg_count

Line 666: x_commit IN VARCHAR2 := fnd_api.g_false,

662: x_request_id IN NUMBER := null,
663: x_application_id IN NUMBER := null,
664: x_program_id IN NUMBER := null,
665: x_reconcil_code IN VARCHAR2 := null,
666: x_commit IN VARCHAR2 := fnd_api.g_false,
667: x_actual_start_date IN DATE,
668: x_actual_end_date IN DATE,
669: x_actual_duration IN NUMBER,
670: x_subinventory IN VARCHAR2 := null,

Line 768: x_commit IN VARCHAR2 := fnd_api.g_false,

764: x_reference IN VARCHAR2 := null,
765: x_qa_collection_id IN NUMBER := null,
766: x_shutdown_start_date IN DATE := null,
767: x_shutdown_end_date IN DATE := null,
768: x_commit IN VARCHAR2 := fnd_api.g_false,
769: x_attribute_category IN VARCHAR2 := null,
770: x_attribute1 IN VARCHAR2 := null,
771: x_attribute2 IN VARCHAR2 := null,
772: x_attribute3 IN VARCHAR2 := null,

Line 865: * x_commit default to fnd_api.g_true

861: * x_qa_collection_id For regular EAM work order only
862: * (null if the the work order is not under QA control)
863: * x_shutdown_start_date Shutdown information for regular EAM
864: * x_shutdown_end_date Shutdown information for regular EAM
865: * x_commit default to fnd_api.g_true
866: * whether to commit the changes to DB
867: * x_attribute_category For descriptive flex field
868: * x_attribute1-15 For descriptive flex field
869: * errCode OUT 0 if procedure success, 1 otherwise

Line 892: x_commit IN VARCHAR2 := fnd_api.g_false,

888: x_reference IN VARCHAR2 := null,
889: x_qa_collection_id IN NUMBER := null,
890: x_shutdown_start_date IN DATE := null,
891: x_shutdown_end_date IN DATE := null,
892: x_commit IN VARCHAR2 := fnd_api.g_false,
893: x_attribute_category IN VARCHAR2 := null,
894: x_attribute1 IN VARCHAR2 := null,
895: x_attribute2 IN VARCHAR2 := null,
896: x_attribute3 IN VARCHAR2 := null,

Line 1851: if (x_commit = fnd_api.g_true) then

1847:
1848: END IF; --end of check for EAM workorders
1849:
1850:
1851: if (x_commit = fnd_api.g_true) then
1852: COMMIT; -- commit all changes
1853: end if;
1854:
1855: END complete_work_order_generic;