DBA Data[Home] [Help]

APPS.AMS_EVENTSCHEDULE_COPY_PVT dependencies on FND_MSG_PUB

Line 31: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);

27: -- 31-Jul-2002 GMADANA Copying Start date time and End date time for
28: -- Event Schedule.
29: -- ==============================================================================
30:
31: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
32: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
33: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
34:
35: FUNCTION get_agenda_name (p_agenda_id IN NUMBER)

Line 32: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);

28: -- Event Schedule.
29: -- ==============================================================================
30:
31: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
32: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
33: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
34:
35: FUNCTION get_agenda_name (p_agenda_id IN NUMBER)
36: RETURN VARCHAR2

Line 33: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);

29: -- ==============================================================================
30:
31: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
32: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
33: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
34:
35: FUNCTION get_agenda_name (p_agenda_id IN NUMBER)
36: RETURN VARCHAR2
37: IS

Line 171: l_mesg_text := fnd_msg_pub.get (p_encoded => fnd_api.g_false);

167: IF l_return_status = fnd_api.g_ret_sts_error
168: OR l_return_status = fnd_api.g_ret_sts_unexp_error THEN
169: FOR l_counter IN 1 .. x_msg_count
170: LOOP
171: l_mesg_text := fnd_msg_pub.get (p_encoded => fnd_api.g_false);
172: l_stmt_num := 2;
173: p_errnum := 1;
174: p_errmsg := substr(l_mesg_text||' , '|| TO_CHAR (l_stmt_num) ||
175: ' , ' || '): ' || l_counter ||

Line 452: l_mesg_text := fnd_msg_pub.get (p_encoded => fnd_api.g_false);

448: IF l_return_status = fnd_api.g_ret_sts_error
449: OR l_return_status = fnd_api.g_ret_sts_unexp_error THEN
450: FOR l_counter IN 1 .. x_msg_count
451: LOOP
452: l_mesg_text := fnd_msg_pub.get (p_encoded => fnd_api.g_false);
453: l_stmt_num := 2;
454: p_errnum := 1;
455: p_errmsg := substr(l_mesg_text||' , '|| TO_CHAR (l_stmt_num) ||
456: ' , ' || '): ' || l_counter ||

Line 666: l_mesg_text := fnd_msg_pub.get (p_encoded => fnd_api.g_false);

662: OR l_return_status = fnd_api.g_ret_sts_unexp_error
663: THEN
664: FOR l_counter IN 1 .. x_msg_count
665: LOOP
666: l_mesg_text := fnd_msg_pub.get (p_encoded => fnd_api.g_false);
667: l_stmt_num := 2;
668: p_errnum := 1;
669: p_errmsg := substr(l_mesg_text||' , '|| TO_CHAR (l_stmt_num) ||
670: ' , ' || '): ' || l_counter ||

Line 749: l_mesg_text := fnd_msg_pub.get (p_encoded => fnd_api.g_false);

745: THEN
746:
747: FOR l_counter IN 1 .. x_msg_count
748: LOOP
749: l_mesg_text := fnd_msg_pub.get (p_encoded => fnd_api.g_false);
750: l_stmt_num := 2;
751: p_errnum := 1;
752: p_errmsg := substr(l_mesg_text||' , '|| TO_CHAR (l_stmt_num) ||
753: ' , ' || '): ' || l_counter ||

Line 902: FND_MSG_PUB.initialize;

898:
899: -- Initialize message list if p_init_msg_list is set to TRUE.
900: IF FND_API.to_Boolean( p_init_msg_list )
901: THEN
902: FND_MSG_PUB.initialize;
903: END IF;
904:
905: -- Debug Message
906: IF (AMS_DEBUG_HIGH_ON) THEN

Line 1245: FND_MSG_PUB.Count_And_Get

1241: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
1242: END IF;
1243:
1244: -- Standard call to get message count and if count is 1, get message info.
1245: FND_MSG_PUB.Count_And_Get
1246: (p_count => x_msg_count,
1247: p_data => x_msg_data
1248: );
1249:

Line 1256: FND_MSG_PUB.Count_And_Get (

1252: WHEN FND_API.G_EXC_ERROR THEN
1253: ROLLBACK TO copy_event_schedule;
1254: x_return_status := FND_API.G_RET_STS_ERROR;
1255: -- Standard call to get message count and if count=1, get the message
1256: FND_MSG_PUB.Count_And_Get (
1257: p_encoded => FND_API.G_FALSE,
1258: p_count => x_msg_count,
1259: p_data => x_msg_data
1260: );

Line 1265: FND_MSG_PUB.Count_And_Get (

1261: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1262: ROLLBACK TO copy_event_schedule;
1263: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1264: -- Standard call to get message count and if count=1, get the message
1265: FND_MSG_PUB.Count_And_Get (
1266: p_encoded => FND_API.G_FALSE,
1267: p_count => x_msg_count,
1268: p_data => x_msg_data
1269: );

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

1269: );
1270: WHEN OTHERS THEN
1271: ROLLBACK TO copy_event_schedule;
1272: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1273: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
1274: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1275: END IF;
1276: -- Standard call to get message count and if count=1, get the message
1277: FND_MSG_PUB.Count_And_Get (

Line 1274: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

1270: WHEN OTHERS THEN
1271: ROLLBACK TO copy_event_schedule;
1272: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1273: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
1274: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1275: END IF;
1276: -- Standard call to get message count and if count=1, get the message
1277: FND_MSG_PUB.Count_And_Get (
1278: p_encoded => FND_API.G_FALSE,

Line 1277: FND_MSG_PUB.Count_And_Get (

1273: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
1274: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1275: END IF;
1276: -- Standard call to get message count and if count=1, get the message
1277: FND_MSG_PUB.Count_And_Get (
1278: p_encoded => FND_API.G_FALSE,
1279: p_count => x_msg_count,
1280: p_data => x_msg_data
1281: );