DBA Data[Home] [Help]

APPS.OZF_CLAIM_PVT dependencies on OZF_CLAIM_UTILITY_PVT

Line 2141: , p_mode => OZF_CLAIM_UTILITY_PVT.g_auto_mode

2137: , x_return_status => l_return_status
2138: , x_msg_data => l_msg_data
2139: , x_msg_count => l_msg_count
2140: , p_claim_line_rec => l_claim_line_rec
2141: , p_mode => OZF_CLAIM_UTILITY_PVT.g_auto_mode
2142: , x_claim_line_id => l_claim_line_id
2143: );
2144:
2145: IF l_return_status = FND_API.g_ret_sts_error THEN

Line 2637: IF p_mode <> OZF_claim_Utility_pvt.G_AUTO_MODE THEN --Bug:2781186

2633: -- Bug : 2781186
2634: -- Changed by : (Uday Poluri) Date: 03-JUN-2003
2635: -- Comments : Add p_mode check, If it is AUTO then allow amount change on claim.
2636: -- -------------------------------------------------------------------------------------------
2637: IF p_mode <> OZF_claim_Utility_pvt.G_AUTO_MODE THEN --Bug:2781186
2638: IF ((p_claim.currency_code <> l_deduction_info.currency_code) OR
2639: (p_claim.exchange_rate_date <> l_deduction_info.exchange_rate_date) OR
2640: (p_claim.exchange_rate_type <> l_deduction_info.exchange_rate_type) OR
2641: (p_claim.exchange_rate <> l_deduction_info.exchange_rate) OR

Line 4528: OZF_Claim_Utility_PVT.Normalize_Customer_Reference(

4524:
4525: -- normalize customer reference number if it isn't null
4526: IF l_claim.customer_ref_number is not NULL AND
4527: l_claim.customer_ref_number <> FND_API.G_MISS_CHAR THEN
4528: OZF_Claim_Utility_PVT.Normalize_Customer_Reference(
4529: p_customer_reference => l_claim.customer_ref_number,
4530: x_normalized_reference => l_customer_ref_norm
4531: );
4532: END IF;

Line 4585: /*OZF_Claim_Utility_PVT.Normalize_Customer_Reference(

4581: -- Added for Rule Based Settlement
4582: IF l_claim.pre_auth_deduction_number is not NULL AND
4583: l_claim.pre_auth_deduction_number <> FND_API.G_MISS_CHAR THEN
4584: -- Removed the Normalization logic for PAD - Bug 8924230
4585: /*OZF_Claim_Utility_PVT.Normalize_Customer_Reference(
4586: p_customer_reference => l_claim.pre_auth_deduction_number,
4587: x_normalized_reference => l_pad_ref_norm
4588: );
4589: */

Line 5117: p_mode => OZF_claim_Utility_pvt.G_AUTO_MODE,

5113: X_Msg_Count => x_msg_count,
5114: X_Msg_Data => x_msg_data,
5115: P_claim => l_claim,
5116: p_event => 'UPDATE',
5117: p_mode => OZF_claim_Utility_pvt.G_AUTO_MODE,
5118: X_Object_Version_Number => l_object_version_number
5119: );
5120: IF l_return_status = FND_API.g_ret_sts_error THEN
5121: RAISE FND_API.g_exc_error;

Line 6053: ,p_mode IN VARCHAR2 := OZF_claim_Utility_pvt.G_AUTO_MODE

6049: ,x_msg_data OUT NOCOPY VARCHAR2
6050: ,x_msg_count OUT NOCOPY NUMBER
6051: ,p_claim IN claim_rec_type
6052: ,p_event IN VARCHAR2
6053: ,p_mode IN VARCHAR2 := OZF_claim_Utility_pvt.G_AUTO_MODE
6054: ,x_object_version_number OUT NOCOPY NUMBER
6055: )
6056: IS
6057: l_api_name CONSTANT VARCHAR2(30) := 'Update_Claim';

Line 6481: IF p_mode = OZF_claim_Utility_pvt.G_MANU_MODE THEN

6477: FETCH resource_id_csr into l_resource_id;
6478: CLOSE resource_id_csr;
6479: END IF;
6480:
6481: IF p_mode = OZF_claim_Utility_pvt.G_MANU_MODE THEN
6482: OZF_CLAIM_UTILITY_PVT.Check_Claim_access(
6483: P_Api_Version_Number => 1.0,
6484: P_Init_Msg_List => FND_API.G_FALSE,
6485: p_validation_level => FND_API.G_VALID_LEVEL_FULL,

Line 6482: OZF_CLAIM_UTILITY_PVT.Check_Claim_access(

6478: CLOSE resource_id_csr;
6479: END IF;
6480:
6481: IF p_mode = OZF_claim_Utility_pvt.G_MANU_MODE THEN
6482: OZF_CLAIM_UTILITY_PVT.Check_Claim_access(
6483: P_Api_Version_Number => 1.0,
6484: P_Init_Msg_List => FND_API.G_FALSE,
6485: p_validation_level => FND_API.G_VALID_LEVEL_FULL,
6486: P_Commit => FND_API.G_FALSE,

Line 6751: (p_mode = OZF_claim_Utility_pvt.G_MANU_MODE) ) THEN

6747: -- throw exception if user is not the owner nor does he has admin access
6748: -- (OZF_access_PVT.Check_Admin_Access(l_resource_id) = false)) THEN
6749: IF ((l_old_owner_id <> l_resource_id) AND
6750: (l_access <> 'F') AND
6751: (p_mode = OZF_claim_Utility_pvt.G_MANU_MODE) ) THEN
6752: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR) THEN
6753: FND_MESSAGE.Set_Name('OZF', 'OZF_CLAIM_UPDT_OWNER_PERM');
6754: FND_MSG_PUB.ADD;
6755: END IF;

Line 7111: IF p_mode <> OZF_claim_Utility_pvt.G_AUTO_MODE THEN --Bug:2781186

7107: -- Changed by : (Uday Poluri) Date: 03-Jun-2003
7108: -- Comments : Add p_mode check, If it is AUTO then allow amount change on claim.
7109: -- (Relax this rule for Auto Mode)
7110: -- -------------------------------------------------------------------------------------------
7111: IF p_mode <> OZF_claim_Utility_pvt.G_AUTO_MODE THEN --Bug:2781186
7112: IF l_claim.status_code NOT IN ('PENDING_CLOSE', 'CLOSED') AND
7113: ABS(l_claim.amount_remaining + l_claim.amount_settled) < ABS(l_claim_lines_sum) THEN
7114: -- [END FIX 04/29/02]
7115: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN

Line 7242: OZF_Claim_Utility_PVT.Normalize_Customer_Reference(

7238: IF (l_old_customer_ref_number IS NULL AND l_claim.customer_ref_number IS NOT NULL) OR
7239: (l_old_customer_ref_number IS NOT NULL AND l_claim.customer_ref_number IS NULL) OR
7240: l_old_customer_ref_number <> l_claim.customer_ref_number THEN
7241:
7242: OZF_Claim_Utility_PVT.Normalize_Customer_Reference(
7243: p_customer_reference => l_claim.customer_ref_number
7244: ,x_normalized_reference => l_customer_ref_norm
7245: );
7246: END IF;

Line 8960: ,p_mode IN VARCHAR2 := OZF_claim_Utility_pvt.G_AUTO_MODE

8956: ,x_msg_count OUT NOCOPY NUMBER
8957: ,x_msg_data OUT NOCOPY VARCHAR2
8958: ,p_claim IN claim_rec_type
8959: ,x_claim OUT NOCOPY claim_rec_type
8960: ,p_mode IN VARCHAR2 := OZF_claim_Utility_pvt.G_AUTO_MODE
8961: )
8962: IS
8963: l_api_name CONSTANT VARCHAR2(30) := 'Check_Claim_Common_Element';
8964: l_api_version CONSTANT NUMBER := 1.0;

Line 9122: IF (p_mode = OZF_claim_Utility_pvt.G_AUTO_MODE)

9118: -- Changed by : Uday Poluri Date: 28-May-2003
9119: -- Comments : Call get_write_off_eligibility flag
9120: -- -----------------------------------------------------------
9121:
9122: IF (p_mode = OZF_claim_Utility_pvt.G_AUTO_MODE)
9123: THEN
9124: get_write_off_eligibility( p_cust_account_id => l_claim.cust_account_id
9125: , px_currency_code => l_claim.currency_code
9126: , px_exchange_rate_type => l_claim.exchange_rate_type

Line 9232: l_mode varchar2(30) := OZF_claim_Utility_pvt.G_MANU_MODE;

9228: l_msg_data varchar2(2000);
9229: l_Msg_count number;
9230: l_Error_Token varchar2(80);
9231: l_return_status varchar2(30);
9232: l_mode varchar2(30) := OZF_claim_Utility_pvt.G_MANU_MODE;
9233:
9234: l_default_curr_code varchar2(30):= fnd_profile.value('JTF_PROFILE_DEFAULT_CURRENCY');
9235: l_claim_id number;
9236: l_err_row number:=0;

Line 9496: ,p_mode => OZF_claim_Utility_pvt.G_AUTO_MODE

9492: ,x_msg_data => l_msg_data
9493: ,x_msg_count => l_msg_count
9494: ,p_claim => l_claim
9495: ,p_event => 'UPDATE'
9496: ,p_mode => OZF_claim_Utility_pvt.G_AUTO_MODE
9497: ,x_object_version_number => l_object_version_number
9498: );
9499:
9500: IF l_return_status = FND_API.g_ret_sts_error THEN