DBA Data[Home] [Help]

APPS.OE_BULK_PROCESS_LINE dependencies on OE_CODE_CONTROL

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

150: OE_Order_UTIL.Get_Attribute_Name('PAYMENT_TERM_ID'));
151: OE_BULK_MSG_PUB.ADD;
152: END IF;
153: --serla
154: IF OE_CODE_CONTROL.Get_Code_Release_Level >= '110509' THEN
155: IF p_line_rec.item_type_code(p_index) <> 'SERVICE' THEN
156: IF p_line_rec.accounting_rule_id(p_index) IS NOT NULL AND
157: p_line_rec.accounting_rule_id(p_index) <> FND_API.G_MISS_NUM THEN
158: IF l_debug_level > 0 THEN

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

1023: -- validate input quantity
1024: IF (p_input_quantity is not null AND
1025: p_input_quantity <> FND_API.G_MISS_NUM) THEN
1026:
1027: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN
1028: IF nvl(p_input_quantity, 0) < 0 -- Process HVOP added check for negative as was missing -NB take out when support for RMAs needed
1029:
1030: THEN
1031: FND_MESSAGE.SET_NAME('ONT', 'SO_PR_NEGATIVE_AMOUNT');

Line 1040: END IF; -- IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN

1036: END IF;
1037: RETURN;
1038: END IF; -- IF nvl(p_input_quantity, 0) < 0
1039:
1040: END IF; -- IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN
1041:
1042: IF trunc(p_input_quantity) <> p_input_quantity THEN
1043:
1044: IF p_item_type_code is not NULL THEN

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

1667: p_line_rec.calculate_price_flag(p_index) := 'Y';
1668: END IF;
1669:
1670: --PIB
1671: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN
1672: IF p_line_rec.pricing_date(p_index) IS NULL THEN
1673: p_line_rec.pricing_date(p_index) := sysdate;
1674: END IF;
1675: END IF;

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

1963: END IF; -- p_process_configuration = 'Y'
1964: -- Process Characteristics
1965: -- HVOP - checks here for 1. qty2 - call function to default secondary quantity if necessary
1966:
1967: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN
1968: -- INVCONV take out defaulting for grade as normal defaulting takes place.
1969:
1970:
1971: IF OE_BULK_CACHE.G_ITEM_TBL(l_c_index).tracking_quantity_ind = 'PS' -- INVCONV --

Line 2029: END IF; -- IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN

2025: END IF;
2026: END IF ;
2027: ----ER#14763609 End
2028:
2029: END IF; -- IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN
2030:
2031: END IF;
2032:
2033:

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

2459:
2460: p_line_rec.line_number(l_index) := l_nbr_ctr;
2461:
2462: --PIB{
2463: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN
2464: IF l_debug_level > 0 Then
2465: oe_debug_pub.add('before integration code');
2466: END IF;
2467: -- p_line_rec.line_index.extend(1);

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

2524:
2525: -- Populating calculate price flag
2526:
2527: --PIB
2528: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN
2529: IF l_debug_level > 0 Then
2530: oe_debug_pub.add('before set_price_flag');
2531: END IF;
2532: oe_bulk_priceorder_pvt.set_price_flag(p_line_rec,l_index,header_counter);

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

2721: IF (p_line_rec.line_category_code(l_index) <> 'RETURN' AND
2722: p_line_rec.shipping_method_code(l_index) IS NOT NULL AND
2723: p_line_rec.ship_from_org_id(l_index) IS NOT NULL) THEN
2724:
2725: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110509' THEN
2726: SELECT count(*)
2727: INTO l_count
2728: FROM wsh_carrier_services wsh,
2729: wsh_org_carrier_services wsh_org

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

2754:
2755: END IF;
2756:
2757: /* -- checks: Warehouse/Process combinations process HVOP
2758: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN
2759: IF OE_Bulk_Order_PVT.G_PROCESS_INSTALLED_FLAG = 'Y' THEN
2760:
2761: -- first check if warehouse is NULL, do not supply process attributes INVCONV - NOT NEEDED NOW
2762:

Line 2815: END IF; -- IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN */

2811: END IF; -- p_line_rec.inventory_item_id(p_index) IS NOT NULL THEN
2812:
2813: END IF; -- IF OE_Bulk_Order_PVT.G_PROCESS_INSTALLED_FLAG = 'Y' THEN
2814:
2815: END IF; -- IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN */
2816:
2817:
2818:
2819:

Line 3497: IF oe_code_control.code_release_level >= '110510' THEN

3493: THEN
3494: BEGIN
3495: -- EBTax Changes
3496: /*
3497: IF oe_code_control.code_release_level >= '110510' THEN
3498:
3499: l_AR_Sys_Param_Rec := OE_Sys_Parameters_Pvt.Get_AR_Sys_Params(OE_GLOBALS.G_ORG_ID);
3500: l_sob_id := l_AR_Sys_Param_Rec.set_of_books_id;
3501:

Line 4317: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510'

4313: END IF;
4314: -- Pack J
4315: -- Latest Acceptable date violation check when flag is set to 'Honor'
4316: -- 3940632 : dates truncated before comparison.
4317: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510'
4318: AND OE_SYS_PARAMETERS.value('LATEST_ACCEPTABLE_DATE_FLAG') ='H' THEN
4319: l_order_date_type_code :=
4320: NVL(OE_BULK_SCHEDULE_UTIL.Get_Date_Type(p_line_rec.header_id(l_index)),'SHIP');
4321: IF trunc(NVL(p_line_rec.latest_acceptable_date(l_index),p_line_rec.request_date(l_index)))

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

4503:
4504: -- Populate header calculate_price_flag
4505:
4506: --PIB
4507: IF OE_CODE_CONTROL.CODE_RELEASE_LEVEL >= '110510' THEN
4508: Oe_bulk_priceorder_pvt.set_hdr_price_flag(p_header_rec);
4509: END IF;
4510: --PIB
4511: