DBA Data[Home] [Help]

APPS.PV_ENRL_PREREQ_BINS_PUB dependencies on FND_MSG_PUB

Line 35: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);

31: -- -----------------------------------------------------
32: g_name_already_used EXCEPTION;
33: PRAGMA EXCEPTION_INIT(g_index_columns_existed, -955);
34:
35: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
36: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
37: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
38:
39: --=============================================================================+

Line 36: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);

32: g_name_already_used EXCEPTION;
33: PRAGMA EXCEPTION_INIT(g_index_columns_existed, -955);
34:
35: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
36: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
37: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
38:
39: --=============================================================================+
40: --| Private Procedure |

Line 37: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);

33: PRAGMA EXCEPTION_INIT(g_index_columns_existed, -955);
34:
35: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
36: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
37: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
38:
39: --=============================================================================+
40: --| Private Procedure |
41: --| |

Line 64: FND_MSG_PUB.Add;

60: FND_MESSAGE.Set_Name('PV', p_msg_type);
61: FND_MESSAGE.Set_Token('TEXT', p_msg_string);
62:
63: IF (g_log_to_file = 'N') THEN
64: FND_MSG_PUB.Add;
65:
66: ELSIF (g_log_to_file = 'Y') THEN
67: FND_FILE.PUT_LINE( FND_FILE.LOG, fnd_message.get );
68: END IF;

Line 159: --FND_MSG_PUB.g_msg_level_threshold := FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW;

155: l_prereq_exist BOOLEAN;
156: l_no_membership BOOLEAN;
157:
158: BEGIN
159: --FND_MSG_PUB.g_msg_level_threshold := FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW;
160:
161: x_return_status := FND_API.G_RET_STS_SUCCESS;
162:
163: -- ------------------------------------------------------------------------

Line 227: --FND_MSG_PUB.g_msg_level_threshold := FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH;

223: Debug('l_attr_tbl.count = ' || l_attr_tbl.count);
224: IF l_attr_tbl.count > 0 THEN
225: --Debug('l_attr_tbl.count > 0');
226:
227: --FND_MSG_PUB.g_msg_level_threshold := FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH;
228:
229: pv_match_v2_pub.manual_match(
230: p_api_version_number => 1.0
231: , p_attr_id_tbl => l_attr_tbl

Line 252: --FND_MSG_PUB.g_msg_level_threshold := FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW;

248: , x_return_status => x_return_status
249: , x_msg_count => x_msg_count
250: , x_msg_data => x_msg_data
251: );
252: --FND_MSG_PUB.g_msg_level_threshold := FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW;
253:
254: IF (x_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
255: Debug('x_return_status <> FND_API.G_RET_STS_SUCCESS');
256: RAISE Fnd_Api.G_EXC_ERROR;

Line 333: Fnd_Msg_Pub.Count_And_Get (

329: EXCEPTION
330: WHEN Fnd_Api.G_EXC_ERROR THEN
331: x_return_status := Fnd_Api.G_RET_STS_ERROR;
332: -- Standard call to get message count and if count=1, get the message
333: Fnd_Msg_Pub.Count_And_Get (
334: p_encoded => Fnd_Api.G_FALSE,
335: p_count => x_msg_count,
336: p_data => x_msg_data
337: );

Line 341: Fnd_Msg_Pub.Count_And_Get (

337: );
338: WHEN OTHERS THEN
339: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
340: -- Standard call to get message count and if count=1, get the message
341: Fnd_Msg_Pub.Count_And_Get (
342: p_encoded => Fnd_Api.G_FALSE,
343: p_count => x_msg_count,
344: p_data => x_msg_data
345: );

Line 447: FND_MSG_PUB.ADD;

443: IF(g_log_to_file = 'Y') THEN
444: FND_FILE.PUT_LINE(FND_FILE.LOG, fnd_message.get);
445: FND_FILE.NEW_LINE(FND_FILE.LOG, 1);
446: ELSE
447: FND_MSG_PUB.ADD;
448: END IF;
449:
450: -- -----------------------------------------------------------------------
451: -- Code Instrumentation

Line 514: FND_MSG_PUB.Add;

510: IF (g_log_to_file = 'Y') THEN
511: FND_FILE.PUT_LINE( FND_FILE.LOG, fnd_message.get );
512: FND_FILE.NEW_LINE( FND_FILE.LOG, 1 );
513: ELSE
514: FND_MSG_PUB.Add;
515: END IF;
516: RAISE Fnd_Api.G_EXC_ERROR;
517: END IF;
518:

Line 597: FND_MSG_PUB.Add;

593: FND_FILE.PUT_LINE( FND_FILE.LOG, fnd_message.get );
594: FND_FILE.NEW_LINE( FND_FILE.LOG, 1 );
595:
596: ELSE
597: FND_MSG_PUB.Add;
598: END IF;
599:
600: l_elapsed_time := DBMS_UTILITY.get_time - l_total_start;
601: Debug('=====================================================================');

Line 609: fnd_msg_pub.reset;

605:
606: EXCEPTION
607: WHEN Fnd_Api.G_EXC_ERROR THEN
608: IF l_msg_count > 1 THEN
609: fnd_msg_pub.reset;
610: FOR i IN 1..l_msg_count LOOP
611: Debug(fnd_msg_pub.get(p_encoded => fnd_api.g_false));
612: END LOOP;
613: ELSE

Line 611: Debug(fnd_msg_pub.get(p_encoded => fnd_api.g_false));

607: WHEN Fnd_Api.G_EXC_ERROR THEN
608: IF l_msg_count > 1 THEN
609: fnd_msg_pub.reset;
610: FOR i IN 1..l_msg_count LOOP
611: Debug(fnd_msg_pub.get(p_encoded => fnd_api.g_false));
612: END LOOP;
613: ELSE
614: Debug(l_msg_data);
615: END IF;