DBA Data[Home] [Help]

APPS.IEX_OPI_PVT dependencies on IEX_SCORE_NEW_PVT

Line 3105: --score the case by calling IEX_SCORE_NEW_PVT.scoreObject

3101: END LOOP;
3102:
3103: --if not previously scored on the same day, call scoring engine for object type = IEX_CASES
3104: IF NOT(l_score_found) THEN
3105: --score the case by calling IEX_SCORE_NEW_PVT.scoreObject
3106: l_score_value := IEX_SCORE_NEW_PVT.scoreObject(p_commit => FND_API.G_TRUE,
3107: P_OBJECT_ID => l_oinv_rec.cas_id,
3108: P_OBJECT_TYPE => 'IEX_CASES',
3109: P_SCORE_ID => l_score_id);

Line 3106: l_score_value := IEX_SCORE_NEW_PVT.scoreObject(p_commit => FND_API.G_TRUE,

3102:
3103: --if not previously scored on the same day, call scoring engine for object type = IEX_CASES
3104: IF NOT(l_score_found) THEN
3105: --score the case by calling IEX_SCORE_NEW_PVT.scoreObject
3106: l_score_value := IEX_SCORE_NEW_PVT.scoreObject(p_commit => FND_API.G_TRUE,
3107: P_OBJECT_ID => l_oinv_rec.cas_id,
3108: P_OBJECT_TYPE => 'IEX_CASES',
3109: P_SCORE_ID => l_score_id);
3110: --if score value is null set a message appropriately

Line 3207: --score the case by calling IEX_SCORE_NEW_PVT.scoreObject

3203: l_score_value_previous := cur_score.score_value;
3204: EXIT;
3205: END LOOP;
3206:
3207: --score the case by calling IEX_SCORE_NEW_PVT.scoreObject
3208: l_score_value := IEX_SCORE_NEW_PVT.scoreObject(p_commit => FND_API.G_TRUE,
3209: P_OBJECT_ID => l_oinv_rec.cas_id,
3210: P_OBJECT_TYPE => 'IEX_CASES',
3211: P_SCORE_ID => l_score_id);

Line 3208: l_score_value := IEX_SCORE_NEW_PVT.scoreObject(p_commit => FND_API.G_TRUE,

3204: EXIT;
3205: END LOOP;
3206:
3207: --score the case by calling IEX_SCORE_NEW_PVT.scoreObject
3208: l_score_value := IEX_SCORE_NEW_PVT.scoreObject(p_commit => FND_API.G_TRUE,
3209: P_OBJECT_ID => l_oinv_rec.cas_id,
3210: P_OBJECT_TYPE => 'IEX_CASES',
3211: P_SCORE_ID => l_score_id);
3212:

Line 3281: --if score is not found, score the case by calling IEX_SCORE_NEW_PVT.scoreObject

3277: l_score_found := TRUE;
3278: EXIT;
3279: END LOOP;
3280:
3281: --if score is not found, score the case by calling IEX_SCORE_NEW_PVT.scoreObject
3282: IF NOT(l_score_found) THEN
3283: l_score_value := IEX_SCORE_NEW_PVT.scoreObject(p_commit => FND_API.G_TRUE,
3284: P_OBJECT_ID => l_oinv_rec.cas_id,
3285: P_OBJECT_TYPE => 'IEX_CASES',

Line 3283: l_score_value := IEX_SCORE_NEW_PVT.scoreObject(p_commit => FND_API.G_TRUE,

3279: END LOOP;
3280:
3281: --if score is not found, score the case by calling IEX_SCORE_NEW_PVT.scoreObject
3282: IF NOT(l_score_found) THEN
3283: l_score_value := IEX_SCORE_NEW_PVT.scoreObject(p_commit => FND_API.G_TRUE,
3284: P_OBJECT_ID => l_oinv_rec.cas_id,
3285: P_OBJECT_TYPE => 'IEX_CASES',
3286: P_SCORE_ID => l_score_id);
3287: END IF;