DBA Data[Home] [Help]

APPS.OE_DEFAULT_LINE dependencies on OE_CODE_CONTROL

Line 133: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110509' THEN

129: ,p_old_line_rec.ship_from_org_id) OR
130: NOT OE_GLOBALS.EQUAL(p_line_rec.freight_carrier_code
131: ,p_old_line_rec.freight_carrier_code)) THEN
132:
133: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110509' THEN
134:
135: SELECT freight_code
136: INTO l_freight_code
137: FROM wsh_carriers wsh_ca,wsh_carrier_services wsh,

Line 1082: AND oe_code_control.get_code_release_level >= '110510'

1078: --Defaulting of the Blanket Line Number for Config and Service Items.
1079: AND p_x_line_rec.sold_to_org_id <> FND_API.G_MISS_NUM
1080: AND p_x_line_rec.inventory_item_id IS NOT NULL
1081: AND p_x_line_rec.inventory_item_id <> FND_API.G_MISS_NUM
1082: AND oe_code_control.get_code_release_level >= '110510'
1083: -- Bug 2769562 => If blanket line number is being cleared by user
1084: -- (value for blanket line number existed in old rec), blanket
1085: -- fields should NOT be re-defaulted.
1086: AND (p_old_line_rec.blanket_line_number IS NULL

Line 1568: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110508' AND

1564: IF l_debug_level > 0 THEN
1565: oe_debug_pub.add( 'IN GET_ATO_LINE , ITEM_TYPE_CODE :' || G_LINE_REC.ITEM_TYPE_CODE , 1 ) ;
1566: END IF;
1567:
1568: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110508' AND
1569: g_line_rec.item_type_code = 'CONFIG' THEN
1570: IF l_debug_level > 0 THEN
1571: oe_debug_pub.add( 'PACK H MI , CONFIG LINE '|| G_LINE_REC.ATO_LINE_ID ) ;
1572: END IF;

Line 1649: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110508' AND

1645:
1646:
1647: BEGIN
1648:
1649: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110508' AND
1650: g_line_rec.config_header_id is not NULL AND
1651: g_line_rec.config_header_id <> FND_API.G_MISS_NUM AND
1652: g_line_rec.configuration_id is not NULL AND
1653: g_line_rec.configuration_id <> FND_API.G_MISS_NUM

Line 3677: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN

3673: p_x_line_rec.unit_list_price := l_ref_line_rec.unit_list_price ;
3674: END IF;
3675:
3676: --RT{
3677: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN
3678: oe_debug_pub.add('Retro:ref_head_id:'||l_ref_line_rec.header_id||' line_id:'||l_ref_line_rec.line_id);
3679: Oe_Retrobill_Pvt.Get_Return_Price(p_header_id=> l_ref_line_rec.header_id,
3680: p_line_id => l_ref_line_rec.line_id,
3681: p_ordered_qty => p_x_line_rec.ordered_quantity, --bug3540728

Line 3760: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110510' AND

3756: NULL;
3757: END IF;
3758:
3759: -- Pack J catchweight
3760: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110510' AND
3761: --bug3420941
3762: (l_ref_line_rec.source_type_code <> 'EXTERNAL') AND
3763: (p_x_line_rec. ordered_quantity2 IS NULL OR
3764: p_x_line_rec. ordered_quantity2 = FND_API.G_MISS_NUM) AND

Line 3912: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110510' THEN

3908:
3909: -- End fix for Bug 2849656
3910:
3911: -- Override List Price
3912: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110510' THEN
3913: IF OE_ORDER_COPY_UTIL.G_LINE_PRICE_MODE = OE_ORDER_COPY_UTIL.G_CPY_REPRICE THEN
3914: p_x_line_rec.original_list_price := NULL;
3915: ELSE
3916: IF (p_x_line_rec.original_list_price IS NULL OR

Line 4717: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110509' THEN

4713: (p_line_rec => p_old_line_rec
4714: ,x_rowtype_rec => l_in_old_rec);
4715:
4716: --Perform blanket defaulting
4717: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110509' THEN
4718:
4719: IF ( l_in_rec.operation = OE_GLOBALS.G_OPR_CREATE -- 7152122
4720: AND trunc( l_in_rec.request_date ) <> trunc(l_in_old_rec.request_date)
4721: AND l_in_rec.blanket_line_number IS NOT NULL )THEN

Line 4789: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110509' THEN

4785: , p_in_old_rec => l_in_old_rec
4786: );
4787:
4788: -- More blanket defaulting
4789: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110509' THEN
4790:
4791: IF l_rec.blanket_number IS NOT NULL
4792: AND (NOT OE_GLOBALS.EQUAL(l_in_rec.blanket_number,l_rec.blanket_number)
4793: OR trunc(l_blanket_request_date) <> trunc(l_rec.request_date)

Line 5049: IF (OE_CODE_CONTROL.Get_Code_Release_Level >= '110508') AND

5045: -- lines due to caching in SO UI like bug 2362210
5046: IF (p_x_line_rec.orig_sys_shipment_ref = FND_API.G_MISS_CHAR
5047: OR p_x_line_rec.orig_sys_shipment_ref IS NULL) AND
5048: (nvl(p_x_line_rec.source_document_id,0) <> 10) THEN
5049: IF (OE_CODE_CONTROL.Get_Code_Release_Level >= '110508') AND
5050: (g_multiple_shipments = 'YES') THEN
5051: p_x_line_rec.orig_sys_shipment_ref := 'OE_ORDER_LINES_ALL'||p_x_line_rec.line_id||'.'||'1';
5052: IF l_debug_level > 0 THEN
5053: oe_debug_pub.add( 'SHIP SYS = '||P_X_LINE_REC.ORIG_SYS_SHIPMENT_REF ) ;

Line 5476: IF (OE_CODE_CONTROL.Get_Code_Release_Level >= '110510') THEN

5472:
5473: END IF;
5474:
5475: -- Override List Price
5476: IF (OE_CODE_CONTROL.Get_Code_Release_Level >= '110510') THEN
5477: IF p_x_line_rec.original_list_price = FND_API.G_MISS_NUM THEN
5478: p_x_line_rec.original_list_price := NULL;
5479: END IF;
5480: END IF;