DBA Data[Home] [Help]

APPS.AMS_IBA_PLCMNT_PVT dependencies on FND_MESSAGE

Line 685: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');

681:
682: IF (c_Iba_Plcmnt%NOTFOUND) THEN
683: CLOSE c_Iba_Plcmnt;
684: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
685: FND_MESSAGE.set_name('AMS', 'AMS_API_RECORD_NOT_FOUND');
686: FND_MSG_PUB.add;
687: END IF;
688: RAISE FND_API.g_exc_error;
689: END IF;

Line 854: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLCMNT_SHCRT_DUP');

850: IF l_is_unique = FND_API.g_false THEN
851: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)
852: THEN
853: if l_situation = 1 then -- placement is for istore and shopping_cart page
854: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLCMNT_SHCRT_DUP');
855: elsif l_situation = 2 then -- placement is for istore and non shopping cart page
856: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLCMNT_ISTORE_DUP');
857: else -- placement is for non istore site
858: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLCMNT_DUP');

Line 856: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLCMNT_ISTORE_DUP');

852: THEN
853: if l_situation = 1 then -- placement is for istore and shopping_cart page
854: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLCMNT_SHCRT_DUP');
855: elsif l_situation = 2 then -- placement is for istore and non shopping cart page
856: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLCMNT_ISTORE_DUP');
857: else -- placement is for non istore site
858: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLCMNT_DUP');
859: end if;
860: FND_MSG_PUB.add;

Line 858: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLCMNT_DUP');

854: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLCMNT_SHCRT_DUP');
855: elsif l_situation = 2 then -- placement is for istore and non shopping cart page
856: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLCMNT_ISTORE_DUP');
857: else -- placement is for non istore site
858: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLCMNT_DUP');
859: end if;
860: FND_MSG_PUB.add;
861: END IF;
862: x_return_status := FND_API.g_ret_sts_error;

Line 887: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLCMNT_NAME_DUP');

883:
884: IF l_valid_flag = FND_API.g_false THEN
885: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error)
886: THEN
887: FND_MESSAGE.set_name('AMS','AMS_PLCE_PLCMNT_NAME_DUP');
888: FND_MSG_PUB.add;
889: END IF;
890: x_return_status := FND_API.g_ret_sts_error;
891: RAISE FND_API.g_exc_error;