DBA Data[Home] [Help]

APPS.ASO_CONTRACT_TERMS_PUB dependencies on ASO_DEBUG_PUB

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

33: FND_MSG_PUB.initialize;
34: END IF;
35:
36: -- initialize G_Debug_Flag
37: ASO_DEBUG_PUB.G_Debug_Flag := nvl(fnd_profile.value('ASO_ENABLE_DEBUG'),'N');
38:
39: -- Initialize API return status to success
40: x_return_status := FND_API.G_RET_STS_SUCCESS;
41:

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

38:
39: -- Initialize API return status to success
40: x_return_status := FND_API.G_RET_STS_SUCCESS;
41:
42: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
43: aso_debug_pub.add('Get_Article_Variable_Values PUB - Begin', 1, 'Y');
44: END IF;
45:
46: -- check for missing customer accounts in the quote

Line 43: aso_debug_pub.add('Get_Article_Variable_Values PUB - Begin', 1, 'Y');

39: -- Initialize API return status to success
40: x_return_status := FND_API.G_RET_STS_SUCCESS;
41:
42: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
43: aso_debug_pub.add('Get_Article_Variable_Values PUB - Begin', 1, 'Y');
44: END IF;
45:
46: -- check for missing customer accounts in the quote
47: ASO_Contract_Terms_Int.Get_Article_Variable_Values (

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

53: p_doc_id => p_doc_id,
54: p_sys_var_value_tbl => p_sys_var_value_tbl
55: );
56:
57: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
58: aso_debug_pub.ADD (
59: 'Get_Article_Variable_Values: After Get_Article_Variable_Values: x_return_status: '|| x_return_status,
60: 1,
61: 'Y'

Line 58: aso_debug_pub.ADD (

54: p_sys_var_value_tbl => p_sys_var_value_tbl
55: );
56:
57: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
58: aso_debug_pub.ADD (
59: 'Get_Article_Variable_Values: After Get_Article_Variable_Values: x_return_status: '|| x_return_status,
60: 1,
61: 'Y'
62: );

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

65: IF x_return_status <> fnd_api.g_ret_sts_success THEN
66: RAISE fnd_api.g_exc_error;
67: END IF;
68:
69: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
70: aso_debug_pub.add('Get_Article_Variable_Values PUB : End ', 1, 'N');
71: END IF;
72:
73: FND_MSG_PUB.Count_And_Get

Line 70: aso_debug_pub.add('Get_Article_Variable_Values PUB : End ', 1, 'N');

66: RAISE fnd_api.g_exc_error;
67: END IF;
68:
69: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
70: aso_debug_pub.add('Get_Article_Variable_Values PUB : End ', 1, 'N');
71: END IF;
72:
73: FND_MSG_PUB.Count_And_Get
74: ( p_count => x_msg_count,

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

137: FND_MSG_PUB.initialize;
138: END IF;
139:
140: -- initialize G_Debug_Flag
141: ASO_DEBUG_PUB.G_Debug_Flag := nvl(fnd_profile.value('ASO_ENABLE_DEBUG'),'N');
142:
143: -- Initialize API return status to success
144: x_return_status := FND_API.G_RET_STS_SUCCESS;
145:

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

142:
143: -- Initialize API return status to success
144: x_return_status := FND_API.G_RET_STS_SUCCESS;
145:
146: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
147: aso_debug_pub.add('Get_Line_Variable_Values PUB - Begin', 1, 'Y');
148: END IF;
149:
150: -- check for missing customer accounts in the quote

Line 147: aso_debug_pub.add('Get_Line_Variable_Values PUB - Begin', 1, 'Y');

143: -- Initialize API return status to success
144: x_return_status := FND_API.G_RET_STS_SUCCESS;
145:
146: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
147: aso_debug_pub.add('Get_Line_Variable_Values PUB - Begin', 1, 'Y');
148: END IF;
149:
150: -- check for missing customer accounts in the quote
151: ASO_Contract_Terms_Int.Get_Line_Variable_Values (

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

158: p_variables_tbl => p_variables_tbl,
159: x_line_var_value_tbl => x_line_var_value_tbl
160: );
161:
162: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
163: aso_debug_pub.ADD (
164: 'Get_Line_Variable_Values: After Get_Line_Variable_Values: x_return_status: '|| x_return_status,
165: 1,
166: 'Y'

Line 163: aso_debug_pub.ADD (

159: x_line_var_value_tbl => x_line_var_value_tbl
160: );
161:
162: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
163: aso_debug_pub.ADD (
164: 'Get_Line_Variable_Values: After Get_Line_Variable_Values: x_return_status: '|| x_return_status,
165: 1,
166: 'Y'
167: );

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

170: IF x_return_status <> fnd_api.g_ret_sts_success THEN
171: RAISE fnd_api.g_exc_error;
172: END IF;
173:
174: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
175: aso_debug_pub.add('Get_Line_Variable_Values PUB : End ', 1, 'N');
176: END IF;
177:
178: FND_MSG_PUB.Count_And_Get

Line 175: aso_debug_pub.add('Get_Line_Variable_Values PUB : End ', 1, 'N');

171: RAISE fnd_api.g_exc_error;
172: END IF;
173:
174: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
175: aso_debug_pub.add('Get_Line_Variable_Values PUB : End ', 1, 'N');
176: END IF;
177:
178: FND_MSG_PUB.Count_And_Get
179: ( p_count => x_msg_count,

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

243: FND_MSG_PUB.initialize;
244: END IF;
245:
246: -- initialize G_Debug_Flag
247: ASO_DEBUG_PUB.G_Debug_Flag := nvl(fnd_profile.value('ASO_ENABLE_DEBUG'),'N');
248:
249: -- Initialize API return status to success
250: x_return_status := FND_API.G_RET_STS_SUCCESS;
251:

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

248:
249: -- Initialize API return status to success
250: x_return_status := FND_API.G_RET_STS_SUCCESS;
251:
252: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
253: aso_debug_pub.add('OK_To_Commit PUB - Begin', 1, 'Y');
254: END IF;
255:
256: -- check for missing customer accounts in the quote

Line 253: aso_debug_pub.add('OK_To_Commit PUB - Begin', 1, 'Y');

249: -- Initialize API return status to success
250: x_return_status := FND_API.G_RET_STS_SUCCESS;
251:
252: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
253: aso_debug_pub.add('OK_To_Commit PUB - Begin', 1, 'Y');
254: END IF;
255:
256: -- check for missing customer accounts in the quote
257: l_return := ASO_Contract_Terms_Int.OK_To_Commit (

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

264: p_doc_type => p_doc_type,
265: p_validation_string => p_validation_string
266: );
267:
268: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
269: aso_debug_pub.ADD (
270: 'OK_To_Commit: After OK_To_Commit: x_return_status: '|| x_return_status,
271: 1,
272: 'Y'

Line 269: aso_debug_pub.ADD (

265: p_validation_string => p_validation_string
266: );
267:
268: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
269: aso_debug_pub.ADD (
270: 'OK_To_Commit: After OK_To_Commit: x_return_status: '|| x_return_status,
271: 1,
272: 'Y'
273: );

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

272: 'Y'
273: );
274: END IF;
275:
276: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
277: aso_debug_pub.add('OK_To_Commit PUB : End ', 1, 'N');
278: END IF;
279:
280: FND_MSG_PUB.Count_And_Get

Line 277: aso_debug_pub.add('OK_To_Commit PUB : End ', 1, 'N');

273: );
274: END IF;
275:
276: IF ASO_DEBUG_PUB.G_Debug_Flag = 'Y' THEN
277: aso_debug_pub.add('OK_To_Commit PUB : End ', 1, 'N');
278: END IF;
279:
280: FND_MSG_PUB.Count_And_Get
281: ( p_count => x_msg_count,