DBA Data[Home] [Help]

APPS.EAM_ASSET_ROUTES_PUB dependencies on FND_MESSAGE

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

99: IS
100: BEGIN
101:
102:
103: FND_MESSAGE.SET_NAME ('EAM', ERROR);
104: FND_MSG_PUB.ADD;
105: RAISE FND_API.G_EXC_ERROR;
106: END;
107:

Line 155: fnd_message.set_name('EAM', 'EAM_ARO_INV_GENOBJ_NOTFOUND');

151: if c_val_object_id%FOUND
152: THEN
153: IF P_OBJECT_ID <> L_GEN_OBJ_ID
154: THEN
155: fnd_message.set_name('EAM', 'EAM_ARO_INV_GENOBJ_NOTFOUND');
156: fnd_msg_pub.add;
157: RAISE fnd_api.g_exc_error;
158: END IF;
159: ELSE

Line 160: fnd_message.set_name('EAM', 'EAM_ARO_INV_GENOBJ_NOTFOUND');

156: fnd_msg_pub.add;
157: RAISE fnd_api.g_exc_error;
158: END IF;
159: ELSE
160: fnd_message.set_name('EAM', 'EAM_ARO_INV_GENOBJ_NOTFOUND');
161: fnd_msg_pub.add;
162: RAISE fnd_api.g_exc_error;
163: END IF;
164:

Line 167: fnd_message.set_name('EAM', 'EAM_ARO_INV_ASSET_TYPE');

163: END IF;
164:
165: elsif p_eam_item_type = 2
166: then
167: fnd_message.set_name('EAM', 'EAM_ARO_INV_ASSET_TYPE');
168: fnd_msg_pub.add;
169: RAISE fnd_api.g_exc_error;
170: end if;
171:

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

235: x_error_segments => l_error_segments,
236: x_error_message => l_error_message
237: )
238: then
239: FND_MESSAGE.SET_NAME('EAM', 'EAM_INVALID_DESC_FLEX');
240: FND_MESSAGE.SET_TOKEN('ERROR_MSG', l_error_message);
241: FND_MSG_PUB.Add;
242: RAISE FND_API.G_EXC_ERROR;
243: end if;

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

236: x_error_message => l_error_message
237: )
238: then
239: FND_MESSAGE.SET_NAME('EAM', 'EAM_INVALID_DESC_FLEX');
240: FND_MESSAGE.SET_TOKEN('ERROR_MSG', l_error_message);
241: FND_MSG_PUB.Add;
242: RAISE FND_API.G_EXC_ERROR;
243: end if;
244:

Line 270: fnd_message.set_name('EAM', 'EAM_NETWORK_REC_NOT_FOUND');

266: AND decode(p_create_flag, 0, NETWORK_ASSOCIATION_ID,1) =
267: decode(p_create_flag, 0, p_network_association_id,1);
268: if (l_count = 0) then
269: if (p_create_flag = 0) then
270: fnd_message.set_name('EAM', 'EAM_NETWORK_REC_NOT_FOUND');
271: fnd_msg_pub.add;
272: RAISE fnd_api.g_exc_error;
273: END IF;
274: else

Line 276: fnd_message.set_name('EAM', 'EAM_NETWORK_REC_EXISTS');

272: RAISE fnd_api.g_exc_error;
273: END IF;
274: else
275: if (p_create_flag = 1) then
276: fnd_message.set_name('EAM', 'EAM_NETWORK_REC_EXISTS');
277: fnd_msg_pub.add;
278: RAISE fnd_api.g_exc_error;
279: END IF;
280: end if;

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

383: x_msg_count => l_msg_count ,
384: x_msg_data => l_msg_data);
385: if l_boolean = 0
386: then
387: fnd_message.set_name('EAM', 'EAM_ABO_INVALID_ORG_ID');
388: fnd_msg_pub.add;
389: RAISE fnd_api.g_exc_error;
390: end if;
391:

Line 398: fnd_message.set_name('EAM', 'EAM_NETWORK_REC_NOT_FOUND');

394: IF (((p_network_item_id is null or p_network_serial_number is null) and
395: (p_network_object_id is null or p_network_object_type is null) and
396: (p_network_asset_number is null)) OR
397: (p_network_object_type is not null and p_network_object_type <> 3)) THEN
398: fnd_message.set_name('EAM', 'EAM_NETWORK_REC_NOT_FOUND');
399: fnd_msg_pub.add;
400: RAISE FND_API.G_EXC_ERROR;
401: END IF;
402:

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

404: IF (((p_maintenance_object_type is null or p_maintenance_object_id is null) and
405: (p_inventory_item_id is null or p_serial_number is null) and
406: (p_asset_number is null)) OR
407: (p_maintenance_object_type is not null and p_maintenance_object_type <> 3)) THEN
408: fnd_message.set_name('EAM', 'EAM_EZWO_ASSET_BAD');
409: fnd_msg_pub.add;
410: RAISE FND_API.G_EXC_ERROR;
411: END IF;
412:

Line 482: fnd_message.set_name('EAM', 'EAM_IAA_INVALID_ACTIVE_DATE');

478:
479: --validate start and end dates i.e. start date > end date
480: if p_start_date_active > nvl(p_end_date_active, p_start_date_active + 1)
481: then
482: fnd_message.set_name('EAM', 'EAM_IAA_INVALID_ACTIVE_DATE');
483: fnd_msg_pub.add;
484: RAISE FND_API.G_EXC_ERROR;
485: END IF;
486:

Line 589: fnd_message.set_name('EAM', 'EAM_NETWORK_REC_EXISTS');

585: and mena.maintenance_object_id = l_maintenance_object_id
586: and mena.maintenance_object_type = l_maintenance_object_type;
587:
588: if l_count > 0 then
589: fnd_message.set_name('EAM', 'EAM_NETWORK_REC_EXISTS');
590: fnd_msg_pub.add;
591: RAISE fnd_api.g_exc_error;
592: end if;
593:

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

821: x_msg_data => l_msg_data);
822:
823: if l_boolean = 0
824: then
825: fnd_message.set_name('EAM', 'EAM_ABO_INVALID_ORG_ID');
826: fnd_msg_pub.add;
827: RAISE fnd_api.g_exc_error;
828: end if;
829:

Line 836: fnd_message.set_name('EAM', 'EAM_NETWORK_REC_NOT_FOUND');

832: (p_network_object_id is null or p_network_object_type is null) and
833: (p_network_asset_number is null)) OR
834: (p_network_object_type is not null and
835: ((p_network_object_type <> 1) AND (p_network_object_type <> 3)))) THEN -- change for bug # 13324075
836: fnd_message.set_name('EAM', 'EAM_NETWORK_REC_NOT_FOUND');
837: fnd_msg_pub.add;
838: RAISE FND_API.G_EXC_ERROR;
839: END IF;
840:

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

843: (p_inventory_item_id is null or p_serial_number is null) and
844: (p_asset_number is null)) OR
845: (p_maintenance_object_type is not null and
846: ((p_network_object_type <> 1) AND (p_network_object_type <> 3)))) THEN -- change for bug # 13324075
847: fnd_message.set_name('EAM', 'EAM_EZWO_ASSET_BAD');
848: fnd_msg_pub.add;
849: RAISE FND_API.G_EXC_ERROR;
850: END IF;
851:

Line 922: fnd_message.set_name('EAM', 'EAM_IAA_INVALID_ACTIVE_DATE');

918:
919: --validate start and end dates i.e. start date > end date
920: if p_start_date_active>p_end_date_active
921: then
922: fnd_message.set_name('EAM', 'EAM_IAA_INVALID_ACTIVE_DATE');
923: fnd_msg_pub.add;
924: RAISE FND_API.G_EXC_ERROR;
925: END IF;
926:

Line 1030: fnd_message.set_name('EAM', 'EAM_NETWORK_REC_NOT_FOUND');

1026: and mena.maintenance_object_type = l_maintenance_object_type
1027: and mena.network_association_id = p_network_association_id;
1028:
1029: if l_count < 1 then
1030: fnd_message.set_name('EAM', 'EAM_NETWORK_REC_NOT_FOUND');
1031: fnd_msg_pub.add;
1032: RAISE fnd_api.g_exc_error;
1033: end if;
1034:

Line 1036: fnd_message.set_name('EAM', 'EAM_NETWORK_REC_NOT_FOUND');

1032: RAISE fnd_api.g_exc_error;
1033: end if;
1034:
1035: exception when no_data_found then
1036: fnd_message.set_name('EAM', 'EAM_NETWORK_REC_NOT_FOUND');
1037: fnd_msg_pub.add;
1038: RAISE fnd_api.g_exc_error;
1039: END;
1040: