DBA Data[Home] [Help]

APPS.OE_FTE_INTEGRATION_PVT dependencies on FND_MESSAGE

Line 400: FND_MESSAGE.Set_Name('ONT','ONT_FTE_EXTERNAL_RET_SERVICE');

396: IF c_ship_method.source_type_code = 'EXTERNAL' OR
397: c_ship_method.item_type_code = 'SERVICE' OR
398: c_ship_method.line_category_code = 'RETURN' THEN
399:
400: FND_MESSAGE.Set_Name('ONT','ONT_FTE_EXTERNAL_RET_SERVICE');
401: OE_MSG_PUB.Add;
402:
403: IF l_debug_level > 0 THEN
404: OE_DEBUG_PUB.Add('Line is External/Service/Return:'||

Line 410: FND_MESSAGE.Set_Name('ONT','ONT_FTE_MISSING_SHIP_FROM');

406: END IF;
407:
408: ELSIF c_ship_method.ship_from_org_id IS NULL THEN
409:
410: FND_MESSAGE.Set_Name('ONT','ONT_FTE_MISSING_SHIP_FROM');
411: OE_MSG_PUB.Add;
412: IF l_debug_level > 0 THEN
413: OE_DEBUG_PUB.Add('Line is Missing Ship From Org Id:'||
414: c_ship_method.line_id ,3);

Line 419: FND_MESSAGE.Set_Name('ONT','ONT_FTE_MISSING_SHIP_TO');

415: END IF;
416:
417: ELSIF c_ship_method.ship_to_org_id IS NULL THEN
418:
419: FND_MESSAGE.Set_Name('ONT','ONT_FTE_MISSING_SHIP_TO');
420: OE_MSG_PUB.Add;
421: IF l_debug_level > 0 THEN
422: OE_DEBUG_PUB.Add('Line is Missing Ship To Org Id:'||
423: c_ship_method.line_id ,3);

Line 430: FND_MESSAGE.Set_Name('ONT','ONT_FTE_SHIP_FULFILL_CLOSED');

426: ELSIF c_ship_method.shipped_quantity IS NOT NULL OR
427: c_ship_method.fulfilled_flag = 'Y' OR
428: c_ship_method.open_flag <> 'Y' THEN
429:
430: FND_MESSAGE.Set_Name('ONT','ONT_FTE_SHIP_FULFILL_CLOSED');
431: OE_MSG_PUB.Add;
432: IF l_debug_level > 0 THEN
433: OE_DEBUG_PUB.Add('Line is Shipped/Fulfilled/Closed:'||
434: c_ship_method.line_id ,1);

Line 660: FND_MESSAGE.Set_Name('ONT','ONT_FTE_NO_LINES_ELIGIBLE');

656: -- this check is added to show the message when no lines of the order are eligible for freight rating
657:
658: IF p_x_line_tbl.count = 0 THEN
659:
660: FND_MESSAGE.Set_Name('ONT','ONT_FTE_NO_LINES_ELIGIBLE');
661: OE_MSG_PUB.Add;
662: IF l_debug_level > 0 THEN
663: OE_DEBUG_PUB.Add('No lines of the order are eligible for freight rating');
664: END IF;

Line 1092: FND_MESSAGE.Set_Name('ONT','ONT_FTE_NOT_INSTALLED');

1088: OE_GLOBALS.G_FTE_INSTALLED := OE_GLOBALS.CHECK_PRODUCT_INSTALLED(716);
1089: END IF;
1090:
1091: IF OE_GLOBALS.G_FTE_INSTALLED = 'N' THEN
1092: FND_MESSAGE.Set_Name('ONT','ONT_FTE_NOT_INSTALLED');
1093: OE_MSG_PUB.Add;
1094: IF l_debug_level > 0 THEN
1095: oe_debug_pub.ADD('FTE is NOT Installed!',3);
1096: END IF;