DBA Data[Home] [Help]

APPS.AHL_PRD_UTIL_PKG dependencies on FND_MSG_PUB

Line 48: FND_MSG_PUB.ADD;

44: if (p_subinventory_code is null ) then
45:
46: FND_MESSAGE.Set_Name('AHL', 'AHL_PRD_PC_SUBINV_MANDATORY');
47:
48: FND_MSG_PUB.ADD;
49: RAISE FND_API.G_EXC_ERROR;
50: end if;
51:
52: -- Commented the following validation as locator id need not exist in

Line 63: FND_MSG_PUB.ADD;

59:
60: /* if (l_subinv_code is null) then
61: x_return_status := FND_API.G_RET_STS_ERROR;
62: FND_MESSAGE.Set_Name('AHL','AHL_PRD_LOCATOR_INVALID');
63: FND_MSG_PUB.ADD;
64:
65: END if;*/
66:
67: --Check if the locator is attached to the subinventory if subinventory is provided

Line 72: -- FND_MSG_PUB.ADD;

68: -- if (l_subinv_code is not null
69: -- and l_subinv_code <> p_subinventory_code ) then
70: -- x_return_status := FND_API.G_RET_STS_ERROR;
71: -- FND_MESSAGE.Set_Name('AHL','AHL_PRD_LOCATOR_SUBINV_INVALID');
72: -- FND_MSG_PUB.ADD;
73:
74: -- END if;
75: EXCEPTION
76: -- WHEN NO_DATA_FOUND THEN

Line 79: -- FND_MSG_PUB.ADD;

75: EXCEPTION
76: -- WHEN NO_DATA_FOUND THEN
77: -- x_return_status := FND_API.G_RET_STS_ERROR;
78: -- FND_MESSAGE.Set_Name('AHL','AHL_PRD_LOCATOR_INVALID');
79: -- FND_MSG_PUB.ADD;
80:
81:
82: WHEN FND_API.G_EXC_ERROR THEN
83: x_return_status := FND_API.G_RET_STS_ERROR;

Line 116: FND_MSG_PUB.ADD;

112:
113: if (l_junk is null) then
114: x_return_status := FND_API.G_RET_STS_ERROR;
115: FND_MESSAGE.Set_Name('AHL','AHL_PRD_PC_CONDN_MISSING');
116: FND_MSG_PUB.ADD;
117: END if;
118: END;
119:
120: --Validates a removal reason.

Line 151: FND_MSG_PUB.ADD;

147: x_return_status := FND_API.G_RET_STS_ERROR;
148: FND_MESSAGE.Set_Name('AHL','AHL_PRD_INVALID_REASON');
149: FND_MESSAGE.Set_Token('REASON',p_reason_id);
150:
151: FND_MSG_PUB.ADD;
152: END if;
153: end;
154:
155:

Line 190: FND_MSG_PUB.ADD;

186:
187: if l_status_id is null THEN
188: FND_MESSAGE.Set_Name('AHL','AHL_PRD_INVALID_SUBINVENTORY');
189: FND_MESSAGE.set_token('INV', p_Subinventory_Code);
190: FND_MSG_PUB.ADD;
191: x_return_status := FND_API.G_RET_STS_ERROR;
192:
193: End if;
194: --dbms_output.put_line('ahl_prd_util_pkg - Condition id'|| p_condition_id);

Line 213: FND_MSG_PUB.ADD;

209: p_condition_id <> l_status_id ) then
210:
211:
212: FND_MESSAGE.Set_Name('AHL','AHL_PRD_CONDN_SUBINV_MISMATCH');
213: FND_MSG_PUB.ADD;
214: x_return_status := FND_API.G_RET_STS_ERROR;
215:
216: END IF;
217:

Line 793: Fnd_Msg_Pub.ADD;

789: P_item_instance_id => null
790: ) = FND_API.G_TRUE
791: THEN
792: Fnd_Message.Set_Name('AHL', 'AHL_PP_DEL_RESASG_UNTLCKD');
793: Fnd_Msg_Pub.ADD;
794: RETURN FND_API.G_FALSE;
795: END IF;
796: END IF;
797:

Line 806: Fnd_Msg_Pub.ADD;

802: THEN
803: FND_MESSAGE.Set_Name('AHL', 'AHL_PP_DELASG_LOGDIN');
804: FND_MESSAGE.set_token( 'OP_SEQ' , l_op_seq_num);
805: FND_MESSAGE.set_token( 'RES_SEQ' , l_res_seq_num);
806: Fnd_Msg_Pub.ADD;
807:
808: CLOSE c_get_ass_details;
809: RETURN FND_API.G_FALSE;
810: END IF;