DBA Data[Home] [Help]

APPS.OZF_CLAIM_PVT dependencies on OZF_CLAIMS_HISTORY_PVT

Line 5615: OZF_claims_history_PVT.Delete_claims_history(

5611: LOOP
5612: FETCH claim_history_id_csr into l_claim_history_id, l_object_version_number;
5613: EXIT When claim_history_id_csr%NOTFOUND;
5614:
5615: OZF_claims_history_PVT.Delete_claims_history(
5616: P_Api_Version_Number => l_api_version
5617: ,P_Init_Msg_List => FND_API.g_false
5618: ,P_Commit => FND_API.g_false
5619: ,p_validation_level => FND_API.g_valid_level_full

Line 5941: OZF_claims_history_PVT.Check_Create_History(

5937: -- If the status_code is not new, then I will to create_claim_history
5938: --Comment out the below line (uday) since we will be creating the history
5939: -- at the time of claim creation also.
5940: --IF l_status_code <> G_INIT_STATUS THEN
5941: OZF_claims_history_PVT.Check_Create_History(
5942: p_claim => p_claim,
5943: p_event => p_event,
5944: x_history_event => l_history_event,
5945: x_history_event_description => l_history_event_description,

Line 5957: OZF_claims_history_PVT.Create_History(

5953: END IF;
5954:
5955: IF (l_needed_to_create = 'Y') THEN
5956: -- CREATE history
5957: OZF_claims_history_PVT.Create_History(
5958: p_claim_id => p_claim.claim_id,
5959: p_history_event => l_history_event,
5960: p_history_event_description => l_history_event_description,
5961: x_claim_history_id => l_claim_history_id,

Line 6130: l_claim_history_rec OZF_claims_history_PVT.claims_history_Rec_Type;

6126: TYPE CLAIMS_HISTORY_Tbl_Type IS TABLE OF CLAIM_HISTORY_tbl_csr%rowtype
6127: INDEX BY BINARY_INTEGER;
6128: l_claim_history_tbl CLAIMS_HISTORY_Tbl_Type;
6129:
6130: l_claim_history_rec OZF_claims_history_PVT.claims_history_Rec_Type;
6131:
6132:
6133: -- Fix for Bug 8924230
6134: -- Added For Rule Based Settlement

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

7985: END LOOP;
7986: CLOSE claim_history_tbl_csr;
7987:
7988: For i in 1..l_claim_history_tbl.count LOOP
7989: -- l_claim_history_rec := OZF_claims_history_PVT.claims_history_rec_type;
7990: l_claim_history_rec.object_version_number := l_claim_history_tbl(i).object_version_number;
7991: l_claim_history_rec.claim_history_id := l_claim_history_tbl(i).claim_history_id;
7992: l_claim_history_rec.task_source_object_id := l_claim_history_id;
7993: l_claim_history_rec.task_source_object_type_code := G_CLAIM_HISTORY_TYPE;

Line 7995: OZF_claims_history_PVT.Update_claims_history(

7991: l_claim_history_rec.claim_history_id := l_claim_history_tbl(i).claim_history_id;
7992: l_claim_history_rec.task_source_object_id := l_claim_history_id;
7993: l_claim_history_rec.task_source_object_type_code := G_CLAIM_HISTORY_TYPE;
7994:
7995: OZF_claims_history_PVT.Update_claims_history(
7996: P_Api_Version_Number => 1.0,
7997: P_Init_Msg_List => FND_API.G_FALSE,
7998: P_Commit => FND_API.G_FALSE,
7999: p_validation_level => FND_API.G_VALID_LEVEL_FULL,