DBA Data[Home] [Help]

APPS.BOM_CONFIG_VALIDATION_PUB dependencies on OE_MSG_PUB

Line 356: OE_Msg_Pub.Add;

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

Line 502: OE_MSG_PUB.Add;

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

Line 603: OE_Msg_Pub.Add;

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

Line 682: OE_Msg_Pub.Add;

678: ,p_options_tbl => p_options_tbl);
679: IF NOT l_no_child THEN
680: FND_MESSAGE.Set_Name('ONT', 'OE_VAL_CONFIG_CLASS_NO_OPTION');
681: FND_MESSAGE.Set_Token('CLASS', p_options_tbl(I).ordered_item);
682: OE_Msg_Pub.Add;
683: l_complete_config := 'FALSE';
684: l_return_status := FND_API.G_RET_STS_ERROR;
685: END IF; -- if no child
686:

Line 816: OE_Msg_Pub.Add;

812:
813: IF l_result THEN
814: FND_MESSAGE.Set_Name('ONT', 'OE_VAL_CONFIG_EXCLUSIVE_CLASS');
815: FND_MESSAGE.Set_Token('CLASS', bom_rec.description);
816: OE_Msg_Pub.Add;
817: l_valid_config := 'FALSE';
818: l_return_status := FND_API.G_RET_STS_ERROR;
819: END IF;
820:

Line 1003: OE_Msg_Pub.Add;

999:
1000: IF l_result THEN
1001: FND_MESSAGE.Set_Name('ONT', 'OE_VAL_CONFIG_MANDATORY_CLASS');
1002: FND_MESSAGE.Set_Token('CLASS', bom_rec.description);
1003: OE_Msg_Pub.Add;
1004: l_complete_config := 'FALSE';
1005: l_return_status := FND_API.G_RET_STS_ERROR;
1006: END IF;
1007:

Line 1301: OE_MSG_PUB.Add;

1297: FND_MESSAGE.Set_Name('ONT', 'OE_CONFIG_NO_PARENT');
1298: FND_MESSAGE.Set_TOKEN('ITEM', l_ordered_item);
1299: FND_MESSAGE.Set_TOKEN
1300: ('LINE', l_line_number || '.'|| l_shipment_number ||'.'|| l_option_number);
1301: OE_MSG_PUB.Add;
1302: RAISE FND_API.G_EXC_ERROR;
1303: END;
1304:
1305: WHEN OTHERS THEN