DBA Data[Home] [Help]

APPS.PV_PG_ENRQ_INIT_SOURCES_PVT dependencies on FND_MSG_PUB

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

66: --
67: -- End of Comments
68: -- ==============================================================================
69:
70: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
71: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
72: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
73:
74: PROCEDURE Create_Pg_Enrq_Init_Sources(

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

67: -- End of Comments
68: -- ==============================================================================
69:
70: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
71: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
72: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
73:
74: PROCEDURE Create_Pg_Enrq_Init_Sources(
75: p_api_version_number IN NUMBER,

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

68: -- ==============================================================================
69:
70: PV_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
71: PV_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
72: PV_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
73:
74: PROCEDURE Create_Pg_Enrq_Init_Sources(
75: p_api_version_number IN NUMBER,
76: p_init_msg_list IN VARCHAR2 := Fnd_Api.G_FALSE,

Line 121: Fnd_Msg_Pub.initialize;

117:
118: -- Initialize message list if p_init_msg_list is set to TRUE.
119: IF Fnd_Api.to_Boolean( p_init_msg_list )
120: THEN
121: Fnd_Msg_Pub.initialize;
122: END IF;
123:
124:
125:

Line 234: Fnd_Msg_Pub.Count_And_Get

230: END IF;
231:
232:
233: -- Standard call to get message count and if count is 1, get message info.
234: Fnd_Msg_Pub.Count_And_Get
235: (p_count => x_msg_count,
236: p_data => x_msg_data
237: );
238: EXCEPTION

Line 248: Fnd_Msg_Pub.Count_And_Get (

244: WHEN Fnd_Api.G_EXC_ERROR THEN
245: ROLLBACK TO CREATE_Pg_Init_Src_PVT;
246: x_return_status := Fnd_Api.G_RET_STS_ERROR;
247: -- Standard call to get message count and if count=1, get the message
248: Fnd_Msg_Pub.Count_And_Get (
249: p_encoded => Fnd_Api.G_FALSE,
250: p_count => x_msg_count,
251: p_data => x_msg_data
252: );

Line 258: Fnd_Msg_Pub.Count_And_Get (

254: WHEN Fnd_Api.G_EXC_UNEXPECTED_ERROR THEN
255: ROLLBACK TO CREATE_Pg_Init_Src_PVT;
256: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
257: -- Standard call to get message count and if count=1, get the message
258: Fnd_Msg_Pub.Count_And_Get (
259: p_encoded => Fnd_Api.G_FALSE,
260: p_count => x_msg_count,
261: p_data => x_msg_data
262: );

Line 267: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)

263:
264: WHEN OTHERS THEN
265: ROLLBACK TO CREATE_Pg_Init_Src_PVT;
266: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
267: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
268: THEN
269: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
270: END IF;
271: -- Standard call to get message count and if count=1, get the message

Line 269: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);

265: ROLLBACK TO CREATE_Pg_Init_Src_PVT;
266: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
267: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
268: THEN
269: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
270: END IF;
271: -- Standard call to get message count and if count=1, get the message
272: Fnd_Msg_Pub.Count_And_Get (
273: p_encoded => Fnd_Api.G_FALSE,

Line 272: Fnd_Msg_Pub.Count_And_Get (

268: THEN
269: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
270: END IF;
271: -- Standard call to get message count and if count=1, get the message
272: Fnd_Msg_Pub.Count_And_Get (
273: p_encoded => Fnd_Api.G_FALSE,
274: p_count => x_msg_count,
275: p_data => x_msg_data
276: );

Line 362: Fnd_Msg_Pub.initialize;

358:
359: -- Initialize message list if p_init_msg_list is set to TRUE.
360: IF Fnd_Api.to_Boolean( p_init_msg_list )
361: THEN
362: Fnd_Msg_Pub.initialize;
363: END IF;
364:
365:
366:

Line 479: Fnd_Msg_Pub.Count_And_Get

475: END IF;
476:
477:
478: -- Standard call to get message count and if count is 1, get message info.
479: Fnd_Msg_Pub.Count_And_Get
480: (p_count => x_msg_count,
481: p_data => x_msg_data
482: );
483: EXCEPTION

Line 493: Fnd_Msg_Pub.Count_And_Get (

489: WHEN Fnd_Api.G_EXC_ERROR THEN
490: ROLLBACK TO UPDATE_Pg_Init_Src_PVT;
491: x_return_status := Fnd_Api.G_RET_STS_ERROR;
492: -- Standard call to get message count and if count=1, get the message
493: Fnd_Msg_Pub.Count_And_Get (
494: p_encoded => Fnd_Api.G_FALSE,
495: p_count => x_msg_count,
496: p_data => x_msg_data
497: );

Line 503: Fnd_Msg_Pub.Count_And_Get (

499: WHEN Fnd_Api.G_EXC_UNEXPECTED_ERROR THEN
500: ROLLBACK TO UPDATE_Pg_Init_Src_PVT;
501: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
502: -- Standard call to get message count and if count=1, get the message
503: Fnd_Msg_Pub.Count_And_Get (
504: p_encoded => Fnd_Api.G_FALSE,
505: p_count => x_msg_count,
506: p_data => x_msg_data
507: );

Line 512: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)

508:
509: WHEN OTHERS THEN
510: ROLLBACK TO UPDATE_Pg_Init_Src_PVT;
511: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
512: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
513: THEN
514: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
515: END IF;
516: -- Standard call to get message count and if count=1, get the message

Line 514: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);

510: ROLLBACK TO UPDATE_Pg_Init_Src_PVT;
511: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
512: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
513: THEN
514: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
515: END IF;
516: -- Standard call to get message count and if count=1, get the message
517: Fnd_Msg_Pub.Count_And_Get (
518: p_encoded => Fnd_Api.G_FALSE,

Line 517: Fnd_Msg_Pub.Count_And_Get (

513: THEN
514: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
515: END IF;
516: -- Standard call to get message count and if count=1, get the message
517: Fnd_Msg_Pub.Count_And_Get (
518: p_encoded => Fnd_Api.G_FALSE,
519: p_count => x_msg_count,
520: p_data => x_msg_data
521: );

Line 593: Fnd_Msg_Pub.initialize;

589:
590: -- Initialize message list if p_init_msg_list is set to TRUE.
591: IF Fnd_Api.to_Boolean( p_init_msg_list )
592: THEN
593: Fnd_Msg_Pub.initialize;
594: END IF;
595:
596:
597:

Line 641: Fnd_Msg_Pub.Count_And_Get

637: END IF;
638:
639:
640: -- Standard call to get message count and if count is 1, get message info.
641: Fnd_Msg_Pub.Count_And_Get
642: (p_count => x_msg_count,
643: p_data => x_msg_data
644: );
645: EXCEPTION

Line 655: Fnd_Msg_Pub.Count_And_Get (

651: WHEN Fnd_Api.G_EXC_ERROR THEN
652: ROLLBACK TO DELETE_Pg_Init_Src_PVT;
653: x_return_status := Fnd_Api.G_RET_STS_ERROR;
654: -- Standard call to get message count and if count=1, get the message
655: Fnd_Msg_Pub.Count_And_Get (
656: p_encoded => Fnd_Api.G_FALSE,
657: p_count => x_msg_count,
658: p_data => x_msg_data
659: );

Line 665: Fnd_Msg_Pub.Count_And_Get (

661: WHEN Fnd_Api.G_EXC_UNEXPECTED_ERROR THEN
662: ROLLBACK TO DELETE_Pg_Init_Src_PVT;
663: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
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 674: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)

670:
671: WHEN OTHERS THEN
672: ROLLBACK TO DELETE_Pg_Init_Src_PVT;
673: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
674: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
675: THEN
676: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
677: END IF;
678: -- Standard call to get message count and if count=1, get the message

Line 676: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);

672: ROLLBACK TO DELETE_Pg_Init_Src_PVT;
673: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
674: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
675: THEN
676: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
677: END IF;
678: -- Standard call to get message count and if count=1, get the message
679: Fnd_Msg_Pub.Count_And_Get (
680: p_encoded => Fnd_Api.G_FALSE,

Line 679: Fnd_Msg_Pub.Count_And_Get (

675: THEN
676: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
677: END IF;
678: -- Standard call to get message count and if count=1, get the message
679: Fnd_Msg_Pub.Count_And_Get (
680: p_encoded => Fnd_Api.G_FALSE,
681: p_count => x_msg_count,
682: p_data => x_msg_data
683: );

Line 752: Fnd_Msg_Pub.initialize;

748:
749: -- Initialize message list if p_init_msg_list is set to TRUE.
750: IF Fnd_Api.to_Boolean( p_init_msg_list )
751: THEN
752: Fnd_Msg_Pub.initialize;
753: END IF;
754:
755:
756:

Line 777: Fnd_Msg_Pub.count_and_get(

773: Pv_Pg_Enrq_Init_Sources_Pkg.Lock_Row(l_initiation_source_id,p_object_version);
774:
775:
776: -------------------- finish --------------------------
777: Fnd_Msg_Pub.count_and_get(
778: p_encoded => Fnd_Api.g_false,
779: p_count => x_msg_count,
780: p_data => x_msg_data);
781: IF (PV_DEBUG_HIGH_ON) THEN

Line 795: Fnd_Msg_Pub.Count_And_Get (

791: WHEN Fnd_Api.G_EXC_ERROR THEN
792: ROLLBACK TO LOCK_Pg_Enrq_Init_Sources_PVT;
793: x_return_status := Fnd_Api.G_RET_STS_ERROR;
794: -- Standard call to get message count and if count=1, get the message
795: Fnd_Msg_Pub.Count_And_Get (
796: p_encoded => Fnd_Api.G_FALSE,
797: p_count => x_msg_count,
798: p_data => x_msg_data
799: );

Line 805: Fnd_Msg_Pub.Count_And_Get (

801: WHEN Fnd_Api.G_EXC_UNEXPECTED_ERROR THEN
802: ROLLBACK TO LOCK_Pg_Enrq_Init_Sources_PVT;
803: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
804: -- Standard call to get message count and if count=1, get the message
805: Fnd_Msg_Pub.Count_And_Get (
806: p_encoded => Fnd_Api.G_FALSE,
807: p_count => x_msg_count,
808: p_data => x_msg_data
809: );

Line 814: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)

810:
811: WHEN OTHERS THEN
812: ROLLBACK TO LOCK_Pg_Enrq_Init_Sources_PVT;
813: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
814: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
815: THEN
816: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
817: END IF;
818: -- Standard call to get message count and if count=1, get the message

Line 816: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);

812: ROLLBACK TO LOCK_Pg_Enrq_Init_Sources_PVT;
813: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
814: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
815: THEN
816: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
817: END IF;
818: -- Standard call to get message count and if count=1, get the message
819: Fnd_Msg_Pub.Count_And_Get (
820: p_encoded => Fnd_Api.G_FALSE,

Line 819: Fnd_Msg_Pub.Count_And_Get (

815: THEN
816: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
817: END IF;
818: -- Standard call to get message count and if count=1, get the message
819: Fnd_Msg_Pub.Count_And_Get (
820: p_encoded => Fnd_Api.G_FALSE,
821: p_count => x_msg_count,
822: p_data => x_msg_data
823: );

Line 1131: Fnd_Msg_Pub.initialize;

1127:
1128: -- Initialize message list if p_init_msg_list is set to TRUE.
1129: IF Fnd_Api.to_Boolean( p_init_msg_list )
1130: THEN
1131: Fnd_Msg_Pub.initialize;
1132: END IF;
1133:
1134:
1135: IF p_validation_level >= Jtf_Plsql_Api.g_valid_level_item THEN

Line 1199: Fnd_Msg_Pub.Count_And_Get

1195: END IF;
1196:
1197:
1198: -- Standard call to get message count and if count is 1, get message info.
1199: Fnd_Msg_Pub.Count_And_Get
1200: (p_count => x_msg_count,
1201: p_data => x_msg_data
1202: );
1203: EXCEPTION

Line 1213: Fnd_Msg_Pub.Count_And_Get (

1209: WHEN Fnd_Api.G_EXC_ERROR THEN
1210: ROLLBACK TO Validate_Pg_Init_Src_;
1211: x_return_status := Fnd_Api.G_RET_STS_ERROR;
1212: -- Standard call to get message count and if count=1, get the message
1213: Fnd_Msg_Pub.Count_And_Get (
1214: p_encoded => Fnd_Api.G_FALSE,
1215: p_count => x_msg_count,
1216: p_data => x_msg_data
1217: );

Line 1223: Fnd_Msg_Pub.Count_And_Get (

1219: WHEN Fnd_Api.G_EXC_UNEXPECTED_ERROR THEN
1220: ROLLBACK TO Validate_Pg_Init_Src_;
1221: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
1222: -- Standard call to get message count and if count=1, get the message
1223: Fnd_Msg_Pub.Count_And_Get (
1224: p_encoded => Fnd_Api.G_FALSE,
1225: p_count => x_msg_count,
1226: p_data => x_msg_data
1227: );

Line 1232: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)

1228:
1229: WHEN OTHERS THEN
1230: ROLLBACK TO Validate_Pg_Init_Src_;
1231: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
1232: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
1233: THEN
1234: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1235: END IF;
1236: -- Standard call to get message count and if count=1, get the message

Line 1234: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);

1230: ROLLBACK TO Validate_Pg_Init_Src_;
1231: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
1232: IF Fnd_Msg_Pub.Check_Msg_Level ( Fnd_Msg_Pub.G_MSG_LVL_UNEXP_ERROR)
1233: THEN
1234: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1235: END IF;
1236: -- Standard call to get message count and if count=1, get the message
1237: Fnd_Msg_Pub.Count_And_Get (
1238: p_encoded => Fnd_Api.G_FALSE,

Line 1237: Fnd_Msg_Pub.Count_And_Get (

1233: THEN
1234: Fnd_Msg_Pub.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1235: END IF;
1236: -- Standard call to get message count and if count=1, get the message
1237: Fnd_Msg_Pub.Count_And_Get (
1238: p_encoded => Fnd_Api.G_FALSE,
1239: p_count => x_msg_count,
1240: p_data => x_msg_data
1241: );

Line 1258: Fnd_Msg_Pub.initialize;

1254: BEGIN
1255: -- Initialize message list if p_init_msg_list is set to TRUE.
1256: IF Fnd_Api.to_Boolean( p_init_msg_list )
1257: THEN
1258: Fnd_Msg_Pub.initialize;
1259: END IF;
1260:
1261:
1262:

Line 1277: Fnd_Msg_Pub.Count_And_Get

1273:
1274: Pvx_Utility_Pvt.debug_message('Private API: Validate_dm_model_rec');
1275: END IF;
1276: -- Standard call to get message count and if count is 1, get message info.
1277: Fnd_Msg_Pub.Count_And_Get
1278: (p_count => x_msg_count,
1279: p_data => x_msg_data
1280: );
1281: END Validate_Init_Src_Rec;