DBA Data[Home] [Help]

APPS.AMS_VENUE_RATES_PVT dependencies on FND_MSG_PUB

Line 25: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);

21: G_USER_ID NUMBER := FND_GLOBAL.USER_ID;
22: G_LOGIN_ID NUMBER := FND_GLOBAL.CONC_LOGIN_ID;
23:
24: -- Hint: Primary key needs to be returned.
25: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
26: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
27: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
28:
29: PROCEDURE Create_Venue_Rates(

Line 26: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);

22: G_LOGIN_ID NUMBER := FND_GLOBAL.CONC_LOGIN_ID;
23:
24: -- Hint: Primary key needs to be returned.
25: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
26: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
27: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
28:
29: PROCEDURE Create_Venue_Rates(
30: p_api_version_number IN NUMBER,

Line 27: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);

23:
24: -- Hint: Primary key needs to be returned.
25: AMS_DEBUG_HIGH_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
26: AMS_DEBUG_LOW_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
27: AMS_DEBUG_MEDIUM_ON CONSTANT boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
28:
29: PROCEDURE Create_Venue_Rates(
30: p_api_version_number IN NUMBER,
31: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,

Line 78: FND_MSG_PUB.initialize;

74:
75: -- Initialize message list if p_init_msg_list is set to TRUE.
76: IF FND_API.to_Boolean( p_init_msg_list )
77: THEN
78: FND_MSG_PUB.initialize;
79: END IF;
80:
81: -- Debug Message
82: IF (AMS_DEBUG_HIGH_ON) THEN

Line 218: FND_MSG_PUB.Count_And_Get

214: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
215: END IF;
216:
217: -- Standard call to get message count and if count is 1, get message info.
218: FND_MSG_PUB.Count_And_Get
219: (p_count => x_msg_count,
220: p_data => x_msg_data
221: );
222: EXCEPTION

Line 232: FND_MSG_PUB.Count_And_Get (

228: WHEN FND_API.G_EXC_ERROR THEN
229: ROLLBACK TO CREATE_Venue_Rates_PVT;
230: x_return_status := FND_API.G_RET_STS_ERROR;
231: -- Standard call to get message count and if count=1, get the message
232: FND_MSG_PUB.Count_And_Get (
233: p_encoded => FND_API.G_FALSE,
234: p_count => x_msg_count,
235: p_data => x_msg_data
236: );

Line 242: FND_MSG_PUB.Count_And_Get (

238: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
239: ROLLBACK TO CREATE_Venue_Rates_PVT;
240: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
241: -- Standard call to get message count and if count=1, get the message
242: FND_MSG_PUB.Count_And_Get (
243: p_encoded => FND_API.G_FALSE,
244: p_count => x_msg_count,
245: p_data => x_msg_data
246: );

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

247:
248: WHEN OTHERS THEN
249: ROLLBACK TO CREATE_Venue_Rates_PVT;
250: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
251: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
252: THEN
253: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
254: END IF;
255: -- Standard call to get message count and if count=1, get the message

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

249: ROLLBACK TO CREATE_Venue_Rates_PVT;
250: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
251: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
252: THEN
253: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
254: END IF;
255: -- Standard call to get message count and if count=1, get the message
256: FND_MSG_PUB.Count_And_Get (
257: p_encoded => FND_API.G_FALSE,

Line 256: FND_MSG_PUB.Count_And_Get (

252: THEN
253: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
254: END IF;
255: -- Standard call to get message count and if count=1, get the message
256: FND_MSG_PUB.Count_And_Get (
257: p_encoded => FND_API.G_FALSE,
258: p_count => x_msg_count,
259: p_data => x_msg_data
260: );

Line 310: FND_MSG_PUB.initialize;

306:
307: -- Initialize message list if p_init_msg_list is set to TRUE.
308: IF FND_API.to_Boolean( p_init_msg_list )
309: THEN
310: FND_MSG_PUB.initialize;
311: END IF;
312:
313: -- Debug Message
314: IF (AMS_DEBUG_HIGH_ON) THEN

Line 450: FND_MSG_PUB.Count_And_Get

446: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
447: END IF;
448:
449: -- Standard call to get message count and if count is 1, get message info.
450: FND_MSG_PUB.Count_And_Get
451: (p_count => x_msg_count,
452: p_data => x_msg_data
453: );
454: EXCEPTION

Line 464: FND_MSG_PUB.Count_And_Get (

460: WHEN FND_API.G_EXC_ERROR THEN
461: ROLLBACK TO UPDATE_Venue_Rates_PVT;
462: x_return_status := FND_API.G_RET_STS_ERROR;
463: -- Standard call to get message count and if count=1, get the message
464: FND_MSG_PUB.Count_And_Get (
465: p_encoded => FND_API.G_FALSE,
466: p_count => x_msg_count,
467: p_data => x_msg_data
468: );

Line 474: FND_MSG_PUB.Count_And_Get (

470: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
471: ROLLBACK TO UPDATE_Venue_Rates_PVT;
472: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
473: -- Standard call to get message count and if count=1, get the message
474: FND_MSG_PUB.Count_And_Get (
475: p_encoded => FND_API.G_FALSE,
476: p_count => x_msg_count,
477: p_data => x_msg_data
478: );

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

479:
480: WHEN OTHERS THEN
481: ROLLBACK TO UPDATE_Venue_Rates_PVT;
482: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
483: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
484: THEN
485: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
486: END IF;
487: -- Standard call to get message count and if count=1, get the message

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

481: ROLLBACK TO UPDATE_Venue_Rates_PVT;
482: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
483: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
484: THEN
485: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
486: END IF;
487: -- Standard call to get message count and if count=1, get the message
488: FND_MSG_PUB.Count_And_Get (
489: p_encoded => FND_API.G_FALSE,

Line 488: FND_MSG_PUB.Count_And_Get (

484: THEN
485: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
486: END IF;
487: -- Standard call to get message count and if count=1, get the message
488: FND_MSG_PUB.Count_And_Get (
489: p_encoded => FND_API.G_FALSE,
490: p_count => x_msg_count,
491: p_data => x_msg_data
492: );

Line 529: FND_MSG_PUB.initialize;

525:
526: -- Initialize message list if p_init_msg_list is set to TRUE.
527: IF FND_API.to_Boolean( p_init_msg_list )
528: THEN
529: FND_MSG_PUB.initialize;
530: END IF;
531:
532: -- Debug Message
533: IF (AMS_DEBUG_HIGH_ON) THEN

Line 572: FND_MSG_PUB.Count_And_Get

568: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
569: END IF;
570:
571: -- Standard call to get message count and if count is 1, get message info.
572: FND_MSG_PUB.Count_And_Get
573: (p_count => x_msg_count,
574: p_data => x_msg_data
575: );
576: EXCEPTION

Line 586: FND_MSG_PUB.Count_And_Get (

582: WHEN FND_API.G_EXC_ERROR THEN
583: ROLLBACK TO DELETE_Venue_Rates_PVT;
584: x_return_status := FND_API.G_RET_STS_ERROR;
585: -- Standard call to get message count and if count=1, get the message
586: FND_MSG_PUB.Count_And_Get (
587: p_encoded => FND_API.G_FALSE,
588: p_count => x_msg_count,
589: p_data => x_msg_data
590: );

Line 596: FND_MSG_PUB.Count_And_Get (

592: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
593: ROLLBACK TO DELETE_Venue_Rates_PVT;
594: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
595: -- Standard call to get message count and if count=1, get the message
596: FND_MSG_PUB.Count_And_Get (
597: p_encoded => FND_API.G_FALSE,
598: p_count => x_msg_count,
599: p_data => x_msg_data
600: );

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

601:
602: WHEN OTHERS THEN
603: ROLLBACK TO DELETE_Venue_Rates_PVT;
604: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
605: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
606: THEN
607: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
608: END IF;
609: -- Standard call to get message count and if count=1, get the message

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

603: ROLLBACK TO DELETE_Venue_Rates_PVT;
604: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
605: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
606: THEN
607: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
608: END IF;
609: -- Standard call to get message count and if count=1, get the message
610: FND_MSG_PUB.Count_And_Get (
611: p_encoded => FND_API.G_FALSE,

Line 610: FND_MSG_PUB.Count_And_Get (

606: THEN
607: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
608: END IF;
609: -- Standard call to get message count and if count=1, get the message
610: FND_MSG_PUB.Count_And_Get (
611: p_encoded => FND_API.G_FALSE,
612: p_count => x_msg_count,
613: p_data => x_msg_data
614: );

Line 656: FND_MSG_PUB.initialize;

652:
653: -- Initialize message list if p_init_msg_list is set to TRUE.
654: IF FND_API.to_Boolean( p_init_msg_list )
655: THEN
656: FND_MSG_PUB.initialize;
657: END IF;
658:
659: -- Standard call to check for call compatibility.
660: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

Line 688: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN

684: FETCH c_Venue_Rates INTO l_RATE_ID;
685:
686: IF (c_Venue_Rates%NOTFOUND) THEN
687: CLOSE c_Venue_Rates;
688: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
689: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
690: FND_MSG_PUB.add;
691: END IF;
692: RAISE FND_API.g_exc_error;

Line 690: FND_MSG_PUB.add;

686: IF (c_Venue_Rates%NOTFOUND) THEN
687: CLOSE c_Venue_Rates;
688: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
689: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
690: FND_MSG_PUB.add;
691: END IF;
692: RAISE FND_API.g_exc_error;
693: END IF;
694:

Line 698: FND_MSG_PUB.count_and_get(

694:
695: CLOSE c_Venue_Rates;
696:
697: -------------------- finish --------------------------
698: FND_MSG_PUB.count_and_get(
699: p_encoded => FND_API.g_false,
700: p_count => x_msg_count,
701: p_data => x_msg_data);
702: IF (AMS_DEBUG_HIGH_ON) THEN

Line 716: FND_MSG_PUB.Count_And_Get (

712: WHEN FND_API.G_EXC_ERROR THEN
713: ROLLBACK TO LOCK_Venue_Rates_PVT;
714: x_return_status := FND_API.G_RET_STS_ERROR;
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: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
723: ROLLBACK TO LOCK_Venue_Rates_PVT;
724: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
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 735: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

731:
732: WHEN OTHERS THEN
733: ROLLBACK TO LOCK_Venue_Rates_PVT;
734: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
735: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
736: THEN
737: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
738: END IF;
739: -- Standard call to get message count and if count=1, get the message

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

733: ROLLBACK TO LOCK_Venue_Rates_PVT;
734: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
735: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
736: THEN
737: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
738: END IF;
739: -- Standard call to get message count and if count=1, get the message
740: FND_MSG_PUB.Count_And_Get (
741: p_encoded => FND_API.G_FALSE,

Line 740: FND_MSG_PUB.Count_And_Get (

736: THEN
737: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
738: END IF;
739: -- Standard call to get message count and if count=1, get the message
740: FND_MSG_PUB.Count_And_Get (
741: p_encoded => FND_API.G_FALSE,
742: p_count => x_msg_count,
743: p_data => x_msg_data
744: );

Line 794: FND_MSG_PUB.Add;

790: IF p_venue_rates_rec.rate_id = FND_API.g_miss_num OR p_venue_rates_rec.rate_id IS NULL THEN
791: FND_MESSAGE.set_name('AMS', 'AMS_API_MISSING_FIELD');
792: FND_MESSAGE.set_token('MISS_FIELD','RATE_ID');
793: FND_MESSAGE.set_name('AMS', 'AMS_MISS_RATE_ID');
794: FND_MSG_PUB.Add;
795:
796: x_return_status := FND_API.g_ret_sts_error;
797: RETURN;
798: END IF;

Line 1006: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)

1002: p_lookup_type => 'AMS_RATE_CODE',
1003: p_lookup_code => p_venue_rates_rec.rate_code
1004: ) = FND_API.g_false
1005: THEN
1006: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)
1007: THEN
1008: -- FND_MESSAGE.set_name('AMS', 'AMS_BAD_RATE_TYPE');
1009: FND_MESSAGE.set_name('AMS', 'AMS_API_MISSING_FIELD');
1010: FND_MESSAGE.set_token('MISS_FIELD','RATE_CODE');

Line 1011: FND_MSG_PUB.add;

1007: THEN
1008: -- FND_MESSAGE.set_name('AMS', 'AMS_BAD_RATE_TYPE');
1009: FND_MESSAGE.set_name('AMS', 'AMS_API_MISSING_FIELD');
1010: FND_MESSAGE.set_token('MISS_FIELD','RATE_CODE');
1011: FND_MSG_PUB.add;
1012: END IF;
1013: x_return_status := FND_API.g_ret_sts_error;
1014: RETURN;
1015: END IF;

Line 1290: FND_MSG_PUB.initialize;

1286:
1287: -- Initialize message list if p_init_msg_list is set to TRUE.
1288: IF FND_API.to_Boolean( p_init_msg_list )
1289: THEN
1290: FND_MSG_PUB.initialize;
1291: END IF;
1292: IF p_validation_level >= JTF_PLSQL_API.g_valid_level_item THEN
1293: Check_venue_rates_Items(
1294: p_venue_rates_rec => p_venue_rates_rec,

Line 1346: FND_MSG_PUB.Count_And_Get

1342: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
1343: END IF;
1344:
1345: -- Standard call to get message count and if count is 1, get message info.
1346: FND_MSG_PUB.Count_And_Get
1347: (p_count => x_msg_count,
1348: p_data => x_msg_data
1349: );
1350: EXCEPTION

Line 1360: FND_MSG_PUB.Count_And_Get (

1356: WHEN FND_API.G_EXC_ERROR THEN
1357: ROLLBACK TO VALIDATE_Venue_Rates_;
1358: x_return_status := FND_API.G_RET_STS_ERROR;
1359: -- Standard call to get message count and if count=1, get the message
1360: FND_MSG_PUB.Count_And_Get (
1361: p_encoded => FND_API.G_FALSE,
1362: p_count => x_msg_count,
1363: p_data => x_msg_data
1364: );

Line 1370: FND_MSG_PUB.Count_And_Get (

1366: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1367: ROLLBACK TO VALIDATE_Venue_Rates_;
1368: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1369: -- Standard call to get message count and if count=1, get the message
1370: FND_MSG_PUB.Count_And_Get (
1371: p_encoded => FND_API.G_FALSE,
1372: p_count => x_msg_count,
1373: p_data => x_msg_data
1374: );

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

1375:
1376: WHEN OTHERS THEN
1377: ROLLBACK TO VALIDATE_Venue_Rates_;
1378: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1379: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1380: THEN
1381: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1382: END IF;
1383: -- Standard call to get message count and if count=1, get the message

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

1377: ROLLBACK TO VALIDATE_Venue_Rates_;
1378: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1379: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1380: THEN
1381: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1382: END IF;
1383: -- Standard call to get message count and if count=1, get the message
1384: FND_MSG_PUB.Count_And_Get (
1385: p_encoded => FND_API.G_FALSE,

Line 1384: FND_MSG_PUB.Count_And_Get (

1380: THEN
1381: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1382: END IF;
1383: -- Standard call to get message count and if count=1, get the message
1384: FND_MSG_PUB.Count_And_Get (
1385: p_encoded => FND_API.G_FALSE,
1386: p_count => x_msg_count,
1387: p_data => x_msg_data
1388: );

Line 1405: FND_MSG_PUB.initialize;

1401: BEGIN
1402: -- Initialize message list if p_init_msg_list is set to TRUE.
1403: IF FND_API.to_Boolean( p_init_msg_list )
1404: THEN
1405: FND_MSG_PUB.initialize;
1406: END IF;
1407:
1408: -- Initialize API return status to SUCCESS
1409: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1422: FND_MSG_PUB.Count_And_Get

1418:
1419: AMS_UTILITY_PVT.debug_message('Private API: Validate_dm_model_rec');
1420: END IF;
1421: -- Standard call to get message count and if count is 1, get message info.
1422: FND_MSG_PUB.Count_And_Get
1423: (p_count => x_msg_count,
1424: p_data => x_msg_data
1425: );
1426: END Validate_venue_rates_Rec;