DBA Data[Home] [Help]

APPS.IGC_CC_YEP_PROCESS_PKG dependencies on FND_MSG_PUB

Line 1303: FND_MSG_PUB.Count_And_Get ( p_count => l_msg_count,

1299: -- ------------------------------------------------------------------------------------
1300:
1301: IF (l_budg_status = FALSE)
1302: THEN
1303: FND_MSG_PUB.Count_And_Get ( p_count => l_msg_count,
1304: p_data => l_msg_data );
1305:
1306: IF (l_msg_count > 0)
1307: THEN

Line 1311: l_error_text := l_cur ||' '|| FND_MSG_PUB.GET(l_cur, FND_API.G_FALSE);

1307: THEN
1308: l_error_text := '';
1309: FOR l_cur IN 1..l_msg_count
1310: LOOP
1311: l_error_text := l_cur ||' '|| FND_MSG_PUB.GET(l_cur, FND_API.G_FALSE);
1312:
1313: IF (g_excep_level >= g_debug_level) then
1314: fnd_log.string(g_excep_level,l_full_path,l_error_text);
1315: END IF;

Line 2881: FND_MSG_PUB.Count_And_Get ( p_count => l_msg_count,

2877: -- ------------------------------------------------------------------------------------
2878: -- Ensure that any exceptions raised are output into the log file to be reported to
2879: -- the user if any are present.
2880: -- ------------------------------------------------------------------------------------
2881: FND_MSG_PUB.Count_And_Get ( p_count => l_msg_count,
2882: p_data => l_msg_data );
2883:
2884: IF (l_msg_count > 0) THEN
2885: l_error_text := '';

Line 2887: l_error_text := l_cur ||' '|| FND_MSG_PUB.GET(l_cur, FND_API.G_FALSE);

2883:
2884: IF (l_msg_count > 0) THEN
2885: l_error_text := '';
2886: FOR l_cur IN 1..l_msg_count LOOP
2887: l_error_text := l_cur ||' '|| FND_MSG_PUB.GET(l_cur, FND_API.G_FALSE);
2888:
2889: IF (g_excep_level >= g_debug_level) then
2890: fnd_log.string(g_excep_level,l_full_path,l_error_text);
2891: END IF;

Line 2902: IF (FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)) THEN

2898: RETURN;
2899:
2900: EXCEPTION
2901: WHEN OTHERS THEN
2902: IF (FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)) THEN
2903: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'YEAR_END_MAIN');
2904: END IF;
2905: FND_MSG_PUB.Count_And_Get ( p_count => l_msg_count,
2906: p_data => l_msg_data );

Line 2903: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'YEAR_END_MAIN');

2899:
2900: EXCEPTION
2901: WHEN OTHERS THEN
2902: IF (FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)) THEN
2903: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'YEAR_END_MAIN');
2904: END IF;
2905: FND_MSG_PUB.Count_And_Get ( p_count => l_msg_count,
2906: p_data => l_msg_data );
2907: IF (l_msg_count > 0) THEN

Line 2905: FND_MSG_PUB.Count_And_Get ( p_count => l_msg_count,

2901: WHEN OTHERS THEN
2902: IF (FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)) THEN
2903: FND_MSG_PUB.Add_Exc_Msg (G_PKG_NAME, 'YEAR_END_MAIN');
2904: END IF;
2905: FND_MSG_PUB.Count_And_Get ( p_count => l_msg_count,
2906: p_data => l_msg_data );
2907: IF (l_msg_count > 0) THEN
2908:
2909: l_error_text := '';

Line 2911: l_error_text := l_cur ||' '|| FND_MSG_PUB.GET(l_cur, FND_API.G_FALSE);

2907: IF (l_msg_count > 0) THEN
2908:
2909: l_error_text := '';
2910: FOR l_cur IN 1..l_msg_count LOOP
2911: l_error_text := l_cur ||' '|| FND_MSG_PUB.GET(l_cur, FND_API.G_FALSE);
2912:
2913: IF (g_excep_level >= g_debug_level) then
2914:
2915: fnd_log.string(g_excep_level,l_full_path,l_error_text);