DBA Data[Home] [Help]

APPS.OE_CONFIG_VALIDATION_PVT dependencies on OE_MSG_PUB

Line 358: OE_Msg_Pub.Add;

354:
355: FND_MESSAGE.Set_TOKEN('MODEL', l_ordered_item);
356: FND_MESSAGE.Set_TOKEN('PTYPECODE', l_item_type_code);
357:
358: OE_Msg_Pub.Add;
359:
360: RAISE FND_API.G_EXC_ERROR;
361: END IF;
362:

Line 504: OE_MSG_PUB.Add;

500: oe_debug_pub.add('NOT YET CREATED' , 3 ) ;
501: END IF;
502:
503: FND_MESSAGE.Set_TOKEN('LINE', l_line);
504: OE_MSG_PUB.Add;
505:
506: RAISE FND_API.G_EXC_ERROR;
507: END;
508:

Line 604: OE_Msg_Pub.Add;

600: FND_MESSAGE.Set_Name('ONT', 'OE_VAL_CONFIG_QTY_OUT_OF_RANGE');
601: FND_MESSAGE.Set_Token('ITEM', p_options_tbl(I).ordered_item);
602: FND_MESSAGE.Set_Token('LOW', l_min_allowed_qty);
603: FND_MESSAGE.Set_Token('HIGH', l_max_allowed_qty);
604: OE_Msg_Pub.Add;
605: l_valid_config := 'FALSE';
606: l_return_status := FND_API.G_RET_STS_ERROR;
607: END IF;
608:

Line 693: OE_Msg_Pub.Add;

689: ,p_options_tbl => p_options_tbl);
690: IF NOT l_no_child THEN
691: FND_MESSAGE.Set_Name('ONT', 'OE_VAL_CONFIG_CLASS_NO_OPTION');
692: FND_MESSAGE.Set_Token('CLASS', p_options_tbl(I).ordered_item);
693: OE_Msg_Pub.Add;
694: l_complete_config := 'FALSE';
695: l_return_status := FND_API.G_RET_STS_ERROR;
696: END IF; -- if no child
697:

Line 826: OE_Msg_Pub.Add;

822:
823: IF l_result THEN
824: FND_MESSAGE.Set_Name('ONT', 'OE_VAL_CONFIG_EXCLUSIVE_CLASS');
825: FND_MESSAGE.Set_Token('CLASS', bom_rec.description);
826: OE_Msg_Pub.Add;
827: l_valid_config := 'FALSE';
828: l_return_status := FND_API.G_RET_STS_ERROR;
829: END IF;
830:

Line 1012: OE_Msg_Pub.Add;

1008:
1009: IF l_result THEN
1010: FND_MESSAGE.Set_Name('ONT', 'OE_VAL_CONFIG_MANDATORY_CLASS');
1011: FND_MESSAGE.Set_Token('CLASS', bom_rec.description);
1012: OE_Msg_Pub.Add;
1013: l_complete_config := 'FALSE';
1014: l_return_status := FND_API.G_RET_STS_ERROR;
1015: END IF;
1016:

Line 1310: OE_MSG_PUB.Add;

1306: FND_MESSAGE.Set_Name('ONT', 'OE_CONFIG_NO_PARENT');
1307: FND_MESSAGE.Set_TOKEN('ITEM', l_ordered_item);
1308: FND_MESSAGE.Set_TOKEN
1309: ('LINE', l_line_number || '.'|| l_shipment_number ||'.'|| l_option_number);
1310: OE_MSG_PUB.Add;
1311: RAISE FND_API.G_EXC_ERROR;
1312: END;
1313:
1314: WHEN OTHERS THEN