DBA Data[Home] [Help]

APPS.AMS_LIST_ASSOC_PVT dependencies on FND_MESSAGE

Line 634: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');

630:
631: IF (c_List_Assoc%NOTFOUND) THEN
632: CLOSE c_List_Assoc;
633: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
634: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
635: FND_MSG_PUB.add;
636: END IF;
637: RAISE FND_API.g_exc_error;
638: END IF;

Line 839: FND_MESSAGE.set_name('AMS', 'do_not_contact_flag is neither Y nor N');

835: END IF;
836:
837: IF p_list_assoc_rec.do_not_contact_flag<>'Y' AND p_list_assoc_rec.do_not_contact_flag<>'N' THEN
838: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
839: FND_MESSAGE.set_name('AMS', 'do_not_contact_flag is neither Y nor N');
840: FND_MSG_PUB.add;
841: END IF;
842: RAISE FND_API.g_exc_error;
843: RETURN;

Line 849: FND_MESSAGE.set_name('AMS', 'list_used_by is neither CAMP nor MEDI');

845:
846: IF p_list_assoc_rec.list_used_by<>'CAMP' AND p_list_assoc_rec.list_used_by <> 'MEDI' THEN
847: IF p_list_assoc_rec.do_not_contact_flag <> 'Y' THEN
848: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
849: FND_MESSAGE.set_name('AMS', 'list_used_by is neither CAMP nor MEDI');
850: FND_MSG_PUB.add;
851: END IF;
852: RAISE FND_API.g_exc_error;
853: RETURN;

Line 866: FND_MESSAGE.set_name('AMS', 'MEDIA_ID_NOT_VALID');

862: IF p_list_assoc_rec.do_not_contact_flag <> 'Y' AND
863: p_list_assoc_rec.list_used_by = 'MEDI' THEN
864: CLOSE c_media_id;
865: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
866: FND_MESSAGE.set_name('AMS', 'MEDIA_ID_NOT_VALID');
867: FND_MSG_PUB.add;
868: END IF;
869: RAISE FND_API.g_exc_error;
870: END IF;

Line 883: FND_MESSAGE.set_name('AMS', 'CAMPAIGN_ID_NOT_VALID');

879: IF p_list_assoc_rec.do_not_contact_flag <> 'Y' AND
880: p_list_assoc_rec.list_used_by ='CAMP' THEN
881: CLOSE c_camp_id;
882: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
883: FND_MESSAGE.set_name('AMS', 'CAMPAIGN_ID_NOT_VALID');
884: FND_MSG_PUB.add;
885: END IF;
886: RAISE FND_API.g_exc_error;
887: END IF;