DBA Data[Home] [Help]

APPS.AMS_WFMOD_PVT dependencies on AMS_DM_SCORE_PVT

Line 2027: AMS_DM_Score_PVT.wf_revert (

2023: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
2024: RAISE FND_API.G_EXC_ERROR;
2025: END IF;
2026: ELSE
2027: AMS_DM_Score_PVT.wf_revert (
2028: p_score_id => l_object_id,
2029: p_status_code => l_object_status,
2030: x_return_status => l_return_status
2031: );

Line 2046: AMS_DM_Score_PVT.process_score_success (

2042: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
2043: RAISE FND_API.G_EXC_ERROR;
2044: END IF;
2045: ELSIF l_object_status = G_STATUS_COMPLETED THEN
2046: AMS_DM_Score_PVT.process_score_success (
2047: p_score_id => l_object_id,
2048: p_status_code => l_object_status,
2049: x_return_status => l_return_status
2050: );

Line 2055: AMS_DM_Score_PVT.wf_score (

2051: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
2052: RAISE FND_API.G_EXC_ERROR;
2053: END IF;
2054: ELSIF l_object_status = G_STATUS_SCORING THEN
2055: AMS_DM_Score_PVT.wf_score (
2056: p_score_id => l_object_id,
2057: x_status_code => l_object_status,
2058: x_return_status => l_return_status
2059: );

Line 2622: AMS_DM_Score_PVT.wf_revert (

2618: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
2619: RAISE FND_API.G_EXC_ERROR;
2620: END IF;
2621: ELSE
2622: AMS_DM_Score_PVT.wf_revert (
2623: p_score_id => l_object_id,
2624: p_status_code => G_STATUS_FAILED,
2625: x_return_status => l_return_status
2626: );

Line 2980: AMS_DM_Score_PVT.wf_checkModelStatus (

2976:
2977: -- If the WF Process was started to Score, then check if the Model has
2978: -- not become INVALID
2979: IF x_result <> 'COMPLETE:F' AND l_request_type <> G_PREVIEW_REQUEST AND l_object_type = G_OBJECT_TYPE_SCORE THEN
2980: AMS_DM_Score_PVT.wf_checkModelStatus (
2981: p_score_id => l_object_id,
2982: x_return_status => l_return_status,
2983: x_model_status => l_model_status
2984: );