DBA Data[Home] [Help]

APPS.IEX_CREDIT_HOLD_API dependencies on IEX_DUNNING_PVT

Line 54: --iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update:'||p_account_id||';'||p_site_id||';'||p_credit_hold);

50: x_return_status := FND_API.G_RET_STS_SUCCESS;
51:
52: --Begin - Andre Araujo - Bug#4662279 - Removed since the one in arp_cprof1_pkg has the same function
53:
54: --iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update:'||p_account_id||';'||p_site_id||';'||p_credit_hold);
55: --iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update:update hz_customer_profiles');
56: -- update hz_customer_profiles
57:
58: --l_return := arh_cprof1_pkg.update_credit_hold(

Line 55: --iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update:update hz_customer_profiles');

51:
52: --Begin - Andre Araujo - Bug#4662279 - Removed since the one in arp_cprof1_pkg has the same function
53:
54: --iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update:'||p_account_id||';'||p_site_id||';'||p_credit_hold);
55: --iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update:update hz_customer_profiles');
56: -- update hz_customer_profiles
57:
58: --l_return := arh_cprof1_pkg.update_credit_hold(
59: -- p_account_id,

Line 64: -- iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update HZ_CUSTOMER_PROFILES=Y');

60: -- p_site_id,
61: -- p_credit_hold) ;
62:
63: --if (l_return) then
64: -- iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update HZ_CUSTOMER_PROFILES=Y');
65: --else
66: -- FND_MESSAGE.Set_Name('IEX', 'IEX_CREDIT_HOLD_NOT_UPDATED');
67: -- FND_MSG_PUB.Add;
68: -- raise FND_API.G_EXC_ERROR;

Line 69: -- iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update HZ_CUSTOMER_PROFILES=N');

65: --else
66: -- FND_MESSAGE.Set_Name('IEX', 'IEX_CREDIT_HOLD_NOT_UPDATED');
67: -- FND_MSG_PUB.Add;
68: -- raise FND_API.G_EXC_ERROR;
69: -- iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update HZ_CUSTOMER_PROFILES=N');
70: --end if;
71:
72: --End - Andre Araujo - Bug#4662279 - Removed since the one in arp_cprof1_pkg has the same function
73:

Line 74: iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update:update ar_customer_profiles');

70: --end if;
71:
72: --End - Andre Araujo - Bug#4662279 - Removed since the one in arp_cprof1_pkg has the same function
73:
74: iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update:update ar_customer_profiles');
75: -- update ar_customer_profiles
76: l_return := arp_cprof1_pkg.update_credit_hold(
77: p_account_id,
78: p_site_id,

Line 82: iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update HZ_CUSTOMER_PROFILES=Y');

78: p_site_id,
79: p_credit_hold) ;
80:
81: if (l_return) then
82: iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update HZ_CUSTOMER_PROFILES=Y');
83: else
84: FND_MESSAGE.Set_Name('IEX', 'IEX_CREDIT_HOLD_NOT_UPDATED');
85: FND_MSG_PUB.Add;
86: raise FND_API.G_EXC_ERROR;

Line 87: iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update HZ_CUSTOMER_PROFILES=N');

83: else
84: FND_MESSAGE.Set_Name('IEX', 'IEX_CREDIT_HOLD_NOT_UPDATED');
85: FND_MSG_PUB.Add;
86: raise FND_API.G_EXC_ERROR;
87: iex_dunning_pvt.WriteLog('iexvcdhb.pls:Update HZ_CUSTOMER_PROFILES=N');
88: end if;
89:
90: x_return_status := FND_API.G_RET_STS_SUCCESS;
91:

Line 118: iex_dunning_pvt.WriteLog('iexvcdhb.pls:other exception:'||SQLERRM);

114:
115: WHEN OTHERS THEN
116: ROLLBACK TO Update_Credit_Hold_PVT;
117: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
118: iex_dunning_pvt.WriteLog('iexvcdhb.pls:other exception:'||SQLERRM);
119: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count, p_data => x_msg_data);
120:
121: END UPDATE_CREDIT_HOLD;
122: