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 2407: -- Invoke table handler(OZF_claims_history_PKG.Delete_Row)

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

Line 2414: OZF_claims_history_PKG.Delete_Row(

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

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

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

Line 2612: OZF_claims_history_PKG.Update_Row(

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