DBA Data[Home] [Help]

APPS.HZ_LOCATIONS_PKG dependencies on FND_MESSAGE

Line 310: fnd_message.set_name('AR', 'HZ_API_DUPLICATE_COLUMN');

306: IF INSTRB(SQLERRM, 'HZ_LOCATIONS_U1') <> 0 OR
307: INSTRB(SQLERRM, 'HZ_LOCATIONS_PK') <> 0
308: THEN
309: IF l_primary_key_passed THEN
310: fnd_message.set_name('AR', 'HZ_API_DUPLICATE_COLUMN');
311: fnd_message.set_token('COLUMN', 'location_id');
312: fnd_msg_pub.add;
313: RAISE fnd_api.g_exc_error;
314: END IF;

Line 311: fnd_message.set_token('COLUMN', 'location_id');

307: INSTRB(SQLERRM, 'HZ_LOCATIONS_PK') <> 0
308: THEN
309: IF l_primary_key_passed THEN
310: fnd_message.set_name('AR', 'HZ_API_DUPLICATE_COLUMN');
311: fnd_message.set_token('COLUMN', 'location_id');
312: fnd_msg_pub.add;
313: RAISE fnd_api.g_exc_error;
314: END IF;
315:

Line 762: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');

758: OPEN c;
759: FETCH c INTO recinfo;
760: IF (C%NOTFOUND) THEN
761: CLOSE c;
762: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
763: app_exception.raise_exception;
764: END IF;
765: CLOSE c;
766:

Line 973: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');

969: AND (x_delivery_point_code IS NULL))))
970: THEN
971: RETURN;
972: ELSE
973: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
974: app_exception.raise_exception;
975: END IF;
976: END lock_row;
977:

Line 1184: fnd_message.set_name('AR', 'HZ_API_NO_RECORD');

1180: FROM hz_locations
1181: WHERE location_id = x_location_id;
1182: EXCEPTION
1183: WHEN NO_DATA_FOUND THEN
1184: fnd_message.set_name('AR', 'HZ_API_NO_RECORD');
1185: fnd_message.set_token('RECORD', 'location_rec');
1186: fnd_message.set_token('VALUE', TO_CHAR(x_location_id));
1187: fnd_msg_pub.add;
1188: RAISE fnd_api.g_exc_error;

Line 1185: fnd_message.set_token('RECORD', 'location_rec');

1181: WHERE location_id = x_location_id;
1182: EXCEPTION
1183: WHEN NO_DATA_FOUND THEN
1184: fnd_message.set_name('AR', 'HZ_API_NO_RECORD');
1185: fnd_message.set_token('RECORD', 'location_rec');
1186: fnd_message.set_token('VALUE', TO_CHAR(x_location_id));
1187: fnd_msg_pub.add;
1188: RAISE fnd_api.g_exc_error;
1189: END select_row;

Line 1186: fnd_message.set_token('VALUE', TO_CHAR(x_location_id));

1182: EXCEPTION
1183: WHEN NO_DATA_FOUND THEN
1184: fnd_message.set_name('AR', 'HZ_API_NO_RECORD');
1185: fnd_message.set_token('RECORD', 'location_rec');
1186: fnd_message.set_token('VALUE', TO_CHAR(x_location_id));
1187: fnd_msg_pub.add;
1188: RAISE fnd_api.g_exc_error;
1189: END select_row;
1190: