DBA Data[Home] [Help]

APPS.OE_DEFAULT_LINE dependencies on OE_CODE_CONTROL

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

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

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

1139: --Defaulting of the Blanket Line Number for Config and Service Items.
1140: AND p_x_line_rec.sold_to_org_id <> FND_API.G_MISS_NUM
1141: AND p_x_line_rec.inventory_item_id IS NOT NULL
1142: AND p_x_line_rec.inventory_item_id <> FND_API.G_MISS_NUM
1143: AND oe_code_control.get_code_release_level >= '110510'
1144: -- Bug 2769562 => If blanket line number is being cleared by user
1145: -- (value for blanket line number existed in old rec), blanket
1146: -- fields should NOT be re-defaulted.
1147: AND (p_old_line_rec.blanket_line_number IS NULL

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

1626: IF l_debug_level > 0 THEN
1627: oe_debug_pub.add( 'IN GET_ATO_LINE , ITEM_TYPE_CODE :' || G_LINE_REC.ITEM_TYPE_CODE , 1 ) ;
1628: END IF;
1629:
1630: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110508' AND
1631: g_line_rec.item_type_code = 'CONFIG' THEN
1632: IF l_debug_level > 0 THEN
1633: oe_debug_pub.add( 'PACK H MI , CONFIG LINE '|| G_LINE_REC.ATO_LINE_ID ) ;
1634: END IF;

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

1711:
1712:
1713: BEGIN
1714:
1715: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110508' AND
1716: g_line_rec.config_header_id is not NULL AND
1717: g_line_rec.config_header_id <> FND_API.G_MISS_NUM AND
1718: g_line_rec.configuration_id is not NULL AND
1719: g_line_rec.configuration_id <> FND_API.G_MISS_NUM

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

3800: p_x_line_rec.unit_list_price := l_ref_line_rec.unit_list_price ;
3801: END IF;
3802:
3803: --RT{
3804: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN
3805: oe_debug_pub.add('Retro:ref_head_id:'||l_ref_line_rec.header_id||' line_id:'||l_ref_line_rec.line_id);
3806: Oe_Retrobill_Pvt.Get_Return_Price(p_header_id=> l_ref_line_rec.header_id,
3807: p_line_id => l_ref_line_rec.line_id,
3808: p_ordered_qty => p_x_line_rec.ordered_quantity, --bug3540728

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

3883: NULL;
3884: END IF;
3885:
3886: -- Pack J catchweight
3887: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110510' AND
3888: --bug3420941
3889: (l_ref_line_rec.source_type_code <> 'EXTERNAL') AND
3890: (p_x_line_rec. ordered_quantity2 IS NULL OR
3891: p_x_line_rec. ordered_quantity2 = FND_API.G_MISS_NUM) AND

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

4035:
4036: -- End fix for Bug 2849656
4037:
4038: -- Override List Price
4039: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110510' THEN
4040: IF OE_ORDER_COPY_UTIL.G_LINE_PRICE_MODE = OE_ORDER_COPY_UTIL.G_CPY_REPRICE THEN
4041: p_x_line_rec.original_list_price := NULL;
4042: ELSE
4043: IF (p_x_line_rec.original_list_price IS NULL OR

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

4863: (p_line_rec => p_old_line_rec
4864: ,x_rowtype_rec => l_in_old_rec);
4865:
4866: --Perform blanket defaulting
4867: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110509' THEN
4868:
4869: IF ( l_in_rec.operation = OE_GLOBALS.G_OPR_CREATE -- 7152122
4870: AND trunc( l_in_rec.request_date ) <> trunc(l_in_old_rec.request_date)
4871: AND l_in_rec.blanket_line_number IS NOT NULL )THEN

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

4935: , p_in_old_rec => l_in_old_rec
4936: );
4937:
4938: -- More blanket defaulting
4939: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110509' THEN
4940:
4941: IF l_rec.blanket_number IS NOT NULL
4942: AND (NOT OE_GLOBALS.EQUAL(l_in_rec.blanket_number,l_rec.blanket_number)
4943: OR trunc(l_blanket_request_date) <> trunc(l_rec.request_date)

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

5226: -- lines due to caching in SO UI like bug 2362210
5227: IF (p_x_line_rec.orig_sys_shipment_ref = FND_API.G_MISS_CHAR
5228: OR p_x_line_rec.orig_sys_shipment_ref IS NULL) AND
5229: (nvl(p_x_line_rec.source_document_id,0) <> 10) THEN
5230: IF (OE_CODE_CONTROL.Get_Code_Release_Level >= '110508') AND
5231: (g_multiple_shipments = 'YES') THEN
5232: p_x_line_rec.orig_sys_shipment_ref := 'OE_ORDER_LINES_ALL'||p_x_line_rec.line_id||'.'||'1';
5233: IF l_debug_level > 0 THEN
5234: oe_debug_pub.add( 'SHIP SYS = '||P_X_LINE_REC.ORIG_SYS_SHIPMENT_REF ) ;

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

5736:
5737: END IF;
5738:
5739: -- Override List Price
5740: IF (OE_CODE_CONTROL.Get_Code_Release_Level >= '110510') THEN
5741: IF p_x_line_rec.original_list_price = FND_API.G_MISS_NUM THEN
5742: p_x_line_rec.original_list_price := NULL;
5743: END IF;
5744: END IF;