DBA Data[Home] [Help]

APPS.PV_PG_INVITE_HEADERS_PVT dependencies on FND_MSG_PUB

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

69: --
70: -- End of Comments
71: -- ==============================================================================
72:
73: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
74: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
75: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
76:
77: PROCEDURE Create_Invite_Headers(

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

70: -- End of Comments
71: -- ==============================================================================
72:
73: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
74: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
75: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
76:
77: PROCEDURE Create_Invite_Headers(
78: p_api_version_number IN NUMBER,

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

71: -- ==============================================================================
72:
73: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
74: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
75: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
76:
77: PROCEDURE Create_Invite_Headers(
78: p_api_version_number IN NUMBER,
79: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

Line 124: FND_MSG_PUB.initialize;

120:
121: -- Initialize message list if p_init_msg_list is set to TRUE.
122: IF FND_API.to_Boolean( p_init_msg_list )
123: THEN
124: FND_MSG_PUB.initialize;
125: END IF;
126:
127:
128:

Line 250: FND_MSG_PUB.Count_And_Get

246: END IF;
247:
248:
249: -- Standard call to get message count and if count is 1, get message info.
250: FND_MSG_PUB.Count_And_Get
251: (p_count => x_msg_count,
252: p_data => x_msg_data
253: );
254: EXCEPTION

Line 264: FND_MSG_PUB.Count_And_Get (

260: WHEN FND_API.G_EXC_ERROR THEN
261: ROLLBACK TO CREATE_Invite_Headers_PVT;
262: x_return_status := FND_API.G_RET_STS_ERROR;
263: -- Standard call to get message count and if count=1, get the message
264: FND_MSG_PUB.Count_And_Get (
265: p_encoded => FND_API.G_FALSE,
266: p_count => x_msg_count,
267: p_data => x_msg_data
268: );

Line 274: FND_MSG_PUB.Count_And_Get (

270: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
271: ROLLBACK TO CREATE_Invite_Headers_PVT;
272: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
273: -- Standard call to get message count and if count=1, get the message
274: FND_MSG_PUB.Count_And_Get (
275: p_encoded => FND_API.G_FALSE,
276: p_count => x_msg_count,
277: p_data => x_msg_data
278: );

Line 283: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

279:
280: WHEN OTHERS THEN
281: ROLLBACK TO CREATE_Invite_Headers_PVT;
282: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
283: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
284: THEN
285: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
286: END IF;
287: -- Standard call to get message count and if count=1, get the message

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

281: ROLLBACK TO CREATE_Invite_Headers_PVT;
282: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
283: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
284: THEN
285: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
286: END IF;
287: -- Standard call to get message count and if count=1, get the message
288: FND_MSG_PUB.Count_And_Get (
289: p_encoded => FND_API.G_FALSE,

Line 288: FND_MSG_PUB.Count_And_Get (

284: THEN
285: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
286: END IF;
287: -- Standard call to get message count and if count=1, get the message
288: FND_MSG_PUB.Count_And_Get (
289: p_encoded => FND_API.G_FALSE,
290: p_count => x_msg_count,
291: p_data => x_msg_data
292: );

Line 378: FND_MSG_PUB.initialize;

374:
375: -- Initialize message list if p_init_msg_list is set to TRUE.
376: IF FND_API.to_Boolean( p_init_msg_list )
377: THEN
378: FND_MSG_PUB.initialize;
379: END IF;
380:
381:
382:

Line 501: FND_MSG_PUB.Count_And_Get

497: END IF;
498:
499:
500: -- Standard call to get message count and if count is 1, get message info.
501: FND_MSG_PUB.Count_And_Get
502: (p_count => x_msg_count,
503: p_data => x_msg_data
504: );
505: EXCEPTION

Line 515: FND_MSG_PUB.Count_And_Get (

511: WHEN FND_API.G_EXC_ERROR THEN
512: ROLLBACK TO UPDATE_Invite_Headers_PVT;
513: x_return_status := FND_API.G_RET_STS_ERROR;
514: -- Standard call to get message count and if count=1, get the message
515: FND_MSG_PUB.Count_And_Get (
516: p_encoded => FND_API.G_FALSE,
517: p_count => x_msg_count,
518: p_data => x_msg_data
519: );

Line 525: FND_MSG_PUB.Count_And_Get (

521: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
522: ROLLBACK TO UPDATE_Invite_Headers_PVT;
523: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
524: -- Standard call to get message count and if count=1, get the message
525: FND_MSG_PUB.Count_And_Get (
526: p_encoded => FND_API.G_FALSE,
527: p_count => x_msg_count,
528: p_data => x_msg_data
529: );

Line 534: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

530:
531: WHEN OTHERS THEN
532: ROLLBACK TO UPDATE_Invite_Headers_PVT;
533: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
534: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
535: THEN
536: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
537: END IF;
538: -- Standard call to get message count and if count=1, get the message

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

532: ROLLBACK TO UPDATE_Invite_Headers_PVT;
533: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
534: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
535: THEN
536: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
537: END IF;
538: -- Standard call to get message count and if count=1, get the message
539: FND_MSG_PUB.Count_And_Get (
540: p_encoded => FND_API.G_FALSE,

Line 539: FND_MSG_PUB.Count_And_Get (

535: THEN
536: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
537: END IF;
538: -- Standard call to get message count and if count=1, get the message
539: FND_MSG_PUB.Count_And_Get (
540: p_encoded => FND_API.G_FALSE,
541: p_count => x_msg_count,
542: p_data => x_msg_data
543: );

Line 615: FND_MSG_PUB.initialize;

611:
612: -- Initialize message list if p_init_msg_list is set to TRUE.
613: IF FND_API.to_Boolean( p_init_msg_list )
614: THEN
615: FND_MSG_PUB.initialize;
616: END IF;
617:
618:
619:

Line 663: FND_MSG_PUB.Count_And_Get

659: END IF;
660:
661:
662: -- Standard call to get message count and if count is 1, get message info.
663: FND_MSG_PUB.Count_And_Get
664: (p_count => x_msg_count,
665: p_data => x_msg_data
666: );
667: EXCEPTION

Line 677: FND_MSG_PUB.Count_And_Get (

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

Line 687: FND_MSG_PUB.Count_And_Get (

683: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
684: ROLLBACK TO DELETE_Invite_Headers_PVT;
685: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
686: -- Standard call to get message count and if count=1, get the message
687: FND_MSG_PUB.Count_And_Get (
688: p_encoded => FND_API.G_FALSE,
689: p_count => x_msg_count,
690: p_data => x_msg_data
691: );

Line 696: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

692:
693: WHEN OTHERS THEN
694: ROLLBACK TO DELETE_Invite_Headers_PVT;
695: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
696: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
697: THEN
698: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
699: END IF;
700: -- Standard call to get message count and if count=1, get the message

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

694: ROLLBACK TO DELETE_Invite_Headers_PVT;
695: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
696: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
697: THEN
698: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
699: END IF;
700: -- Standard call to get message count and if count=1, get the message
701: FND_MSG_PUB.Count_And_Get (
702: p_encoded => FND_API.G_FALSE,

Line 701: FND_MSG_PUB.Count_And_Get (

697: THEN
698: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
699: END IF;
700: -- Standard call to get message count and if count=1, get the message
701: FND_MSG_PUB.Count_And_Get (
702: p_encoded => FND_API.G_FALSE,
703: p_count => x_msg_count,
704: p_data => x_msg_data
705: );

Line 774: FND_MSG_PUB.initialize;

770:
771: -- Initialize message list if p_init_msg_list is set to TRUE.
772: IF FND_API.to_Boolean( p_init_msg_list )
773: THEN
774: FND_MSG_PUB.initialize;
775: END IF;
776:
777:
778:

Line 799: FND_MSG_PUB.count_and_get(

795: Pv_Pg_Invite_Headers_Pkg.Lock_Row(l_INVITE_HEADER_ID,p_object_version);
796:
797:
798: -------------------- finish --------------------------
799: FND_MSG_PUB.count_and_get(
800: p_encoded => FND_API.g_false,
801: p_count => x_msg_count,
802: p_data => x_msg_data);
803: IF (PV_DEBUG_HIGH_ON) THEN

Line 817: FND_MSG_PUB.Count_And_Get (

813: WHEN FND_API.G_EXC_ERROR THEN
814: ROLLBACK TO LOCK_Invite_Headers_PVT;
815: x_return_status := FND_API.G_RET_STS_ERROR;
816: -- Standard call to get message count and if count=1, get the message
817: FND_MSG_PUB.Count_And_Get (
818: p_encoded => FND_API.G_FALSE,
819: p_count => x_msg_count,
820: p_data => x_msg_data
821: );

Line 827: FND_MSG_PUB.Count_And_Get (

823: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
824: ROLLBACK TO LOCK_Invite_Headers_PVT;
825: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
826: -- Standard call to get message count and if count=1, get the message
827: FND_MSG_PUB.Count_And_Get (
828: p_encoded => FND_API.G_FALSE,
829: p_count => x_msg_count,
830: p_data => x_msg_data
831: );

Line 836: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

832:
833: WHEN OTHERS THEN
834: ROLLBACK TO LOCK_Invite_Headers_PVT;
835: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
836: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
837: THEN
838: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
839: END IF;
840: -- Standard call to get message count and if count=1, get the message

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

834: ROLLBACK TO LOCK_Invite_Headers_PVT;
835: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
836: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
837: THEN
838: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
839: END IF;
840: -- Standard call to get message count and if count=1, get the message
841: FND_MSG_PUB.Count_And_Get (
842: p_encoded => FND_API.G_FALSE,

Line 841: FND_MSG_PUB.Count_And_Get (

837: THEN
838: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
839: END IF;
840: -- Standard call to get message count and if count=1, get the message
841: FND_MSG_PUB.Count_And_Get (
842: p_encoded => FND_API.G_FALSE,
843: p_count => x_msg_count,
844: p_data => x_msg_data
845: );

Line 1174: FND_MSG_PUB.initialize;

1170:
1171: -- Initialize message list if p_init_msg_list is set to TRUE.
1172: IF FND_API.to_Boolean( p_init_msg_list )
1173: THEN
1174: FND_MSG_PUB.initialize;
1175: END IF;
1176:
1177:
1178: IF p_validation_level >= JTF_PLSQL_API.g_valid_level_item THEN

Line 1242: FND_MSG_PUB.Count_And_Get

1238: END IF;
1239:
1240:
1241: -- Standard call to get message count and if count is 1, get message info.
1242: FND_MSG_PUB.Count_And_Get
1243: (p_count => x_msg_count,
1244: p_data => x_msg_data
1245: );
1246: EXCEPTION

Line 1256: FND_MSG_PUB.Count_And_Get (

1252: WHEN FND_API.G_EXC_ERROR THEN
1253: ROLLBACK TO VALIDATE_Invite_Headers_;
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 1266: FND_MSG_PUB.Count_And_Get (

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

Line 1275: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

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

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

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

Line 1280: FND_MSG_PUB.Count_And_Get (

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

Line 1301: FND_MSG_PUB.initialize;

1297: BEGIN
1298: -- Initialize message list if p_init_msg_list is set to TRUE.
1299: IF FND_API.to_Boolean( p_init_msg_list )
1300: THEN
1301: FND_MSG_PUB.initialize;
1302: END IF;
1303:
1304:
1305:

Line 1320: FND_MSG_PUB.Count_And_Get

1316:
1317: PVX_UTILITY_PVT.debug_message('Private API: Validate_dm_model_rec');
1318: END IF;
1319: -- Standard call to get message count and if count is 1, get message info.
1320: FND_MSG_PUB.Count_And_Get
1321: (p_count => x_msg_count,
1322: p_data => x_msg_data
1323: );
1324: END Validate_invite_headers_Rec;