DBA Data[Home] [Help]

APPS.WIP_OPERATIONS_UTILITIES dependencies on FND_MESSAGE

Line 33: FND_MESSAGE.SET_NAME('WIP','WIP_ALREADY_EXISTS');

29: fetch repetitive_check into ops_count;
30: close repetitive_check;
31: END IF;
32: IF ops_count <> 0 THEN
33: FND_MESSAGE.SET_NAME('WIP','WIP_ALREADY_EXISTS');
34: FND_MESSAGE.SET_TOKEN('ENTITY1',
35: 'operation sequence number-cap', TRUE);
36: fnd_message.raise_error;
37: app_exception.raise_exception;

Line 34: FND_MESSAGE.SET_TOKEN('ENTITY1',

30: close repetitive_check;
31: END IF;
32: IF ops_count <> 0 THEN
33: FND_MESSAGE.SET_NAME('WIP','WIP_ALREADY_EXISTS');
34: FND_MESSAGE.SET_TOKEN('ENTITY1',
35: 'operation sequence number-cap', TRUE);
36: fnd_message.raise_error;
37: app_exception.raise_exception;
38: END IF;

Line 36: fnd_message.raise_error;

32: IF ops_count <> 0 THEN
33: FND_MESSAGE.SET_NAME('WIP','WIP_ALREADY_EXISTS');
34: FND_MESSAGE.SET_TOKEN('ENTITY1',
35: 'operation sequence number-cap', TRUE);
36: fnd_message.raise_error;
37: app_exception.raise_exception;
38: END IF;
39: END Check_Unique;
40:

Line 323: fnd_message.set_name('WIP','WIP_DELETE_OSP_RESOURCE');

319: END IF; -- check return status
320: ELSE
321: -- propagate_job_change_to_po is manual
322: x_return_status := fnd_api.g_ret_sts_error;
323: fnd_message.set_name('WIP','WIP_DELETE_OSP_RESOURCE');
324: fnd_msg_pub.add;
325: END IF;
326: ELSE
327: -- customer does not have PO patchset J onward

Line 329: fnd_message.set_name('WIP','WIP_DELETE_OSP_RESOURCE');

325: END IF;
326: ELSE
327: -- customer does not have PO patchset J onward
328: x_return_status := fnd_api.g_ret_sts_error;
329: fnd_message.set_name('WIP','WIP_DELETE_OSP_RESOURCE');
330: fnd_msg_pub.add;
331: END IF;
332: END IF; -- PO/requisition exists
333: END Delete_Resources;