DBA Data[Home] [Help]

APPS.IEX_SCORE_NEW_PVT dependencies on FND_MESSAGE

Line 1165: FND_MESSAGE.Set_Name('IEX', 'IEX_NO_SCORE_ENG_COMPONENTS');

1161: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
1162: IEX_DEBUG_PUB.logMessage('IEX_SCORE: scoreObjects: No score components for engine');
1163: END IF;
1164: FND_FILE.PUT_LINE(FND_FILE.LOG, 'IEX_SCORE: scoreObjects: No score components for engine ' || p_score_id);
1165: FND_MESSAGE.Set_Name('IEX', 'IEX_NO_SCORE_ENG_COMPONENTS');
1166: --Begin Bug 8933776 30-Nov-2009 barathsr
1167: l_xml_body:= l_xml_body||l_new_line||''||'No Score components available for this scoring engine'||'';
1168: l_xml_body:= l_xml_body||l_new_line||'';
1169: l_xml_body:= l_xml_body||l_new_line||'';

Line 1286: FND_MESSAGE.Set_Name('IEX', 'IEX_UNIVERSE_SIZE_ZERO');

1282: IEX_DEBUG_PUB.logMessage('IEX_SCORE: scoreObjects: Universe size is zero');
1283: END IF;
1284: FND_FILE.PUT_LINE(FND_FILE.LOG, 'Universe Size is Zero or Invalid for Engine ' || p_score_id);
1285:
1286: FND_MESSAGE.Set_Name('IEX', 'IEX_UNIVERSE_SIZE_ZERO');
1287: FND_MSG_PUB.Add;
1288:
1289: --START jsanju 10/19/05 for bug 3549051
1290: --RAISE FND_API.G_EXC_ERROR;

Line 1352: FND_MESSAGE.Set_Name('IEX', 'IEX_WEIGHT_REQUIRED');

1348: IEX_DEBUG_PUB.logMessage('IEX_SCORE: scoreObjects: no comp weight');
1349: END IF;
1350: FND_FILE.PUT_LINE(FND_FILE.LOG,
1351: 'Score Comp Weight are required for Engine '|| p_score_id);
1352: FND_MESSAGE.Set_Name('IEX', 'IEX_WEIGHT_REQUIRED');
1353: FND_MSG_PUB.Add;
1354: RAISE FND_API.G_EXC_ERROR;
1355: end if;
1356: END LOOP;

Line 1584: FND_MESSAGE.Set_Name('IEX', 'IEX_INVALID_SCORING_OBJECT');

1580: b_valid := validateObjectID (p_object_id => p_object_id,
1581: p_object_type => p_object_type);
1582:
1583: if not b_valid then
1584: FND_MESSAGE.Set_Name('IEX', 'IEX_INVALID_SCORING_OBJECT');
1585: FND_MSG_PUB.Add;
1586: return -1;
1587: end if;
1588:

Line 1592: FND_MESSAGE.Set_Name('IEX', 'IEX_INVALID_SCORING_ENGINE');

1588:
1589: b_valid := iex_score_new_pvt.checkObject_Compatibility(p_score_id => l_score_id ,
1590: p_object_type => l_object_type);
1591: if not b_Valid then
1592: FND_MESSAGE.Set_Name('IEX', 'IEX_INVALID_SCORING_ENGINE');
1593: FND_MSG_PUB.Add;
1594: return -1;
1595: end if;
1596: