DBA Data[Home] [Help]

APPS.EAM_ASSETATTR_VALUE_PUB dependencies on FND_MESSAGE

Line 137: FND_MESSAGE.SET_NAME ('EAM', ERROR);

133: IS
134: BEGIN
135:
136:
137: FND_MESSAGE.SET_NAME ('EAM', ERROR);
138: FND_MSG_PUB.ADD;
139: RAISE FND_API.G_EXC_ERROR;
140: END;
141:

Line 152: fnd_message.set_name('EAM', 'EAM_INVALID_APPLICATION_ID');

148: l_appl_name varchar2(30) ;
149: BEGIN
150: if p_application_id is null or p_application_id <> 401
151: then
152: fnd_message.set_name('EAM', 'EAM_INVALID_APPLICATION_ID');
153: fnd_msg_pub.add;
154: RAISE fnd_api.g_exc_error;
155: end if;
156: END;

Line 178: fnd_message.set_name('EAM', 'EAM_INVALID_MAINT_OBJ_ID');

174: end if;
175:
176:
177: if l_count = 0 then
178: fnd_message.set_name('EAM', 'EAM_INVALID_MAINT_OBJ_ID');
179: fnd_msg_pub.add;
180: RAISE fnd_api.g_exc_error;
181: end if;
182:

Line 202: fnd_message.set_name('EAM', 'EAM_INVALID_ASSOCIATION_GROUP');

198: inventory_item_id = p_inventory_item_id
199: and descriptive_flex_context_code=p_attribute_category;
200:
201: if l_count = 0 then
202: fnd_message.set_name('EAM', 'EAM_INVALID_ASSOCIATION_GROUP');
203: fnd_msg_pub.add;
204: RAISE fnd_api.g_exc_error;
205: end if;
206: END;

Line 236: fnd_message.set_name('EAM', 'EAM_AAV_INVALID_DFF_CONTEXT');

232: AND DESCRIPTIVE_FLEX_CONTEXT_CODE = p_attribute_category;
233:
234: if l_count = 0
235: then
236: fnd_message.set_name('EAM', 'EAM_AAV_INVALID_DFF_CONTEXT');
237: fnd_msg_pub.add;
238: RAISE fnd_api.g_exc_error;
239: end if;
240:

Line 347: FND_MESSAGE.SET_NAME('EAM', 'EAM_INVALID_DESC_FLEX');

343:
344: if (not l_validated) then
345: l_error_segments:=FND_FLEX_DESCVAL.error_segment;
346: l_error_message:= substr(fnd_flex_descval.error_message,1,4000);
347: FND_MESSAGE.SET_NAME('EAM', 'EAM_INVALID_DESC_FLEX');
348: FND_MESSAGE.SET_TOKEN('ERROR_MSG', l_error_message);
349: FND_MSG_PUB.Add;
350: RAISE FND_API.G_EXC_ERROR;
351: end if;

Line 348: FND_MESSAGE.SET_TOKEN('ERROR_MSG', l_error_message);

344: if (not l_validated) then
345: l_error_segments:=FND_FLEX_DESCVAL.error_segment;
346: l_error_message:= substr(fnd_flex_descval.error_message,1,4000);
347: FND_MESSAGE.SET_NAME('EAM', 'EAM_INVALID_DESC_FLEX');
348: FND_MESSAGE.SET_TOKEN('ERROR_MSG', l_error_message);
349: FND_MSG_PUB.Add;
350: RAISE FND_API.G_EXC_ERROR;
351: end if;
352:

Line 378: fnd_message.set_name('EAM', 'EAM_ATTR_VALUES_REC_NOT_FOUND');

374: if l_count = 0
375: then
376: if NOT p_create_flag
377: then
378: fnd_message.set_name('EAM', 'EAM_ATTR_VALUES_REC_NOT_FOUND');
379: fnd_msg_pub.add;
380: RAISE fnd_api.g_exc_error;
381: END IF;
382: else

Line 385: fnd_message.set_name('EAM', 'EAM_ATTR_VALUES_REC_EXISTS');

381: END IF;
382: else
383: if p_create_flag
384: then
385: fnd_message.set_name('EAM', 'EAM_ATTR_VALUES_REC_EXISTS');
386: fnd_msg_pub.add;
387: RAISE fnd_api.g_exc_error;
388: END IF;
389: end if;

Line 503: fnd_message.set_name('EAM', 'EAM_ABO_INVALID_CR_ORG_ID');

499: /* Anand- for creation_organization_id = organization_id */
500: l_org_id := P_ORGANIZATION_ID;
501: if (P_CREATION_ORGANIZATION_ID IS NOT NULL) then
502: if P_CREATION_ORGANIZATION_ID <> P_ORGANIZATION_ID then
503: fnd_message.set_name('EAM', 'EAM_ABO_INVALID_CR_ORG_ID');
504: fnd_msg_pub.add;
505: RAISE fnd_api.g_exc_error;
506: else
507:

Line 525: fnd_message.set_name('EAM', 'EAM_ABO_INVALID_ORG_ID');

521: x_msg_count => l_msg_count ,
522: x_msg_data => l_msg_data);
523: if l_boolean = 0
524: then
525: fnd_message.set_name('EAM', 'EAM_ABO_INVALID_ORG_ID');
526: fnd_msg_pub.add;
527: RAISE fnd_api.g_exc_error;
528: end if;
529: end if;

Line 535: fnd_message.set_name('EAM', 'EAM_NOT_ENOUGH_PARAM');

531: /* validate / populate inventory_item_id, serial_number, maintenance_object_id, maintenance_object_type */
532:
533: IF ((p_maintenance_object_type is null or p_maintenance_object_id is null) and
534: (p_inventory_item_id is null or p_serial_number is null)) THEN
535: fnd_message.set_name('EAM', 'EAM_NOT_ENOUGH_PARAM');
536: fnd_msg_pub.add;
537: RAISE FND_API.G_EXC_ERROR;
538: END IF;
539:

Line 541: fnd_message.set_name('EAM', 'EAM_ABO_INVALID_MAINT_OBJ_TYPE');

537: RAISE FND_API.G_EXC_ERROR;
538: END IF;
539:
540: IF (p_maintenance_object_type is not null and p_maintenance_object_type <> 3) THEN
541: fnd_message.set_name('EAM', 'EAM_ABO_INVALID_MAINT_OBJ_TYPE');
542: fnd_msg_pub.add;
543: RAISE FND_API.G_EXC_ERROR;
544: END IF;
545:

Line 740: fnd_message.set_name('EAM', 'EAM_EZWO_ASSET_BAD');

736: l_serial_number,
737: l_item_type
738: )
739: THEN
740: fnd_message.set_name('EAM', 'EAM_EZWO_ASSET_BAD');
741: fnd_msg_pub.add;
742: RAISE fnd_api.g_exc_error;
743: END IF;
744: */

Line 1037: fnd_message.set_name('EAM', 'EAM_ABO_INVALID_CR_ORG_ID');

1033:
1034: l_org_id := P_ORGANIZATION_ID;
1035: if (P_CREATION_ORGANIZATION_ID IS NOT NULL) then
1036: if P_CREATION_ORGANIZATION_ID <> P_ORGANIZATION_ID then
1037: fnd_message.set_name('EAM', 'EAM_ABO_INVALID_CR_ORG_ID');
1038: fnd_msg_pub.add;
1039: RAISE fnd_api.g_exc_error;
1040: else
1041:

Line 1059: fnd_message.set_name('EAM', 'EAM_ABO_INVALID_ORG_ID');

1055: x_msg_count => l_msg_count ,
1056: x_msg_data => l_msg_data);
1057: if l_boolean = 0
1058: then
1059: fnd_message.set_name('EAM', 'EAM_ABO_INVALID_ORG_ID');
1060: fnd_msg_pub.add;
1061: RAISE fnd_api.g_exc_error;
1062: end if;
1063: end if;

Line 1070: fnd_message.set_name('EAM', 'EAM_NOT_ENOUGH_PARAM');

1066: /* validate / populate inventory_item_id, serial_number, maintenance_object_id, maintenance_object_type */
1067:
1068: IF ((p_maintenance_object_type is null or p_maintenance_object_id is null) and
1069: (p_inventory_item_id is null or p_serial_number is null)) THEN
1070: fnd_message.set_name('EAM', 'EAM_NOT_ENOUGH_PARAM');
1071: fnd_msg_pub.add;
1072: RAISE FND_API.G_EXC_ERROR;
1073: END IF;
1074:

Line 1076: fnd_message.set_name('EAM', 'EAM_ABO_INVALID_MAINT_OBJ_TYPE');

1072: RAISE FND_API.G_EXC_ERROR;
1073: END IF;
1074:
1075: IF (p_maintenance_object_type is not null and p_maintenance_object_type <> 3) THEN
1076: fnd_message.set_name('EAM', 'EAM_ABO_INVALID_MAINT_OBJ_TYPE');
1077: fnd_msg_pub.add;
1078: RAISE FND_API.G_EXC_ERROR;
1079: END IF;
1080: