DBA Data[Home] [Help]

APPS.IEX_SCOREAPI_PUB dependencies on FND_FILE

Line 104: FND_FILE.PUT_LINE(FND_FILE.LOG, 'IEX_SCORE: scoreObjects: No score components for engine ' || p_score_id);

100: X_SCORE_COMP_TBL => g_components_tbl);
101:
102: IF g_components_tbl is null or g_components_tbl.count < 1 then
103:
104: FND_FILE.PUT_LINE(FND_FILE.LOG, 'IEX_SCORE: scoreObjects: No score components for engine ' || p_score_id);
105: FND_MESSAGE.Set_Name('IEX', 'IEX_NO_SCORE_ENG_COMPONENTS');
106: FND_MSG_PUB.Add;
107: --RAISE FND_API.G_EXC_ERROR;
108: x_return_status := FND_API.G_RET_STS_ERROR;

Line 136: FND_FILE.PUT_LINE(FND_FILE.LOG, 'IEX_SCORE: scoreObjects: Score Object is not match to engine ' || p_score_id);

132: if (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
133: IEX_DEBUG_PUB.logMessage('IEX_SCORE: scoreObjects: Score Object is not match to engine');
134: end if;
135:
136: FND_FILE.PUT_LINE(FND_FILE.LOG, 'IEX_SCORE: scoreObjects: Score Object is not match to engine ' || p_score_id);
137: FND_MESSAGE.Set_Name('IEX', 'IEX_INVALID_SCORING_ENGINE');
138: FND_MSG_PUB.Add;
139: -- RAISE FND_API.G_EXC_ERROR;
140: x_return_status := FND_API.G_RET_STS_ERROR;

Line 162: FND_FILE.PUT_LINE(FND_FILE.LOG, 'IEX_SCORE: scoreObjects: Score Object ID is not match to engine ' || p_object_id);

158: if (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
159: IEX_DEBUG_PUB.logMessage('IEX_SCORE: scoreObjects: Score Object ID is not match to engine');
160: end if;
161:
162: FND_FILE.PUT_LINE(FND_FILE.LOG, 'IEX_SCORE: scoreObjects: Score Object ID is not match to engine ' || p_object_id);
163: FND_MESSAGE.Set_Name('IEX', 'IEX_INVALID_SCORING_ENGINE');
164: FND_MSG_PUB.Add;
165: -- RAISE FND_API.G_EXC_ERROR;
166: x_return_status := FND_API.G_RET_STS_ERROR;

Line 203: FND_FILE.PUT_LINE(FND_FILE.LOG, 'No Scores Calculated for Engine: ' || p_score_id);

199: IF l_running_score is null then
200: -- IF l_scores_tbl is null or l_scores_tbl.count < 1 then
201: --- End - Andre Araujo - 11/02/2004 - This has been changed because of a bug in the storage design in the scoring API
202:
203: FND_FILE.PUT_LINE(FND_FILE.LOG, 'No Scores Calculated for Engine: ' || p_score_id);
204: FND_MESSAGE.Set_Name('IEX', 'IEX_UNABLE_TO_COMPUTE_SCORES');
205: FND_MSG_PUB.Add;
206: --RAISE FND_API.G_EXC_ERROR;
207: x_return_status := FND_API.G_RET_STS_ERROR;

Line 341: FND_FILE.PUT_LINE(FND_FILE.LOG, 'IEX_SCORE: scoreObjects: Score Object is not match to engine ' || p_score_id);

337: if (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
338: IEX_DEBUG_PUB.logMessage('IEX_SCORE: scoreObjects: Score Object is not match to engine');
339: end if;
340:
341: FND_FILE.PUT_LINE(FND_FILE.LOG, 'IEX_SCORE: scoreObjects: Score Object is not match to engine ' || p_score_id);
342: FND_MESSAGE.Set_Name('IEX', 'IEX_INVALID_SCORING_ENGINE');
343: FND_MSG_PUB.Add;
344: -- RAISE FND_API.G_EXC_ERROR;
345: x_return_status := FND_API.G_RET_STS_ERROR;

Line 385: FND_FILE.PUT_LINE(FND_FILE.LOG, 'IEX_SCORE: No Status found ' || p_score_id);

381:
382:
383: EXCEPTION
384: When Others then
385: FND_FILE.PUT_LINE(FND_FILE.LOG, 'IEX_SCORE: No Status found ' || p_score_id);
386: FND_MESSAGE.Set_Name('AR', 'AR_OPLB_NO_DATA_FOUND');
387: FND_MSG_PUB.Add;
388: x_return_status := FND_API.G_RET_STS_ERROR;
389: IF PG_DEBUG in ('Y', 'C') THEN