DBA Data[Home] [Help]

APPS.AMS_EVHRULES_PVT dependencies on FND_MESSAGE

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

177: FETCH c_evh INTO l_evh_rec;
178: IF c_evh%NOTFOUND THEN
179: CLOSE c_evh;
180: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
181: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
182: FND_MSG_PUB.add;
183: END IF;
184: RAISE FND_API.g_exc_error;
185: END IF;

Line 1049: FND_MESSAGE.set_name('AMS', 'AMS_PROGRAM_NOT_ACTIVE');

1045: l_system_status_code := AMS_Utility_PVT.get_system_status_code(p_user_status_id);
1046: l_parent_system_status_code := AMS_Utility_PVT.get_system_status_code(l_old_status_id1);
1047:
1048: If l_system_status_code = 'ACTIVE' and l_parent_system_status_code <> 'ACTIVE'THEN
1049: FND_MESSAGE.set_name('AMS', 'AMS_PROGRAM_NOT_ACTIVE');
1050: FND_MSG_PUB.add;
1051: RAISE FND_API.g_exc_error;
1052: END IF;
1053:

Line 1074: FND_MESSAGE.set_name('AMS', 'AMS_EVENT_NOT_ACTIVE');

1070: l_parent_system_status_code := AMS_Utility_PVT.get_system_status_code(l_old_status_id1);
1071:
1072: If l_system_status_code = 'ACTIVE' and l_parent_system_status_code <> 'ACTIVE'THEN
1073: -- changed 'AMS_EVENT_NOT ACTIVE' to 'AMS_EVENT_NOT_ACTIVE'
1074: FND_MESSAGE.set_name('AMS', 'AMS_EVENT_NOT_ACTIVE');
1075: FND_MSG_PUB.add;
1076: RAISE FND_API.g_exc_error;
1077: END IF;
1078:

Line 1098: FND_MESSAGE.set_name('AMS', 'AMS_PROGRAM_NOT_ACTIVE');

1094: l_system_status_code := AMS_Utility_PVT.get_system_status_code(p_user_status_id);
1095: l_parent_system_status_code := AMS_Utility_PVT.get_system_status_code(l_old_status_id1);
1096:
1097: If l_system_status_code = 'ACTIVE' and l_parent_system_status_code <> 'ACTIVE'THEN
1098: FND_MESSAGE.set_name('AMS', 'AMS_PROGRAM_NOT_ACTIVE');
1099: FND_MSG_PUB.add;
1100: RAISE FND_API.g_exc_error;
1101: END IF;
1102:

Line 1615: FND_MESSAGE.set_name ('AMS', 'AMS_IMP_LOADED_NO_ROWS');

1611: CLOSE c_loaded_rows_for_lead;
1612:
1613: -- Later add a new message for the following.
1614: -- Using the one from Lists area for now.
1615: FND_MESSAGE.set_name ('AMS', 'AMS_IMP_LOADED_NO_ROWS');
1616: FND_MESSAGE.set_token ('NUM_ROWS', l_loaded_rows);
1617:
1618: l_request_id := 0;
1619:

Line 1616: FND_MESSAGE.set_token ('NUM_ROWS', l_loaded_rows);

1612:
1613: -- Later add a new message for the following.
1614: -- Using the one from Lists area for now.
1615: FND_MESSAGE.set_name ('AMS', 'AMS_IMP_LOADED_NO_ROWS');
1616: FND_MESSAGE.set_token ('NUM_ROWS', l_loaded_rows);
1617:
1618: l_request_id := 0;
1619:
1620: -- Call the concurrent program for leads.

Line 1645: FND_MESSAGE.set_name ('AMS', 'AMS_IMP_LOAD_COMPLETE');

1641:
1642: -- Import completed successfully
1643: -- Later add a new message for the following.
1644: -- Using the one from Lists area.
1645: FND_MESSAGE.set_name ('AMS', 'AMS_IMP_LOAD_COMPLETE');
1646: FND_MESSAGE.set_token ('REQUEST_ID', l_request_id);
1647:
1648: END process_leads;
1649:

Line 1646: FND_MESSAGE.set_token ('REQUEST_ID', l_request_id);

1642: -- Import completed successfully
1643: -- Later add a new message for the following.
1644: -- Using the one from Lists area.
1645: FND_MESSAGE.set_name ('AMS', 'AMS_IMP_LOAD_COMPLETE');
1646: FND_MESSAGE.set_token ('REQUEST_ID', l_request_id);
1647:
1648: END process_leads;
1649:
1650: --=======================================================================

Line 2594: FND_MESSAGE.set_name('INV', l_err_txt); -- error_tbl(i).message_name);

2590: p_count => x_msg_count,
2591: p_data => x_msg_data
2592: );
2593: */
2594: FND_MESSAGE.set_name('INV', l_err_txt); -- error_tbl(i).message_name);
2595: FND_MSG_PUB.add;
2596: --END LOOP;
2597:
2598: WHEN FND_API.g_exc_unexpected_error THEN

Line 2762: FND_MESSAGE.set_name('AMS', 'AMS_EVH_CANNOT_CANCEL');

2758: object_version_number = l_evh_obj_ver + 1
2759: WHERE event_header_id = p_event_header_id;
2760: ELSE
2761:
2762: FND_MESSAGE.set_name('AMS', 'AMS_EVH_CANNOT_CANCEL');
2763: FND_MSG_PUB.add;
2764: RAISE FND_API.g_exc_error;
2765:
2766: END IF;