DBA Data[Home] [Help]

APPS.PO_REQ_DOCUMENT_CHECKS_GRP dependencies on FND_MESSAGE

Line 66: FND_MESSAGE.set_name('PO', 'PO_STATCHK_GENERAL_ERROR');

62: --Validate that Input ID Tables are all of the same size
63: l_progress := '010';
64: IF l_count <> p_req_line_id.count THEN
65:
66: FND_MESSAGE.set_name('PO', 'PO_STATCHK_GENERAL_ERROR');
67: FND_MESSAGE.set_token('ERROR_TEXT', 'The input table ID parameters are not of same size !');
68: FND_MSG_PUB.Add;
69: RAISE FND_API.G_EXC_ERROR;
70: END IF;

Line 67: FND_MESSAGE.set_token('ERROR_TEXT', 'The input table ID parameters are not of same size !');

63: l_progress := '010';
64: IF l_count <> p_req_line_id.count THEN
65:
66: FND_MESSAGE.set_name('PO', 'PO_STATCHK_GENERAL_ERROR');
67: FND_MESSAGE.set_token('ERROR_TEXT', 'The input table ID parameters are not of same size !');
68: FND_MSG_PUB.Add;
69: RAISE FND_API.G_EXC_ERROR;
70: END IF;
71:

Line 78: FND_MESSAGE.set_name('PO', 'PO_STATCHK_GENERAL_ERROR');

74: FOR i IN 1..l_count LOOP
75:
76: --For each index, Input IDs should refer to a valid entity
77: IF p_req_header_id(i) is null THEN
78: FND_MESSAGE.set_name('PO', 'PO_STATCHK_GENERAL_ERROR');
79: FND_MESSAGE.set_token('ERROR_TEXT', 'There is no Header specified at index ' || i);
80: FND_MSG_PUB.Add;
81: RAISE FND_API.G_EXC_ERROR;
82: END IF;

Line 79: FND_MESSAGE.set_token('ERROR_TEXT', 'There is no Header specified at index ' || i);

75:
76: --For each index, Input IDs should refer to a valid entity
77: IF p_req_header_id(i) is null THEN
78: FND_MESSAGE.set_name('PO', 'PO_STATCHK_GENERAL_ERROR');
79: FND_MESSAGE.set_token('ERROR_TEXT', 'There is no Header specified at index ' || i);
80: FND_MSG_PUB.Add;
81: RAISE FND_API.G_EXC_ERROR;
82: END IF;
83: