DBA Data[Home] [Help]

APPS.AHL_WARRANTY_CONTRACTS_PVT dependencies on FND_MESSAGE

Line 397: Fnd_Message.SET_NAME('AHL','AHL_FMP_INVALID_ITEM_INSTANCE' ); -- The item instance INSTANCE is invalid.

393: OPEN validate_instance_csr (p_item_instance_id);
394: FETCH validate_instance_csr INTO l_dummy;
395: IF validate_instance_csr%NOTFOUND THEN
396: CLOSE validate_instance_csr;
397: Fnd_Message.SET_NAME('AHL','AHL_FMP_INVALID_ITEM_INSTANCE' ); -- The item instance INSTANCE is invalid.
398: Fnd_Message.Set_Token('INSTANCE', p_item_instance_id);
399: Fnd_Msg_Pub.ADD;
400:
401: IF (l_log_statement >= l_log_current_level) THEN

Line 398: Fnd_Message.Set_Token('INSTANCE', p_item_instance_id);

394: FETCH validate_instance_csr INTO l_dummy;
395: IF validate_instance_csr%NOTFOUND THEN
396: CLOSE validate_instance_csr;
397: Fnd_Message.SET_NAME('AHL','AHL_FMP_INVALID_ITEM_INSTANCE' ); -- The item instance INSTANCE is invalid.
398: Fnd_Message.Set_Token('INSTANCE', p_item_instance_id);
399: Fnd_Msg_Pub.ADD;
400:
401: IF (l_log_statement >= l_log_current_level) THEN
402: fnd_log.string(l_log_statement,L_DEBUG_KEY,'Item Instance ID :' || p_item_instance_id || 'is invalid' );

Line 414: Fnd_Message.SET_NAME('AHL','AHL_WARRANTY_INV_TEMP_ID' ); -- Invalid Warranty Template.

410: OPEN warranty_template_csr(p_warranty_template_id, p_item_instance_id );
411: FETCH warranty_template_csr INTO warranty_template_rec;
412: IF warranty_template_csr%NOTFOUND THEN
413: CLOSE warranty_template_csr;
414: Fnd_Message.SET_NAME('AHL','AHL_WARRANTY_INV_TEMP_ID' ); -- Invalid Warranty Template.
415: Fnd_Msg_Pub.ADD;
416:
417: IF (l_log_statement >= l_log_current_level) THEN
418: fnd_log.string(l_log_statement,L_DEBUG_KEY,'warranty template: ' || p_warranty_template_id || 'is invalid' );