DBA Data[Home] [Help]

APPS.OE_DELAYED_REQUESTS_UTIL dependencies on STANDARD

Line 3040: IF l_reference_line_rec.item_type_code in ('STANDARD','OPTION',

3036:
3037: OE_Line_Util.query_row(p_line_id => l_orig_line_rec.reference_line_id
3038: ,x_line_rec => l_reference_line_rec);
3039:
3040: IF l_reference_line_rec.item_type_code in ('STANDARD','OPTION',
3041: 'INCLUDED','CONFIG','SERVICE') THEN
3042: return;
3043: END IF;
3044:

Line 3125: l_line_tbl(l_number).item_type_code := OE_GLOBALS.G_ITEM_STANDARD;

3121: l_line_tbl(l_number).return_attribute1 := l_child.header_id;
3122: l_line_tbl(l_number).return_attribute2 := l_child.line_id;
3123: l_line_tbl(l_number).ordered_quantity := ( l_child.ordered_quantity *
3124: l_orig_line_rec.ordered_quantity)/l_reference_line_rec.ordered_quantity;
3125: l_line_tbl(l_number).item_type_code := OE_GLOBALS.G_ITEM_STANDARD;
3126: l_line_tbl(l_number).operation := OE_GLOBALS.G_OPR_CREATE;
3127: l_line_tbl(l_number).header_id := l_orig_line_rec.header_id;
3128: l_line_tbl(l_number).line_type_id := l_orig_line_rec.line_type_id;
3129: l_line_tbl(l_number).return_reason_code := l_orig_line_rec.return_reason_code;

Line 4665: l_line_rec.item_type_code IN (OE_GLOBALS.G_ITEM_STANDARD,

4661: END IF;
4662:
4663: IF (l_line_rec.ato_line_id is not null and
4664: NOT (l_line_rec.ato_line_id = l_line_rec.line_id and
4665: l_line_rec.item_type_code IN (OE_GLOBALS.G_ITEM_STANDARD,
4666: OE_GLOBALS.G_ITEM_OPTION))) OR
4667: nvl(l_line_rec.ship_model_complete_flag,'N') = 'Y'
4668: THEN
4669: IF l_request_rec.param3 =

Line 4738: l_line_rec.item_type_code IN (OE_GLOBALS.G_ITEM_STANDARD,

4734:
4735: -- Set the Entity as ATO or SMC and not ship set.
4736: IF l_line_rec.ato_line_id is not null AND
4737: NOT (l_line_rec.ato_line_id = l_line_rec.line_id AND
4738: l_line_rec.item_type_code IN (OE_GLOBALS.G_ITEM_STANDARD,
4739: OE_GLOBALS.G_ITEM_OPTION)) THEN
4740:
4741: l_group_req_rec.entity_type :=
4742: OE_ORDER_SCH_UTIL.OESCH_ENTITY_ATO_CONFIG;

Line 4914: (OE_GLOBALS.G_ITEM_STANDARD,

4910: IF l_line_rec.ship_model_complete_flag = 'Y'
4911: OR (l_line_rec.ato_line_id is not null
4912: AND NOT (l_line_rec.ato_line_id = l_line_rec.line_id AND
4913: l_line_rec.item_type_code IN
4914: (OE_GLOBALS.G_ITEM_STANDARD,
4915: OE_GLOBALS.G_ITEM_OPTION)))
4916: THEN
4917: -- Line is part of ato model or smc. Cannot insert a
4918: -- line without scheduling the same when parent is

Line 5733: IF cur_ord_line.item_type_code <> OE_GLOBALS.G_ITEM_STANDARD THEN

5729: --Here Loop for each Order Line
5730: FOR Cur_Ord_line in ord_line_cur(p_ord_header_id)
5731: LOOP
5732: j := j+1;
5733: IF cur_ord_line.item_type_code <> OE_GLOBALS.G_ITEM_STANDARD THEN
5734: fnd_message.set_name('ONT','ONT_ISO_ITEM_TYPE_NOT_STD');
5735: OE_MSG_PUB.Add;
5736: x_return_status := FND_API.G_RET_STS_ERROR;
5737: RAISE FND_API.G_EXC_ERROR;