DBA Data[Home] [Help]

APPS.OZF_NA_RULE_LINE_PVT dependencies on FND_MSG_PUB

Line 151: FND_MSG_PUB.initialize;

147:
148: -- Initialize message list if p_init_msg_list is set to TRUE.
149: IF FND_API.to_Boolean( p_init_msg_list )
150: THEN
151: FND_MSG_PUB.initialize;
152: END IF;
153:
154:
155:

Line 257: FND_MSG_PUB.Count_And_Get

253: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
254:
255:
256: -- Standard call to get message count and if count is 1, get message info.
257: FND_MSG_PUB.Count_And_Get
258: (p_count => x_msg_count,
259: p_data => x_msg_data
260: );
261: EXCEPTION

Line 271: FND_MSG_PUB.Count_And_Get (

267: WHEN FND_API.G_EXC_ERROR THEN
268: ROLLBACK TO CREATE_Na_Rule_Line_PVT;
269: x_return_status := FND_API.G_RET_STS_ERROR;
270: -- Standard call to get message count and if count=1, get the message
271: FND_MSG_PUB.Count_And_Get (
272: p_encoded => FND_API.G_FALSE,
273: p_count => x_msg_count,
274: p_data => x_msg_data
275: );

Line 281: FND_MSG_PUB.Count_And_Get (

277: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
278: ROLLBACK TO CREATE_Na_Rule_Line_PVT;
279: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
280: -- Standard call to get message count and if count=1, get the message
281: FND_MSG_PUB.Count_And_Get (
282: p_encoded => FND_API.G_FALSE,
283: p_count => x_msg_count,
284: p_data => x_msg_data
285: );

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

286:
287: WHEN OTHERS THEN
288: ROLLBACK TO CREATE_Na_Rule_Line_PVT;
289: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
290: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
291: THEN
292: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
293: END IF;
294: -- Standard call to get message count and if count=1, get the message

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

288: ROLLBACK TO CREATE_Na_Rule_Line_PVT;
289: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
290: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
291: THEN
292: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
293: END IF;
294: -- Standard call to get message count and if count=1, get the message
295: FND_MSG_PUB.Count_And_Get (
296: p_encoded => FND_API.G_FALSE,

Line 295: FND_MSG_PUB.Count_And_Get (

291: THEN
292: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
293: END IF;
294: -- Standard call to get message count and if count=1, get the message
295: FND_MSG_PUB.Count_And_Get (
296: p_encoded => FND_API.G_FALSE,
297: p_count => x_msg_count,
298: p_data => x_msg_data
299: );

Line 385: FND_MSG_PUB.initialize;

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

Line 455: -- OZF_UTILITY_PVT.debug_message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW, 'Private API: Calling update table handler');

451: END IF;
452:
453:
454: -- Debug Message
455: -- OZF_UTILITY_PVT.debug_message(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW, 'Private API: Calling update table handler');
456:
457: -- Invoke table handler(Ozf_Na_Rule_Line_Pkg.Update_Row)
458: Ozf_Na_Rule_Line_Pkg.Update_Row(
459: p_na_rule_line_id => p_na_rule_line_rec.na_rule_line_id,

Line 484: FND_MSG_PUB.Count_And_Get

480: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
481:
482:
483: -- Standard call to get message count and if count is 1, get message info.
484: FND_MSG_PUB.Count_And_Get
485: (p_count => x_msg_count,
486: p_data => x_msg_data
487: );
488: EXCEPTION

Line 498: FND_MSG_PUB.Count_And_Get (

494: WHEN FND_API.G_EXC_ERROR THEN
495: ROLLBACK TO UPDATE_Na_Rule_Line_PVT;
496: x_return_status := FND_API.G_RET_STS_ERROR;
497: -- Standard call to get message count and if count=1, get the message
498: FND_MSG_PUB.Count_And_Get (
499: p_encoded => FND_API.G_FALSE,
500: p_count => x_msg_count,
501: p_data => x_msg_data
502: );

Line 508: FND_MSG_PUB.Count_And_Get (

504: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
505: ROLLBACK TO UPDATE_Na_Rule_Line_PVT;
506: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
507: -- Standard call to get message count and if count=1, get the message
508: FND_MSG_PUB.Count_And_Get (
509: p_encoded => FND_API.G_FALSE,
510: p_count => x_msg_count,
511: p_data => x_msg_data
512: );

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

513:
514: WHEN OTHERS THEN
515: ROLLBACK TO UPDATE_Na_Rule_Line_PVT;
516: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
517: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
518: THEN
519: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
520: END IF;
521: -- Standard call to get message count and if count=1, get the message

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

515: ROLLBACK TO UPDATE_Na_Rule_Line_PVT;
516: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
517: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
518: THEN
519: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
520: END IF;
521: -- Standard call to get message count and if count=1, get the message
522: FND_MSG_PUB.Count_And_Get (
523: p_encoded => FND_API.G_FALSE,

Line 522: FND_MSG_PUB.Count_And_Get (

518: THEN
519: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
520: END IF;
521: -- Standard call to get message count and if count=1, get the message
522: FND_MSG_PUB.Count_And_Get (
523: p_encoded => FND_API.G_FALSE,
524: p_count => x_msg_count,
525: p_data => x_msg_data
526: );

Line 598: FND_MSG_PUB.initialize;

594:
595: -- Initialize message list if p_init_msg_list is set to TRUE.
596: IF FND_API.to_Boolean( p_init_msg_list )
597: THEN
598: FND_MSG_PUB.initialize;
599: END IF;
600:
601:
602:

Line 637: FND_MSG_PUB.Count_And_Get

633: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
634:
635:
636: -- Standard call to get message count and if count is 1, get message info.
637: FND_MSG_PUB.Count_And_Get
638: (p_count => x_msg_count,
639: p_data => x_msg_data
640: );
641: EXCEPTION

Line 651: FND_MSG_PUB.Count_And_Get (

647: WHEN FND_API.G_EXC_ERROR THEN
648: ROLLBACK TO DELETE_Na_Rule_Line_PVT;
649: x_return_status := FND_API.G_RET_STS_ERROR;
650: -- Standard call to get message count and if count=1, get the message
651: FND_MSG_PUB.Count_And_Get (
652: p_encoded => FND_API.G_FALSE,
653: p_count => x_msg_count,
654: p_data => x_msg_data
655: );

Line 661: FND_MSG_PUB.Count_And_Get (

657: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
658: ROLLBACK TO DELETE_Na_Rule_Line_PVT;
659: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
660: -- Standard call to get message count and if count=1, get the message
661: FND_MSG_PUB.Count_And_Get (
662: p_encoded => FND_API.G_FALSE,
663: p_count => x_msg_count,
664: p_data => x_msg_data
665: );

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

666:
667: WHEN OTHERS THEN
668: ROLLBACK TO DELETE_Na_Rule_Line_PVT;
669: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
670: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
671: THEN
672: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
673: END IF;
674: -- Standard call to get message count and if count=1, get the message

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

668: ROLLBACK TO DELETE_Na_Rule_Line_PVT;
669: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
670: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
671: THEN
672: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
673: END IF;
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,

Line 675: FND_MSG_PUB.Count_And_Get (

671: THEN
672: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
673: END IF;
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 745: FND_MSG_PUB.initialize;

741:
742: -- Initialize message list if p_init_msg_list is set to TRUE.
743: IF FND_API.to_Boolean( p_init_msg_list )
744: THEN
745: FND_MSG_PUB.initialize;
746: END IF;
747:
748:
749:

Line 770: FND_MSG_PUB.count_and_get(

766: Ozf_Na_Rule_Line_Pkg.Lock_Row(l_na_rule_line_id,p_object_version);
767:
768:
769: -------------------- finish --------------------------
770: FND_MSG_PUB.count_and_get(
771: p_encoded => FND_API.g_false,
772: p_count => x_msg_count,
773: p_data => x_msg_data);
774: OZF_Utility_PVT.debug_message(l_full_name ||': end');

Line 785: FND_MSG_PUB.Count_And_Get (

781: WHEN FND_API.G_EXC_ERROR THEN
782: ROLLBACK TO LOCK_Na_Rule_Line_PVT;
783: x_return_status := FND_API.G_RET_STS_ERROR;
784: -- Standard call to get message count and if count=1, get the message
785: FND_MSG_PUB.Count_And_Get (
786: p_encoded => FND_API.G_FALSE,
787: p_count => x_msg_count,
788: p_data => x_msg_data
789: );

Line 795: FND_MSG_PUB.Count_And_Get (

791: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
792: ROLLBACK TO LOCK_Na_Rule_Line_PVT;
793: x_return_status := FND_API.G_RET_STS_UNEXP_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 804: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

800:
801: WHEN OTHERS THEN
802: ROLLBACK TO LOCK_Na_Rule_Line_PVT;
803: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
804: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
805: THEN
806: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
807: END IF;
808: -- Standard call to get message count and if count=1, get the message

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

802: ROLLBACK TO LOCK_Na_Rule_Line_PVT;
803: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
804: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
805: THEN
806: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
807: END IF;
808: -- Standard call to get message count and if count=1, get the message
809: FND_MSG_PUB.Count_And_Get (
810: p_encoded => FND_API.G_FALSE,

Line 809: FND_MSG_PUB.Count_And_Get (

805: THEN
806: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
807: END IF;
808: -- Standard call to get message count and if count=1, get the message
809: FND_MSG_PUB.Count_And_Get (
810: p_encoded => FND_API.G_FALSE,
811: p_count => x_msg_count,
812: p_data => x_msg_data
813: );

Line 1148: FND_MSG_PUB.initialize;

1144:
1145: -- Initialize message list if p_init_msg_list is set to TRUE.
1146: IF FND_API.to_Boolean( p_init_msg_list )
1147: THEN
1148: FND_MSG_PUB.initialize;
1149: END IF;
1150:
1151: IF p_validation_level >= JTF_PLSQL_API.g_valid_level_item THEN
1152: check_Na_Rule_Ln_Items(

Line 1209: FND_MSG_PUB.Count_And_Get

1205: OZF_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
1206:
1207:
1208: -- Standard call to get message count and if count is 1, get message info.
1209: FND_MSG_PUB.Count_And_Get
1210: (p_count => x_msg_count,
1211: p_data => x_msg_data
1212: );
1213: EXCEPTION

Line 1223: FND_MSG_PUB.Count_And_Get (

1219: WHEN FND_API.G_EXC_ERROR THEN
1220: ROLLBACK TO VALIDATE_Na_Rule_Line_;
1221: x_return_status := FND_API.G_RET_STS_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 1233: FND_MSG_PUB.Count_And_Get (

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

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

1238:
1239: WHEN OTHERS THEN
1240: ROLLBACK TO VALIDATE_Na_Rule_Line_;
1241: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1242: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1243: THEN
1244: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1245: END IF;
1246: -- Standard call to get message count and if count=1, get the message

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

1240: ROLLBACK TO VALIDATE_Na_Rule_Line_;
1241: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1242: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1243: THEN
1244: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1245: END IF;
1246: -- Standard call to get message count and if count=1, get the message
1247: FND_MSG_PUB.Count_And_Get (
1248: p_encoded => FND_API.G_FALSE,

Line 1247: FND_MSG_PUB.Count_And_Get (

1243: THEN
1244: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1245: END IF;
1246: -- Standard call to get message count and if count=1, get the message
1247: FND_MSG_PUB.Count_And_Get (
1248: p_encoded => FND_API.G_FALSE,
1249: p_count => x_msg_count,
1250: p_data => x_msg_data
1251: );

Line 1268: FND_MSG_PUB.initialize;

1264: BEGIN
1265: -- Initialize message list if p_init_msg_list is set to TRUE.
1266: IF FND_API.to_Boolean( p_init_msg_list )
1267: THEN
1268: FND_MSG_PUB.initialize;
1269: END IF;
1270:
1271:
1272:

Line 1284: FND_MSG_PUB.Count_And_Get

1280:
1281: -- Debug Message
1282: OZF_UTILITY_PVT.debug_message('Private API: Validate_dm_model_rec');
1283: -- Standard call to get message count and if count is 1, get message info.
1284: FND_MSG_PUB.Count_And_Get
1285: (p_count => x_msg_count,
1286: p_data => x_msg_data
1287: );
1288: END Validate_na_rule_line_Rec;