DBA Data[Home] [Help]

APPS.OZF_TRACING_ORDER_PVT dependencies on FND_MSG_PUB

Line 13: OZF_DEBUG_HIGH_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);

9:
10: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OZF_TRACING_ORDER_PVT';
11: G_FILE_NAME CONSTANT VARCHAR2(30) := 'ozfvoctrb.pls';
12:
13: OZF_DEBUG_HIGH_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
14: OZF_DEBUG_LOW_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_low);
15:
16: ---------------------------------------------------------------------
17: -- PROCEDURE

Line 14: OZF_DEBUG_LOW_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_low);

10: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OZF_TRACING_ORDER_PVT';
11: G_FILE_NAME CONSTANT VARCHAR2(30) := 'ozfvoctrb.pls';
12:
13: OZF_DEBUG_HIGH_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
14: OZF_DEBUG_LOW_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_low);
15:
16: ---------------------------------------------------------------------
17: -- PROCEDURE
18: -- Initiate_payment

Line 212: FND_MSG_PUB.initialize;

208: END IF;
209:
210: --Initialize message list if p_init_msg_list is TRUE.
211: IF FND_API.To_Boolean (p_init_msg_list) THEN
212: FND_MSG_PUB.initialize;
213: END IF;
214:
215: -- Debug Message
216: IF OZF_DEBUG_HIGH_ON THEN

Line 696: FND_MSG_PUB.Count_And_Get (

692: IF OZF_DEBUG_HIGH_ON THEN
693: OZF_UTILITY_PVT.debug_message(p_message_text => l_full_name||': End');
694: END IF;
695: --Standard call to get message count and if count=1, get the message
696: FND_MSG_PUB.Count_And_Get (
697: p_encoded => FND_API.G_FALSE,
698: p_count => x_msg_count,
699: p_data => x_msg_data
700: );

Line 706: FND_MSG_PUB.Count_And_Get (

702: EXCEPTION
703: WHEN FND_API.G_EXC_ERROR THEN
704: x_return_status := FND_API.G_RET_STS_ERROR;
705: -- Standard call to get message count and if count=1, get the message
706: FND_MSG_PUB.Count_And_Get (
707: p_encoded => FND_API.G_FALSE,
708: p_count => x_msg_count,
709: p_data => x_msg_data
710: );

Line 716: FND_MSG_PUB.Count_And_Get (

712: ROLLBACK TO TRAC_INITIATE_PAYMENT;
713: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
714:
715: -- Standard call to get message count and if count=1, get the message
716: FND_MSG_PUB.Count_And_Get (
717: p_encoded => FND_API.G_FALSE,
718: p_count => x_msg_count,
719: p_data => x_msg_data
720: );

Line 726: FND_MSG_PUB.Count_And_Get (

722: ROLLBACK TO TRAC_INITIATE_PAYMENT;
723: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
724:
725: -- Standard call to get message count and if count=1, get the message
726: FND_MSG_PUB.Count_And_Get (
727: p_encoded => FND_API.G_FALSE,
728: p_count => x_msg_count,
729: p_data => x_msg_data
730: );

Line 791: FND_MSG_PUB.initialize;

787: END IF;
788:
789: --Initialize message list if p_init_msg_list is TRUE.
790: IF FND_API.To_Boolean (p_init_msg_list) THEN
791: FND_MSG_PUB.initialize;
792: END IF;
793:
794: -- Initialize API return status to sucess
795: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 855: FND_MSG_PUB.Count_And_Get (

851: IF OZF_DEBUG_HIGH_ON THEN
852: OZF_UTILITY_PVT.debug_message(p_message_text => l_full_name||': End');
853: END IF;
854: --Standard call to get message count and if count=1, get the message
855: FND_MSG_PUB.Count_And_Get (
856: p_encoded => FND_API.G_FALSE,
857: p_count => x_msg_count,
858: p_data => x_msg_data
859: );

Line 864: FND_MSG_PUB.Count_And_Get (

860: EXCEPTION
861: WHEN FND_API.G_EXC_ERROR THEN
862: x_return_status := FND_API.G_RET_STS_ERROR;
863: -- Standard call to get message count and if count=1, get the message
864: FND_MSG_PUB.Count_And_Get (
865: p_encoded => FND_API.G_FALSE,
866: p_count => x_msg_count,
867: p_data => x_msg_data
868: );

Line 872: FND_MSG_PUB.Count_And_Get (

868: );
869: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
870: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
871: -- Standard call to get message count and if count=1, get the message
872: FND_MSG_PUB.Count_And_Get (
873: p_encoded => FND_API.G_FALSE,
874: p_count => x_msg_count,
875: p_data => x_msg_data
876: );

Line 881: FND_MSG_PUB.Count_And_Get (

877: WHEN OTHERS THEN
878: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
879:
880: -- Standard call to get message count and if count=1, get the message
881: FND_MSG_PUB.Count_And_Get (
882: p_encoded => FND_API.G_FALSE,
883: p_count => x_msg_count,
884: p_data => x_msg_data
885: );

Line 1002: FND_MSG_PUB.initialize;

998: END IF;
999:
1000: --Initialize message list if p_init_msg_list is TRUE.
1001: IF FND_API.To_Boolean (p_init_msg_list) THEN
1002: FND_MSG_PUB.initialize;
1003: END IF;
1004:
1005: -- Initialize API return status to sucess
1006: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1224: FND_MSG_PUB.Count_And_Get (

1220: IF OZF_DEBUG_HIGH_ON THEN
1221: OZF_UTILITY_PVT.debug_message(p_message_text => l_full_name||': End');
1222: END IF;
1223: --Standard call to get message count and if count=1, get the message
1224: FND_MSG_PUB.Count_And_Get (
1225: p_encoded => FND_API.G_FALSE,
1226: p_count => x_msg_count,
1227: p_data => x_msg_data
1228: );

Line 1235: FND_MSG_PUB.Count_And_Get (

1231: WHEN FND_API.G_EXC_ERROR THEN
1232: ROLLBACK TO PROCESS_TRAC_ORDER;
1233: x_return_status := FND_API.G_RET_STS_ERROR;
1234: -- Standard call to get message count and if count=1, get the message
1235: FND_MSG_PUB.Count_And_Get (
1236: p_encoded => FND_API.G_FALSE,
1237: p_count => x_msg_count,
1238: p_data => x_msg_data
1239: );

Line 1245: FND_MSG_PUB.Count_And_Get (

1241: ROLLBACK TO PROCESS_TRAC_ORDER;
1242: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1243:
1244: -- Standard call to get message count and if count=1, get the message
1245: FND_MSG_PUB.Count_And_Get (
1246: p_encoded => FND_API.G_FALSE,
1247: p_count => x_msg_count,
1248: p_data => x_msg_data
1249: );

Line 1255: FND_MSG_PUB.Count_And_Get (

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