DBA Data[Home] [Help]

APPS.AHL_PRD_UTIL_PKG dependencies on FND_MSG_PUB

Line 35: FND_MSG_PUB.ADD;

31: if (p_subinventory_code is null ) then
32:
33: FND_MESSAGE.Set_Name('AHL', 'AHL_PRD_PC_SUBINV_MANDATORY');
34:
35: FND_MSG_PUB.ADD;
36: RAISE FND_API.G_EXC_ERROR;
37: end if;
38:
39: -- Commented the following validation as locator id need not exist in

Line 50: FND_MSG_PUB.ADD;

46:
47: /* if (l_subinv_code is null) then
48: x_return_status := FND_API.G_RET_STS_ERROR;
49: FND_MESSAGE.Set_Name('AHL','AHL_PRD_LOCATOR_INVALID');
50: FND_MSG_PUB.ADD;
51:
52: END if;*/
53:
54: --Check if the locator is attached to the subinventory if subinventory is provided

Line 59: -- FND_MSG_PUB.ADD;

55: -- if (l_subinv_code is not null
56: -- and l_subinv_code <> p_subinventory_code ) then
57: -- x_return_status := FND_API.G_RET_STS_ERROR;
58: -- FND_MESSAGE.Set_Name('AHL','AHL_PRD_LOCATOR_SUBINV_INVALID');
59: -- FND_MSG_PUB.ADD;
60:
61: -- END if;
62: EXCEPTION
63: -- WHEN NO_DATA_FOUND THEN

Line 66: -- FND_MSG_PUB.ADD;

62: EXCEPTION
63: -- WHEN NO_DATA_FOUND THEN
64: -- x_return_status := FND_API.G_RET_STS_ERROR;
65: -- FND_MESSAGE.Set_Name('AHL','AHL_PRD_LOCATOR_INVALID');
66: -- FND_MSG_PUB.ADD;
67:
68:
69: WHEN FND_API.G_EXC_ERROR THEN
70: x_return_status := FND_API.G_RET_STS_ERROR;

Line 103: FND_MSG_PUB.ADD;

99:
100: if (l_junk is null) then
101: x_return_status := FND_API.G_RET_STS_ERROR;
102: FND_MESSAGE.Set_Name('AHL','AHL_PRD_PC_CONDN_MISSING');
103: FND_MSG_PUB.ADD;
104: END if;
105: END;
106:
107: --Validates a removal reason.

Line 138: FND_MSG_PUB.ADD;

134: x_return_status := FND_API.G_RET_STS_ERROR;
135: FND_MESSAGE.Set_Name('AHL','AHL_PRD_INVALID_REASON');
136: FND_MESSAGE.Set_Token('REASON',p_reason_id);
137:
138: FND_MSG_PUB.ADD;
139: END if;
140: end;
141:
142:

Line 177: FND_MSG_PUB.ADD;

173:
174: if l_status_id is null THEN
175: FND_MESSAGE.Set_Name('AHL','AHL_PRD_INVALID_SUBINVENTORY');
176: FND_MESSAGE.set_token('INV', p_Subinventory_Code);
177: FND_MSG_PUB.ADD;
178: x_return_status := FND_API.G_RET_STS_ERROR;
179:
180: End if;
181: --dbms_output.put_line('ahl_prd_util_pkg - Condition id'|| p_condition_id);

Line 200: FND_MSG_PUB.ADD;

196: p_condition_id <> l_status_id ) then
197:
198:
199: FND_MESSAGE.Set_Name('AHL','AHL_PRD_CONDN_SUBINV_MISMATCH');
200: FND_MSG_PUB.ADD;
201: x_return_status := FND_API.G_RET_STS_ERROR;
202:
203: END IF;
204:

Line 773: Fnd_Msg_Pub.ADD;

769: P_item_instance_id => null
770: ) = FND_API.G_TRUE
771: THEN
772: Fnd_Message.Set_Name('AHL', 'AHL_PP_DEL_RESASG_UNTLCKD');
773: Fnd_Msg_Pub.ADD;
774: RETURN FND_API.G_FALSE;
775: END IF;
776: END IF;
777:

Line 786: Fnd_Msg_Pub.ADD;

782: THEN
783: FND_MESSAGE.Set_Name('AHL', 'AHL_PP_DELASG_LOGDIN');
784: FND_MESSAGE.set_token( 'OP_SEQ' , l_op_seq_num);
785: FND_MESSAGE.set_token( 'RES_SEQ' , l_res_seq_num);
786: Fnd_Msg_Pub.ADD;
787:
788: CLOSE c_get_ass_details;
789: RETURN FND_API.G_FALSE;
790: END IF;