DBA Data[Home] [Help]

APPS.OZF_CLAIM_PVT dependencies on OZF_CLAIMS_HISTORY_PVT

Line 4739: OZF_claims_history_PVT.Delete_claims_history(

4735: LOOP
4736: FETCH claim_history_id_csr into l_claim_history_id, l_object_version_number;
4737: EXIT When claim_history_id_csr%NOTFOUND;
4738:
4739: OZF_claims_history_PVT.Delete_claims_history(
4740: P_Api_Version_Number => l_api_version
4741: ,P_Init_Msg_List => FND_API.g_false
4742: ,P_Commit => FND_API.g_false
4743: ,p_validation_level => FND_API.g_valid_level_full

Line 5065: OZF_claims_history_PVT.Check_Create_History(

5061: -- If the status_code is not new, then I will to create_claim_history
5062: --Comment out the below line (uday) since we will be creating the history
5063: -- at the time of claim creation also.
5064: --IF l_status_code <> G_INIT_STATUS THEN
5065: OZF_claims_history_PVT.Check_Create_History(
5066: p_claim => p_claim,
5067: p_event => p_event,
5068: x_history_event => l_history_event,
5069: x_history_event_description => l_history_event_description,

Line 5081: OZF_claims_history_PVT.Create_History(

5077: END IF;
5078:
5079: IF (l_needed_to_create = 'Y') THEN
5080: -- CREATE history
5081: OZF_claims_history_PVT.Create_History(
5082: p_claim_id => p_claim.claim_id,
5083: p_history_event => l_history_event,
5084: p_history_event_description => l_history_event_description,
5085: x_claim_history_id => l_claim_history_id,

Line 5252: l_claim_history_rec OZF_claims_history_PVT.claims_history_Rec_Type;

5248: TYPE CLAIMS_HISTORY_Tbl_Type IS TABLE OF CLAIM_HISTORY_tbl_csr%rowtype
5249: INDEX BY BINARY_INTEGER;
5250: l_claim_history_tbl CLAIMS_HISTORY_Tbl_Type;
5251:
5252: l_claim_history_rec OZF_claims_history_PVT.claims_history_Rec_Type;
5253:
5254:
5255: CURSOR old_info_csr (p_id in number) IS
5256: SELECT user_status_id,

Line 6538: -- l_claim_history_rec := OZF_claims_history_PVT.claims_history_rec_type;

6534: END LOOP;
6535: CLOSE claim_history_tbl_csr;
6536:
6537: For i in 1..l_claim_history_tbl.count LOOP
6538: -- l_claim_history_rec := OZF_claims_history_PVT.claims_history_rec_type;
6539: l_claim_history_rec.object_version_number := l_claim_history_tbl(i).object_version_number;
6540: l_claim_history_rec.claim_history_id := l_claim_history_tbl(i).claim_history_id;
6541: l_claim_history_rec.task_source_object_id := l_claim_history_id;
6542: l_claim_history_rec.task_source_object_type_code := G_CLAIM_HISTORY_TYPE;

Line 6544: OZF_claims_history_PVT.Update_claims_history(

6540: l_claim_history_rec.claim_history_id := l_claim_history_tbl(i).claim_history_id;
6541: l_claim_history_rec.task_source_object_id := l_claim_history_id;
6542: l_claim_history_rec.task_source_object_type_code := G_CLAIM_HISTORY_TYPE;
6543:
6544: OZF_claims_history_PVT.Update_claims_history(
6545: P_Api_Version_Number => 1.0,
6546: P_Init_Msg_List => FND_API.G_FALSE,
6547: P_Commit => FND_API.G_FALSE,
6548: p_validation_level => FND_API.G_VALID_LEVEL_FULL,