DBA Data[Home] [Help]

APPS.AMS_DM_BINVALUES_PVT dependencies on FND_MSG_PUB

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

20:
21: G_USER_ID NUMBER := FND_GLOBAL.USER_ID;
22: G_LOGIN_ID NUMBER := FND_GLOBAL.CONC_LOGIN_ID;
23:
24: AMS_DEBUG_HIGH_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
25: AMS_DEBUG_LOW_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
26: AMS_DEBUG_MEDIUM_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
27:
28: PROCEDURE Complete_dm_binvalues_Rec (

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

21: G_USER_ID NUMBER := FND_GLOBAL.USER_ID;
22: G_LOGIN_ID NUMBER := FND_GLOBAL.CONC_LOGIN_ID;
23:
24: AMS_DEBUG_HIGH_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
25: AMS_DEBUG_LOW_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
26: AMS_DEBUG_MEDIUM_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
27:
28: PROCEDURE Complete_dm_binvalues_Rec (
29: p_dm_binvalues_rec IN dm_binvalues_rec_type,

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

22: G_LOGIN_ID NUMBER := FND_GLOBAL.CONC_LOGIN_ID;
23:
24: AMS_DEBUG_HIGH_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_HIGH);
25: AMS_DEBUG_LOW_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_LOW);
26: AMS_DEBUG_MEDIUM_ON boolean := FND_MSG_PUB.CHECK_MSG_LEVEL(FND_MSG_PUB.G_MSG_LVL_DEBUG_MEDIUM);
27:
28: PROCEDURE Complete_dm_binvalues_Rec (
29: p_dm_binvalues_rec IN dm_binvalues_rec_type,
30: x_complete_rec OUT NOCOPY dm_binvalues_rec_type

Line 84: FND_MSG_PUB.initialize;

80:
81: -- Initialize message list if p_init_msg_list is set to TRUE.
82: IF FND_API.to_Boolean( p_init_msg_list )
83: THEN
84: FND_MSG_PUB.initialize;
85: END IF;
86:
87: -- Debug Message
88: IF (AMS_DEBUG_HIGH_ON) THEN

Line 200: FND_MSG_PUB.Count_And_Get

196: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
197: END IF;
198:
199: -- Standard call to get message count and if count is 1, get message info.
200: FND_MSG_PUB.Count_And_Get
201: (p_count => x_msg_count,
202: p_data => x_msg_data
203: );
204:

Line 215: FND_MSG_PUB.Count_And_Get (

211: WHEN FND_API.G_EXC_ERROR THEN
212: ROLLBACK TO CREATE_Dm_Binvalues_PVT;
213: x_return_status := FND_API.G_RET_STS_ERROR;
214: -- Standard call to get message count and if count=1, get the message
215: FND_MSG_PUB.Count_And_Get (
216: p_encoded => FND_API.G_FALSE,
217: p_count => x_msg_count,
218: p_data => x_msg_data
219: );

Line 225: FND_MSG_PUB.Count_And_Get (

221: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
222: ROLLBACK TO CREATE_Dm_Binvalues_PVT;
223: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
224: -- Standard call to get message count and if count=1, get the message
225: FND_MSG_PUB.Count_And_Get (
226: p_encoded => FND_API.G_FALSE,
227: p_count => x_msg_count,
228: p_data => x_msg_data
229: );

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

230:
231: WHEN OTHERS THEN
232: ROLLBACK TO CREATE_Dm_Binvalues_PVT;
233: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
234: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
235: THEN
236: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
237: END IF;
238: -- Standard call to get message count and if count=1, get the message

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

232: ROLLBACK TO CREATE_Dm_Binvalues_PVT;
233: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
234: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
235: THEN
236: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
237: END IF;
238: -- Standard call to get message count and if count=1, get the message
239: FND_MSG_PUB.Count_And_Get (
240: p_encoded => FND_API.G_FALSE,

Line 239: FND_MSG_PUB.Count_And_Get (

235: THEN
236: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
237: END IF;
238: -- Standard call to get message count and if count=1, get the message
239: FND_MSG_PUB.Count_And_Get (
240: p_encoded => FND_API.G_FALSE,
241: p_count => x_msg_count,
242: p_data => x_msg_data
243: );

Line 296: FND_MSG_PUB.initialize;

292:
293: -- Initialize message list if p_init_msg_list is set to TRUE.
294: IF FND_API.to_Boolean( p_init_msg_list )
295: THEN
296: FND_MSG_PUB.initialize;
297: END IF;
298:
299: -- Debug Message
300: IF (AMS_DEBUG_HIGH_ON) THEN

Line 475: FND_MSG_PUB.Count_And_Get

471: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
472: END IF;
473:
474: -- Standard call to get message count and if count is 1, get message info.
475: FND_MSG_PUB.Count_And_Get
476: (p_count => x_msg_count,
477: p_data => x_msg_data
478: );
479: EXCEPTION

Line 489: FND_MSG_PUB.Count_And_Get (

485: WHEN FND_API.G_EXC_ERROR THEN
486: ROLLBACK TO UPDATE_Dm_Binvalues_PVT;
487: x_return_status := FND_API.G_RET_STS_ERROR;
488: -- Standard call to get message count and if count=1, get the message
489: FND_MSG_PUB.Count_And_Get (
490: p_encoded => FND_API.G_FALSE,
491: p_count => x_msg_count,
492: p_data => x_msg_data
493: );

Line 499: FND_MSG_PUB.Count_And_Get (

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

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

504:
505: WHEN OTHERS THEN
506: ROLLBACK TO UPDATE_Dm_Binvalues_PVT;
507: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
508: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
509: THEN
510: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
511: END IF;
512: -- Standard call to get message count and if count=1, get the message

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

506: ROLLBACK TO UPDATE_Dm_Binvalues_PVT;
507: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
508: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
509: THEN
510: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
511: END IF;
512: -- Standard call to get message count and if count=1, get the message
513: FND_MSG_PUB.Count_And_Get (
514: p_encoded => FND_API.G_FALSE,

Line 513: FND_MSG_PUB.Count_And_Get (

509: THEN
510: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
511: END IF;
512: -- Standard call to get message count and if count=1, get the message
513: FND_MSG_PUB.Count_And_Get (
514: p_encoded => FND_API.G_FALSE,
515: p_count => x_msg_count,
516: p_data => x_msg_data
517: );

Line 603: FND_MSG_PUB.initialize;

599:
600: -- Initialize message list if p_init_msg_list is set to TRUE.
601: IF FND_API.to_Boolean( p_init_msg_list )
602: THEN
603: FND_MSG_PUB.initialize;
604: END IF;
605:
606: -- Debug Message
607: IF (AMS_DEBUG_HIGH_ON) THEN

Line 646: FND_MSG_PUB.Count_And_Get

642: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || 'end');
643: END IF;
644:
645: -- Standard call to get message count and if count is 1, get message info.
646: FND_MSG_PUB.Count_And_Get
647: (p_count => x_msg_count,
648: p_data => x_msg_data
649: );
650:

Line 661: FND_MSG_PUB.Count_And_Get (

657: WHEN FND_API.G_EXC_ERROR THEN
658: ROLLBACK TO DELETE_Dm_Binvalues_PVT;
659: x_return_status := FND_API.G_RET_STS_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 671: FND_MSG_PUB.Count_And_Get (

667: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
668: ROLLBACK TO DELETE_Dm_Binvalues_PVT;
669: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
670: -- Standard call to get message count and if count=1, get the message
671: FND_MSG_PUB.Count_And_Get (
672: p_encoded => FND_API.G_FALSE,
673: p_count => x_msg_count,
674: p_data => x_msg_data
675: );

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

676:
677: WHEN OTHERS THEN
678: ROLLBACK TO DELETE_Dm_Binvalues_PVT;
679: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
680: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
681: THEN
682: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
683: END IF;
684: -- Standard call to get message count and if count=1, get the message

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

678: ROLLBACK TO DELETE_Dm_Binvalues_PVT;
679: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
680: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
681: THEN
682: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
683: END IF;
684: -- Standard call to get message count and if count=1, get the message
685: FND_MSG_PUB.Count_And_Get (
686: p_encoded => FND_API.G_FALSE,

Line 685: FND_MSG_PUB.Count_And_Get (

681: THEN
682: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
683: END IF;
684: -- Standard call to get message count and if count=1, get the message
685: FND_MSG_PUB.Count_And_Get (
686: p_encoded => FND_API.G_FALSE,
687: p_count => x_msg_count,
688: p_data => x_msg_data
689: );

Line 730: FND_MSG_PUB.initialize;

726:
727: -- Initialize message list if p_init_msg_list is set to TRUE.
728: IF FND_API.to_Boolean( p_init_msg_list )
729: THEN
730: FND_MSG_PUB.initialize;
731: END IF;
732:
733: -- Standard call to check for call compatibility.
734: IF NOT FND_API.Compatible_API_Call ( l_api_version_number,

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

758: FETCH c_Dm_Binvalues INTO l_BIN_VALUE_ID;
759:
760: IF (c_Dm_Binvalues%NOTFOUND) THEN
761: CLOSE c_Dm_Binvalues;
762: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
763: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
764: FND_MSG_PUB.add;
765: END IF;
766: RAISE FND_API.g_exc_error;

Line 764: FND_MSG_PUB.add;

760: IF (c_Dm_Binvalues%NOTFOUND) THEN
761: CLOSE c_Dm_Binvalues;
762: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
763: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
764: FND_MSG_PUB.add;
765: END IF;
766: RAISE FND_API.g_exc_error;
767: END IF;
768:

Line 772: FND_MSG_PUB.count_and_get(

768:
769: CLOSE c_Dm_Binvalues;
770:
771: -------------------- finish --------------------------
772: FND_MSG_PUB.count_and_get(
773: p_encoded => FND_API.g_false,
774: p_count => x_msg_count,
775: p_data => x_msg_data);
776: IF (AMS_DEBUG_HIGH_ON) THEN

Line 791: FND_MSG_PUB.Count_And_Get (

787: WHEN FND_API.G_EXC_ERROR THEN
788: ROLLBACK TO LOCK_Dm_Binvalues_PVT;
789: x_return_status := FND_API.G_RET_STS_ERROR;
790: -- Standard call to get message count and if count=1, get the message
791: FND_MSG_PUB.Count_And_Get (
792: p_encoded => FND_API.G_FALSE,
793: p_count => x_msg_count,
794: p_data => x_msg_data
795: );

Line 801: FND_MSG_PUB.Count_And_Get (

797: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
798: ROLLBACK TO LOCK_Dm_Binvalues_PVT;
799: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
800: -- Standard call to get message count and if count=1, get the message
801: FND_MSG_PUB.Count_And_Get (
802: p_encoded => FND_API.G_FALSE,
803: p_count => x_msg_count,
804: p_data => x_msg_data
805: );

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

806:
807: WHEN OTHERS THEN
808: ROLLBACK TO LOCK_Dm_Binvalues_PVT;
809: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
810: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
811: THEN
812: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
813: END IF;
814: -- Standard call to get message count and if count=1, get the message

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

808: ROLLBACK TO LOCK_Dm_Binvalues_PVT;
809: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
810: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
811: THEN
812: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
813: END IF;
814: -- Standard call to get message count and if count=1, get the message
815: FND_MSG_PUB.Count_And_Get (
816: p_encoded => FND_API.G_FALSE,

Line 815: FND_MSG_PUB.Count_And_Get (

811: THEN
812: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
813: END IF;
814: -- Standard call to get message count and if count=1, get the message
815: FND_MSG_PUB.Count_And_Get (
816: p_encoded => FND_API.G_FALSE,
817: p_count => x_msg_count,
818: p_data => x_msg_data
819: );

Line 1129: FND_MSG_PUB.initialize;

1125:
1126: -- Initialize message list if p_init_msg_list is set to TRUE.
1127: IF FND_API.to_Boolean( p_init_msg_list )
1128: THEN
1129: FND_MSG_PUB.initialize;
1130: END IF;
1131: IF p_validation_level >= JTF_PLSQL_API.g_valid_level_item THEN
1132: Check_dm_binvalues_Items(
1133: p_dm_binvalues_rec => p_dm_binvalues_rec,

Line 1188: FND_MSG_PUB.Count_And_Get

1184: AMS_UTILITY_PVT.debug_message('Private API: ' || l_api_name || ' return status = ' || x_return_status);
1185: END IF;
1186:
1187: -- Standard call to get message count and if count is 1, get message info.
1188: FND_MSG_PUB.Count_And_Get
1189: (p_count => x_msg_count,
1190: p_data => x_msg_data
1191: );
1192: EXCEPTION

Line 1202: FND_MSG_PUB.Count_And_Get (

1198: WHEN FND_API.G_EXC_ERROR THEN
1199: ROLLBACK TO VALIDATE_Dm_Binvalues_;
1200: x_return_status := FND_API.G_RET_STS_ERROR;
1201: -- Standard call to get message count and if count=1, get the message
1202: FND_MSG_PUB.Count_And_Get (
1203: p_encoded => FND_API.G_FALSE,
1204: p_count => x_msg_count,
1205: p_data => x_msg_data
1206: );

Line 1212: FND_MSG_PUB.Count_And_Get (

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

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

1217:
1218: WHEN OTHERS THEN
1219: ROLLBACK TO VALIDATE_Dm_Binvalues_;
1220: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1221: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1222: THEN
1223: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1224: END IF;
1225: -- Standard call to get message count and if count=1, get the message

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

1219: ROLLBACK TO VALIDATE_Dm_Binvalues_;
1220: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
1221: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
1222: THEN
1223: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1224: END IF;
1225: -- Standard call to get message count and if count=1, get the message
1226: FND_MSG_PUB.Count_And_Get (
1227: p_encoded => FND_API.G_FALSE,

Line 1226: FND_MSG_PUB.Count_And_Get (

1222: THEN
1223: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
1224: END IF;
1225: -- Standard call to get message count and if count=1, get the message
1226: FND_MSG_PUB.Count_And_Get (
1227: p_encoded => FND_API.G_FALSE,
1228: p_count => x_msg_count,
1229: p_data => x_msg_data
1230: );

Line 1253: FND_MSG_PUB.initialize;

1249:
1250: -- Initialize message list if p_init_msg_list is set to TRUE.
1251: IF FND_API.to_Boolean( p_init_msg_list )
1252: THEN
1253: FND_MSG_PUB.initialize;
1254: END IF;
1255:
1256: -- Initialize API return status to SUCCESS
1257: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1265: FND_MSG_PUB.Count_And_Get

1261: -- THEN
1262: -- x_return_status := FND_API.G_RET_STS_ERROR;
1263:
1264: -- Standard call to get message count and if count is 1, get message info.
1265: FND_MSG_PUB.Count_And_Get
1266: (p_count => x_msg_count,
1267: p_data => x_msg_data
1268: );
1269: