DBA Data[Home] [Help]

APPS.OZF_RESALE_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_RESALE_PVT';
11: G_FILE_NAME CONSTANT VARCHAR2(30) := 'ozfvssb.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: G_TPM_PROCESS_ENABLED VARCHAR2 (1) := NVL(fnd_profile.VALUE ('OZF_TPM_PROCESS_ENABLED'),'N');
16:
17: CURSOR g_org_id_csr(p_id number) IS

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_RESALE_PVT';
11: G_FILE_NAME CONSTANT VARCHAR2(30) := 'ozfvssb.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: G_TPM_PROCESS_ENABLED VARCHAR2 (1) := NVL(fnd_profile.VALUE ('OZF_TPM_PROCESS_ENABLED'),'N');
16:
17: CURSOR g_org_id_csr(p_id number) IS
18: SELECT org_id

Line 76: FND_MSG_PUB.initialize;

72: END IF;
73:
74: --Initialize message list if p_init_msg_list is TRUE.
75: IF FND_API.To_Boolean (p_init_msg_list) THEN
76: FND_MSG_PUB.initialize;
77: END IF;
78:
79: -- Initialize API return status to sucess
80: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 169: FND_MSG_PUB.Count_And_Get (

165: IF OZF_DEBUG_HIGH_ON THEN
166: OZF_UTILITY_PVT.debug_message(p_message_text => l_full_name||': End');
167: END IF;
168: --Standard call to get message count and if count=1, get the message
169: FND_MSG_PUB.Count_And_Get (
170: p_encoded => FND_API.G_FALSE,
171: p_count => x_msg_count,
172: p_data => x_msg_data
173: );

Line 181: FND_MSG_PUB.Count_And_Get (

177: WHEN FND_API.G_EXC_ERROR THEN
178: ROLLBACK TO INITIATE_PAYMENT;
179: x_return_status := FND_API.G_RET_STS_ERROR;
180: -- Standard call to get message count and if count=1, get the message
181: FND_MSG_PUB.Count_And_Get (
182: p_encoded => FND_API.G_FALSE,
183: p_count => x_msg_count,
184: p_data => x_msg_data
185: );

Line 190: FND_MSG_PUB.Count_And_Get (

186: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
187: ROLLBACK TO INITIATE_PAYMENT;
188: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
189: -- Standard call to get message count and if count=1, get the message
190: FND_MSG_PUB.Count_And_Get (
191: p_encoded => FND_API.G_FALSE,
192: p_count => x_msg_count,
193: p_data => x_msg_data
194: );

Line 199: FND_MSG_PUB.Count_And_Get (

195: WHEN OTHERS THEN
196: ROLLBACK TO INITIATE_PAYMENT;
197: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
198: -- Standard call to get message count and if count=1, get the message
199: FND_MSG_PUB.Count_And_Get (
200: p_encoded => FND_API.G_FALSE,
201: p_count => x_msg_count,
202: p_data => x_msg_data
203: );

Line 274: FND_MSG_PUB.count_and_get (

270: END IF;
271: resultout := l_resultout;
272: EXCEPTION
273: WHEN FND_API.G_EXC_ERROR THEN
274: FND_MSG_PUB.count_and_get (
275: p_encoded => FND_API.g_false
276: ,p_count => l_msg_count
277: ,p_data => l_msg_data
278: );

Line 292: fnd_msg_pub.Count_And_Get(

288: resultout := 'COMPLETE:N';
289: RETURN;
290:
291: WHEN OTHERS THEN
292: fnd_msg_pub.Count_And_Get(
293: p_encoded => FND_API.G_TRUE
294: ,p_count => l_msg_count
295: ,p_data => l_msg_data);
296: wf_core.context(G_PKG_NAME, l_api_name,l_msg_data);

Line 385: FND_MSG_PUB.initialize;

381: END IF;
382:
383: --Initialize message list if p_init_msg_list is TRUE.
384: IF FND_API.To_Boolean (p_init_msg_list) THEN
385: FND_MSG_PUB.initialize;
386: END IF;
387:
388: -- Debug Message
389: IF OZF_DEBUG_HIGH_ON THEN

Line 665: FND_MSG_PUB.Count_And_Get (

661: IF OZF_DEBUG_HIGH_ON THEN
662: OZF_UTILITY_PVT.debug_message(p_message_text => l_full_name||': End');
663: END IF;
664: --Standard call to get message count and if count=1, get the message
665: FND_MSG_PUB.Count_And_Get (
666: p_encoded => FND_API.G_FALSE,
667: p_count => x_msg_count,
668: p_data => x_msg_data
669: );

Line 675: FND_MSG_PUB.Count_And_Get (

671: EXCEPTION
672: WHEN FND_API.G_EXC_ERROR THEN
673: x_return_status := FND_API.G_RET_STS_ERROR;
674: -- Standard call to get message count and if count=1, get the message
675: FND_MSG_PUB.Count_And_Get (
676: p_encoded => FND_API.G_FALSE,
677: p_count => x_msg_count,
678: p_data => x_msg_data
679: );

Line 683: FND_MSG_PUB.Count_And_Get (

679: );
680: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
681: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
682: -- Standard call to get message count and if count=1, get the message
683: FND_MSG_PUB.Count_And_Get (
684: p_encoded => FND_API.G_FALSE,
685: p_count => x_msg_count,
686: p_data => x_msg_data
687: );

Line 692: FND_MSG_PUB.Count_And_Get (

688: WHEN OTHERS THEN
689: ROLLBACK TO PROCESS_IFACE;
690: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
691: -- Standard call to get message count and if count=1, get the message
692: FND_MSG_PUB.Count_And_Get (
693: p_encoded => FND_API.G_FALSE,
694: p_count => x_msg_count,
695: p_data => x_msg_data
696: );

Line 764: FND_MSG_PUB.count_and_get (

760: END IF;
761: resultout := l_resultout;
762: EXCEPTION
763: WHEN FND_API.G_EXC_ERROR THEN
764: FND_MSG_PUB.count_and_get (
765: p_encoded => FND_API.g_false
766: ,p_count => l_msg_count
767: ,p_data => l_msg_data
768: );

Line 781: fnd_msg_pub.Count_And_Get(

777: resultout := 'COMPLETE:N';
778: RETURN;
779:
780: WHEN OTHERS THEN
781: fnd_msg_pub.Count_And_Get(
782: p_encoded => FND_API.G_TRUE
783: ,p_count => l_msg_count
784: ,p_data => l_msg_data);
785:

Line 890: FND_MSG_PUB.initialize;

886: END IF;
887:
888: --Initialize message list if p_init_msg_list is TRUE.
889: IF FND_API.To_Boolean (p_init_msg_list) THEN
890: FND_MSG_PUB.initialize;
891: END IF;
892:
893: -- Initialize API return status to sucess
894: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 960: FND_MSG_PUB.Count_And_Get (

956: IF OZF_DEBUG_HIGH_ON THEN
957: OZF_UTILITY_PVT.debug_message(l_full_name||': End');
958: END IF;
959: --Standard call to get message count and if count=1, get the message
960: FND_MSG_PUB.Count_And_Get (
961: p_encoded => FND_API.G_FALSE,
962: p_count => x_msg_count,
963: p_data => x_msg_data
964: );

Line 969: FND_MSG_PUB.Count_And_Get (

965: EXCEPTION
966: WHEN FND_API.G_EXC_ERROR THEN
967: x_return_status := FND_API.G_RET_STS_ERROR;
968: -- Standard call to get message count and if count=1, get the message
969: FND_MSG_PUB.Count_And_Get (
970: p_encoded => FND_API.G_FALSE,
971: p_count => x_msg_count,
972: p_data => x_msg_data
973: );

Line 977: FND_MSG_PUB.Count_And_Get (

973: );
974: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
975: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
976: -- Standard call to get message count and if count=1, get the message
977: FND_MSG_PUB.Count_And_Get (
978: p_encoded => FND_API.G_FALSE,
979: p_count => x_msg_count,
980: p_data => x_msg_data
981: );

Line 986: FND_MSG_PUB.Count_And_Get (

982: WHEN OTHERS THEN
983: ROLLBACK TO PROCESS_RESALE;
984: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
985: -- Standard call to get message count and if count=1, get the message
986: FND_MSG_PUB.Count_And_Get (
987: p_encoded => FND_API.G_FALSE,
988: p_count => x_msg_count,
989: p_data => x_msg_data
990: );

Line 1071: FND_MSG_PUB.initialize;

1067: END IF;
1068:
1069: --Initialize message list if p_init_msg_list is TRUE.
1070: IF FND_API.To_Boolean (p_init_msg_list) THEN
1071: FND_MSG_PUB.initialize;
1072: END IF;
1073:
1074: -- Initialize API return status to sucess
1075: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1189: FND_MSG_PUB.Count_And_Get (

1185: IF OZF_DEBUG_HIGH_ON THEN
1186: OZF_UTILITY_PVT.debug_message(l_full_name||': End');
1187: END IF;
1188: --Standard call to get message count and if count=1, get the message
1189: FND_MSG_PUB.Count_And_Get (
1190: p_encoded => FND_API.G_FALSE,
1191: p_count => x_msg_count,
1192: p_data => x_msg_data
1193: );

Line 1198: FND_MSG_PUB.Count_And_Get (

1194: EXCEPTION
1195: WHEN FND_API.G_EXC_ERROR THEN
1196: x_return_status := FND_API.G_RET_STS_ERROR;
1197: -- Standard call to get message count and if count=1, get the message
1198: FND_MSG_PUB.Count_And_Get (
1199: p_encoded => FND_API.G_FALSE,
1200: p_count => x_msg_count,
1201: p_data => x_msg_data
1202: );

Line 1206: FND_MSG_PUB.Count_And_Get (

1202: );
1203: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1204: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1205: -- Standard call to get message count and if count=1, get the message
1206: FND_MSG_PUB.Count_And_Get (
1207: p_encoded => FND_API.G_FALSE,
1208: p_count => x_msg_count,
1209: p_data => x_msg_data
1210: );

Line 1215: FND_MSG_PUB.Count_And_Get (

1211: WHEN OTHERS THEN
1212: ROLLBACK TO PROCESS_RESALE_ALL;
1213: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1214: -- Standard call to get message count and if count=1, get the message
1215: FND_MSG_PUB.Count_And_Get (
1216: p_encoded => FND_API.G_FALSE,
1217: p_count => x_msg_count,
1218: p_data => x_msg_data
1219: );

Line 1479: FND_MSG_PUB.initialize;

1475: END IF;
1476:
1477: --Initialize message list if p_init_msg_list is TRUE.
1478: IF FND_API.To_Boolean (p_init_msg_list) THEN
1479: FND_MSG_PUB.initialize;
1480: END IF;
1481:
1482: -- Initialize API return status to sucess
1483: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1583: FND_MSG_PUB.Count_And_Get (

1579: IF OZF_DEBUG_HIGH_ON THEN
1580: OZF_UTILITY_PVT.debug_message(l_full_name||': End');
1581: END IF;
1582: --Standard call to get message count and if count=1, get the message
1583: FND_MSG_PUB.Count_And_Get (
1584: p_encoded => FND_API.G_FALSE,
1585: p_count => x_msg_count,
1586: p_data => x_msg_data
1587: );

Line 1595: FND_MSG_PUB.Count_And_Get (

1591: ROLLBACK TO Resale_Purge ;
1592:
1593: x_return_status := FND_API.G_RET_STS_ERROR;
1594: -- Standard call to get message count and if count=1, get the message
1595: FND_MSG_PUB.Count_And_Get (
1596: p_encoded => FND_API.G_FALSE,
1597: p_count => x_msg_count,
1598: p_data => x_msg_data
1599: );

Line 1605: FND_MSG_PUB.Count_And_Get (

1601: ROLLBACK TO Resale_Purge;
1602: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1603:
1604: -- Standard call to get message count and if count=1, get the message
1605: FND_MSG_PUB.Count_And_Get (
1606: p_encoded => FND_API.G_FALSE,
1607: p_count => x_msg_count,
1608: p_data => x_msg_data
1609: );

Line 1615: FND_MSG_PUB.Count_And_Get (

1611: ROLLBACK TO Resale_Purge;
1612: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1613:
1614: -- Standard call to get message count and if count=1, get the message
1615: FND_MSG_PUB.Count_And_Get (
1616: p_encoded => FND_API.G_FALSE,
1617: p_count => x_msg_count,
1618: p_data => x_msg_data
1619: );