DBA Data[Home] [Help]

APPS.ASO_CORE_CONTRACTS_PUB dependencies on ASO_DEBUG_PUB

Line 36: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN

32: x_msg_data OUT NOCOPY /* file.sql.39 change */ VARCHAR2
33: ) IS
34: BEGIN
35:
36: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
37: aso_debug_pub.add('create_contract PUB - Obsolete', 1, 'Y');
38: END IF;
39:
40: NULL;

Line 37: aso_debug_pub.add('create_contract PUB - Obsolete', 1, 'Y');

33: ) IS
34: BEGIN
35:
36: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
37: aso_debug_pub.add('create_contract PUB - Obsolete', 1, 'Y');
38: END IF;
39:
40: NULL;
41:

Line 60: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN

56: x_msg_data OUT NOCOPY /* file.sql.39 change */ VARCHAR2
57: ) IS
58: BEGIN
59:
60: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
61: aso_debug_pub.add('update_contract PUB - Obsolete', 1, 'Y');
62: END IF;
63:
64: NULL;

Line 61: aso_debug_pub.add('update_contract PUB - Obsolete', 1, 'Y');

57: ) IS
58: BEGIN
59:
60: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
61: aso_debug_pub.add('update_contract PUB - Obsolete', 1, 'Y');
62: END IF;
63:
64: NULL;
65:

Line 82: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN

78: x_msg_data OUT NOCOPY /* file.sql.39 change */ VARCHAR2
79: ) IS
80: BEGIN
81:
82: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
83: aso_debug_pub.add('notify_contract_change PUB - Obsolete', 1, 'Y');
84: END IF;
85:
86: NULL;

Line 83: aso_debug_pub.add('notify_contract_change PUB - Obsolete', 1, 'Y');

79: ) IS
80: BEGIN
81:
82: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
83: aso_debug_pub.add('notify_contract_change PUB - Obsolete', 1, 'Y');
84: END IF;
85:
86: NULL;
87:

Line 114: ASO_DEBUG_PUB.G_Debug_Flag := nvl(fnd_profile.value('ASO_ENABLE_DEBUG'),'N');

110: FND_MSG_PUB.initialize;
111: END IF;
112:
113: -- initialize G_Debug_Flag
114: ASO_DEBUG_PUB.G_Debug_Flag := nvl(fnd_profile.value('ASO_ENABLE_DEBUG'),'N');
115:
116: -- Initialize API return status to success
117: x_return_status := FND_API.G_RET_STS_SUCCESS;
118:

Line 119: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN

115:
116: -- Initialize API return status to success
117: x_return_status := FND_API.G_RET_STS_SUCCESS;
118:
119: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
120: aso_debug_pub.add('Check_Customer_Accounts PUB - Begin', 1, 'Y');
121: END IF;
122:
123: -- check for missing customer accounts in the quote

Line 120: aso_debug_pub.add('Check_Customer_Accounts PUB - Begin', 1, 'Y');

116: -- Initialize API return status to success
117: x_return_status := FND_API.G_RET_STS_SUCCESS;
118:
119: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
120: aso_debug_pub.add('Check_Customer_Accounts PUB - Begin', 1, 'Y');
121: END IF;
122:
123: -- check for missing customer accounts in the quote
124: aso_core_contracts_int.check_customer_accounts (

Line 132: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN

128: x_msg_count => x_msg_count,
129: x_msg_data => x_msg_data
130: );
131:
132: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
133: aso_debug_pub.ADD (
134: 'Create_Contract: After Check_Customer_Accounts: x_return_status: '|| x_return_status,
135: 1,
136: 'Y'

Line 133: aso_debug_pub.ADD (

129: x_msg_data => x_msg_data
130: );
131:
132: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
133: aso_debug_pub.ADD (
134: 'Create_Contract: After Check_Customer_Accounts: x_return_status: '|| x_return_status,
135: 1,
136: 'Y'
137: );

Line 144: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN

140: IF x_return_status <> fnd_api.g_ret_sts_success THEN
141: RAISE fnd_api.g_exc_error;
142: END IF;
143:
144: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
145: aso_debug_pub.add('Check_Customer_Accounts PUB : End ', 1, 'N');
146: END IF;
147:
148: FND_MSG_PUB.Count_And_Get

Line 145: aso_debug_pub.add('Check_Customer_Accounts PUB : End ', 1, 'N');

141: RAISE fnd_api.g_exc_error;
142: END IF;
143:
144: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
145: aso_debug_pub.add('Check_Customer_Accounts PUB : End ', 1, 'N');
146: END IF;
147:
148: FND_MSG_PUB.Count_And_Get
149: ( p_count => x_msg_count,