DBA Data[Home] [Help]

APPS.OE_SHIP_CONFIRMATION_PUB dependencies on STANDARD

Line 322: IF l_ato_line_id IS NOT NULL and l_item_type_code <> 'STANDARD' THEN

318: -- of the ordered quantity.
319:
320: l_split_line_tbl(1) := OE_ORDER_PUB.G_MISS_LINE_REC;
321:
322: IF l_ato_line_id IS NOT NULL and l_item_type_code <> 'STANDARD' THEN
323: l_split_line_tbl(1).line_id := l_top_model_line_id;
324: IF l_debug_level > 0 THEN
325: oe_debug_pub.add( 'SPLIT THE TOP MODEL : '||L_SPLIT_LINE_TBL ( 1 ) .LINE_ID , 3 ) ;
326: END IF;

Line 350: IF l_ato_line_id IS NOT NULL and l_item_type_code <> 'STANDARD' THEN

346: -- create of new line.
347:
348: l_split_line_tbl(2) := OE_ORDER_PUB.G_MISS_LINE_REC;
349:
350: IF l_ato_line_id IS NOT NULL and l_item_type_code <> 'STANDARD' THEN
351: l_split_line_tbl(2).split_from_line_id := l_top_model_line_id;
352: IF l_debug_level > 0 THEN
353: oe_debug_pub.add( 'SPLIT FROM THE TOP MODEL : '||L_SPLIT_LINE_TBL ( 1 ) .LINE_ID , 3 ) ;
354: END IF;

Line 1766: IF p_requested_line_rec.item_type_code(I) = 'STANDARD' THEN

1762: p_requested_line_rec.shipped_quantity(I) := null;
1763: p_requested_line_rec.shipped_quantity2(I) := null;
1764: -- Bug 7648161
1765:
1766: IF p_requested_line_rec.item_type_code(I) = 'STANDARD' THEN
1767:
1768: SELECT count(*)
1769: INTO l_wdd_count
1770: FROM wsh_delivery_details

Line 1805: p_requested_line_rec.item_type_code(I) <> 'STANDARD' THEN

1801: IF p_requested_line_rec.ordered_quantity(I) >
1802: p_requested_line_rec.shipped_quantity(I) THEN
1803:
1804: IF p_requested_line_rec.ato_line_id(I) IS NOT NULL AND
1805: p_requested_line_rec.item_type_code(I) <> 'STANDARD' THEN
1806:
1807: l_split_line_rec.line_id := p_requested_line_rec.top_model_line_id(I);
1808:
1809: IF l_debug_level > 0 THEN

Line 2577: p_ship_line_rec.item_type_code(p_index) = 'STANDARD' THEN

2573:
2574: IF p_ship_line_rec.fulfilled_flag(p_index) = 'Y' THEN
2575:
2576: IF p_check_line_set = 'Y' AND
2577: p_ship_line_rec.item_type_code(p_index) = 'STANDARD' THEN
2578:
2579: Ship_Confirm_Split_Lines
2580: (p_ship_line_rec => p_ship_line_rec
2581: ,p_index => p_index);

Line 2592: p_ship_line_rec.item_type_code(p_index) = 'STANDARD' AND

2588: < p_ship_line_rec.ordered_quantity(p_index) THEN
2589:
2590: IF nvl(p_ship_line_rec.ship_tolerance_above(p_index),0) = 0 AND
2591: nvl(p_ship_line_rec.ship_tolerance_below(p_index),0) = 0 AND
2592: p_ship_line_rec.item_type_code(p_index) = 'STANDARD' AND
2593: (floor(p_ship_line_rec.ordered_quantity(p_index))
2594: <> p_ship_line_rec.ordered_quantity(p_index) OR
2595: floor(p_ship_line_rec.shipped_quantity(p_index))
2596: <> p_ship_line_rec.shipped_quantity(p_index)) THEN

Line 2634: oe_debug_pub.add('after split line for standard item', 5);

2630: ,p_index => p_index
2631: ,p_split_model => p_ato_only);
2632:
2633: IF l_debug_level > 0 THEN
2634: oe_debug_pub.add('after split line for standard item', 5);
2635: END IF;
2636: END IF; -- Item_type_code
2637:
2638: END IF;

Line 3319: It will be used for standard lines and Config items.

3315: This procedure is used to ship confirm split lines when ship
3316: confirmation of other lines in the line set results in fulfilling
3317: the ordered quantity within or beyond tolerance.
3318:
3319: It will be used for standard lines and Config items.
3320: p_line_rec provide details about the line getting ship confirmed
3321: we need to cehck if due shipment of this line if we need to
3322: close other lines.
3323:

Line 4144: ELSE -- standard or remnant

4140: -- || l_model_tbl(p_ship_line_rec.top_model_line_id(I)), 3); -- Bug 8795918
4141: END IF;
4142: END IF; -- added the model to table
4143:
4144: ELSE -- standard or remnant
4145: IF l_debug_level > 0 THEN
4146: Oe_Debug_pub.Add
4147: ('line is standalone '|| p_ship_line_rec.ato_line_id(I), 3);
4148: END IF;