DBA Data[Home] [Help]

APPS.OZF_CLAIMS_HISTORY_PVT dependencies on OZF_CLAIMS_HISTORY_PKG

Line 1020: -- Invoke table handler(OZF_claims_history_PKG.Insert_Row)

1016: END IF;
1017:
1018: l_org_id := p_claims_history_rec.org_id;
1019:
1020: -- Invoke table handler(OZF_claims_history_PKG.Insert_Row)
1021: BEGIN
1022: OZF_claims_history_PKG.Insert_Row(
1023: px_CLAIM_HISTORY_ID => l_claim_history_id,
1024: px_OBJECT_VERSION_NUMBER => l_object_version_number,

Line 1022: OZF_claims_history_PKG.Insert_Row(

1018: l_org_id := p_claims_history_rec.org_id;
1019:
1020: -- Invoke table handler(OZF_claims_history_PKG.Insert_Row)
1021: BEGIN
1022: OZF_claims_history_PKG.Insert_Row(
1023: px_CLAIM_HISTORY_ID => l_claim_history_id,
1024: px_OBJECT_VERSION_NUMBER => l_object_version_number,
1025: p_LAST_UPDATE_DATE => SYSDATE,
1026: p_LAST_UPDATED_BY => FND_GLOBAL.USER_ID,

Line 2405: -- Invoke table handler(OZF_claims_history_PKG.Delete_Row)

2401: FND_MESSAGE.Set_Token('TEXT',l_api_name||': Start');
2402: FND_MSG_PUB.Add;
2403: END IF;
2404:
2405: -- Invoke table handler(OZF_claims_history_PKG.Delete_Row)
2406: OPEN version_csr(p_claim_history_id);
2407: FETCH version_csr INTO l_object_version_number;
2408: CLOSE version_csr;
2409:

Line 2412: OZF_claims_history_PKG.Delete_Row(

2408: CLOSE version_csr;
2409:
2410: IF p_object_version_number = l_object_version_number THEN
2411: BEGIN
2412: OZF_claims_history_PKG.Delete_Row(
2413: p_CLAIM_HISTORY_ID => p_CLAIM_HISTORY_ID);
2414: EXCEPTION
2415: WHEN OTHERS THEN
2416: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN

Line 2608: -- Invoke table handler(OZF_claims_history_PKG.Update_Row)

2604: END IF;
2605: END IF;
2606:
2607:
2608: -- Invoke table handler(OZF_claims_history_PKG.Update_Row)
2609: Begin
2610: OZF_claims_history_PKG.Update_Row(
2611: p_CLAIM_HISTORY_ID => l_CLAIMS_HISTORY_rec.CLAIM_HISTORY_ID,
2612: p_OBJECT_VERSION_NUMBER => l_CLAIMS_HISTORY_rec.OBJECT_VERSION_NUMBER +1 ,

Line 2610: OZF_claims_history_PKG.Update_Row(

2606:
2607:
2608: -- Invoke table handler(OZF_claims_history_PKG.Update_Row)
2609: Begin
2610: OZF_claims_history_PKG.Update_Row(
2611: p_CLAIM_HISTORY_ID => l_CLAIMS_HISTORY_rec.CLAIM_HISTORY_ID,
2612: p_OBJECT_VERSION_NUMBER => l_CLAIMS_HISTORY_rec.OBJECT_VERSION_NUMBER +1 ,
2613: p_LAST_UPDATE_DATE => SYSDATE,
2614: p_LAST_UPDATED_BY => FND_GLOBAL.USER_ID,