DBA Data[Home] [Help]

APPS.JTF_LOC_TYPES_PVT dependencies on FND_MESSAGE

Line 77: FND_MESSAGE.set_name('JTF', 'JTF_API_RECORD_NOT_FOUND');

73: FETCH c_loc_type_b INTO l_loc_type_id;
74: IF (c_loc_type_b%NOTFOUND) THEN
75: CLOSE c_loc_type_b;
76: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
77: FND_MESSAGE.set_name('JTF', 'JTF_API_RECORD_NOT_FOUND');
78: FND_MSG_PUB.add;
79: END IF;
80: RAISE FND_API.g_exc_error;
81: END IF;

Line 89: FND_MESSAGE.set_name('JTF', 'JTF_API_RECORD_NOT_FOUND');

85: FETCH c_loc_type_tl INTO l_loc_type_id;
86: IF (c_loc_type_tl%NOTFOUND) THEN
87: CLOSE c_loc_type_tl;
88: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
89: FND_MESSAGE.set_name('JTF', 'JTF_API_RECORD_NOT_FOUND');
90: FND_MSG_PUB.add;
91: END IF;
92: RAISE FND_API.g_exc_error;
93: END IF;

Line 110: FND_MESSAGE.set_name('JTF', 'JTF_API_RESOURCE_LOCKED');

106:
107: WHEN JTF_Utility_PVT.resource_locked THEN
108: x_return_status := FND_API.g_ret_sts_error;
109: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
110: FND_MESSAGE.set_name('JTF', 'JTF_API_RESOURCE_LOCKED');
111: FND_MSG_PUB.add;
112: END IF;
113:
114: FND_MSG_PUB.count_and_get(

Line 237: FND_MESSAGE.set_name('JTF', 'JTF_API_RECORD_NOT_FOUND');

233: AND object_version_number = p_loc_type_rec.object_version_number;
234:
235: IF (SQL%NOTFOUND) THEN
236: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
237: FND_MESSAGE.set_name('JTF', 'JTF_API_RECORD_NOT_FOUND');
238: FND_MSG_PUB.add;
239: END IF;
240: RAISE FND_API.g_exc_error;
241: END IF;

Line 256: FND_MESSAGE.set_name('JTF', 'JTF_API_RECORD_NOT_FOUND');

252: AND USERENV('LANG') IN (language, source_lang);
253:
254: IF (SQL%NOTFOUND) THEN
255: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
256: FND_MESSAGE.set_name('JTF', 'JTF_API_RECORD_NOT_FOUND');
257: FND_MSG_PUB.add;
258: END IF;
259: RAISE FND_API.g_exc_error;
260: END IF;

Line 390: FND_MESSAGE.set_name('JTF', 'JTF_LOC_TYPE_NO_TYPE_ID');

386:
387: -- check location_type_id
388: IF p_loc_type_rec.location_type_id IS NULL THEN
389: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
390: FND_MESSAGE.set_name('JTF', 'JTF_LOC_TYPE_NO_TYPE_ID');
391: FND_MSG_PUB.add;
392: END IF;
393:
394: x_return_status := FND_API.g_ret_sts_error;

Line 402: FND_MESSAGE.set_name('JTF', 'JTF_API_NO_OBJ_VER_NUM');

398:
399: -- check object_version_number
400: IF p_loc_type_rec.object_version_number IS NULL THEN
401: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
402: FND_MESSAGE.set_name('JTF', 'JTF_API_NO_OBJ_VER_NUM');
403: FND_MSG_PUB.add;
404: END IF;
405:
406: x_return_status := FND_API.g_ret_sts_error;

Line 413: FND_MESSAGE.set_name('JTF', 'JTF_LOC_TYPE_NO_TYPE_CODE');

409:
410: -- check location_type_code
411: IF p_loc_type_rec.location_type_code IS NULL THEN
412: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
413: FND_MESSAGE.set_name('JTF', 'JTF_LOC_TYPE_NO_TYPE_CODE');
414: FND_MSG_PUB.add;
415: END IF;
416:
417: x_return_status := FND_API.g_ret_sts_error;

Line 425: FND_MESSAGE.set_name('JTF', 'JTF_LOC_TYPE_NO_TYPE_NAME');

421:
422: -- check location_type_name
423: IF p_loc_type_rec.location_type_name IS NULL THEN
424: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
425: FND_MESSAGE.set_name('JTF', 'JTF_LOC_TYPE_NO_TYPE_NAME');
426: FND_MSG_PUB.add;
427: END IF;
428:
429: x_return_status := FND_API.g_ret_sts_error;

Line 468: FND_MESSAGE.set_name('JTF', 'JTF_LOC_TYPE_DUP_NAME_LANG');

464: );
465:
466: IF l_uk_flag = FND_API.g_false THEN
467: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
468: FND_MESSAGE.set_name('JTF', 'JTF_LOC_TYPE_DUP_NAME_LANG');
469: FND_MSG_PUB.add;
470: END IF;
471:
472: x_return_status := FND_API.g_ret_sts_error;