DBA Data[Home] [Help]

APPS.OE_SHIP_CONFIRMATION_PUB dependencies on STANDARD

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

310: -- of the ordered quantity.
311:
312: l_split_line_tbl(1) := OE_ORDER_PUB.G_MISS_LINE_REC;
313:
314: IF l_ato_line_id IS NOT NULL and l_item_type_code <> 'STANDARD' THEN
315: l_split_line_tbl(1).line_id := l_top_model_line_id;
316: IF l_debug_level > 0 THEN
317: oe_debug_pub.add( 'SPLIT THE TOP MODEL : '||L_SPLIT_LINE_TBL ( 1 ) .LINE_ID , 3 ) ;
318: END IF;

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

337: -- create of new line.
338:
339: l_split_line_tbl(2) := OE_ORDER_PUB.G_MISS_LINE_REC;
340:
341: IF l_ato_line_id IS NOT NULL and l_item_type_code <> 'STANDARD' THEN
342: l_split_line_tbl(2).split_from_line_id := l_top_model_line_id;
343: IF l_debug_level > 0 THEN
344: oe_debug_pub.add( 'SPLIT FROM THE TOP MODEL : '||L_SPLIT_LINE_TBL ( 1 ) .LINE_ID , 3 ) ;
345: END IF;

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

1668: oe_debug_pub.add('Before checking deleievry detail split ', 1);
1669: oe_debug_pub.add('Item type code :'||p_requested_line_rec.item_type_code(I), 1);
1670: END IF;
1671:
1672: IF p_requested_line_rec.item_type_code(I) = 'STANDARD' THEN
1673:
1674: SELECT count(*)
1675: INTO l_wdd_count
1676: FROM wsh_delivery_details

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

1714: IF p_requested_line_rec.ordered_quantity(I) >
1715: p_requested_line_rec.shipped_quantity(I) THEN
1716:
1717: IF p_requested_line_rec.ato_line_id(I) IS NOT NULL AND
1718: p_requested_line_rec.item_type_code(I) <> 'STANDARD' THEN
1719:
1720: l_split_line_rec.line_id := p_requested_line_rec.top_model_line_id(I);
1721:
1722: IF l_debug_level > 0 THEN

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

2425:
2426: IF p_ship_line_rec.fulfilled_flag(p_index) = 'Y' THEN
2427:
2428: IF p_check_line_set = 'Y' AND
2429: p_ship_line_rec.item_type_code(p_index) = 'STANDARD' THEN
2430:
2431: Ship_Confirm_Split_Lines
2432: (p_ship_line_rec => p_ship_line_rec
2433: ,p_index => p_index);

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

2440: < p_ship_line_rec.ordered_quantity(p_index) THEN
2441:
2442: IF nvl(p_ship_line_rec.ship_tolerance_above(p_index),0) = 0 AND
2443: nvl(p_ship_line_rec.ship_tolerance_below(p_index),0) = 0 AND
2444: p_ship_line_rec.item_type_code(p_index) = 'STANDARD' AND
2445: (floor(p_ship_line_rec.ordered_quantity(p_index))
2446: <> p_ship_line_rec.ordered_quantity(p_index) OR
2447: floor(p_ship_line_rec.shipped_quantity(p_index))
2448: <> p_ship_line_rec.shipped_quantity(p_index)) THEN

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

2482: ,p_index => p_index
2483: ,p_split_model => p_ato_only);
2484:
2485: IF l_debug_level > 0 THEN
2486: oe_debug_pub.add('after split line for standard item', 5);
2487: END IF;
2488: END IF; -- Item_type_code
2489:
2490: END IF;

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

3137: This procedure is used to ship confirm split lines when ship
3138: confirmation of other lines in the line set results in fulfilling
3139: the ordered quantity within or beyond tolerance.
3140:
3141: It will be used for standard lines and Config items.
3142: p_line_rec provide details about the line getting ship confirmed
3143: we need to cehck if due shipment of this line if we need to
3144: close other lines.
3145:

Line 3939: ELSE -- standard or remnant

3935: || l_model_tbl(p_ship_line_rec.top_model_line_id(I)), 3);
3936: END IF;
3937: END IF; -- added the model to table
3938:
3939: ELSE -- standard or remnant
3940: IF l_debug_level > 0 THEN
3941: Oe_Debug_pub.Add
3942: ('line is standalone '|| p_ship_line_rec.ato_line_id(I), 3);
3943: END IF;