DBA Data[Home] [Help]

APPS.OE_DELAYED_REQUESTS_UTIL dependencies on STANDARD

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

3257:
3258: OE_Line_Util.query_row(p_line_id => l_orig_line_rec.reference_line_id
3259: ,x_line_rec => l_reference_line_rec);
3260:
3261: IF l_reference_line_rec.item_type_code in ('STANDARD','OPTION',
3262: 'INCLUDED','CONFIG','SERVICE') THEN
3263: return;
3264: END IF;
3265:

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

3350: l_line_tbl(l_number).return_attribute1 := l_child.header_id;
3351: l_line_tbl(l_number).return_attribute2 := l_child.line_id;
3352: l_line_tbl(l_number).ordered_quantity := ( l_child.ordered_quantity *
3353: l_orig_line_rec.ordered_quantity)/l_reference_line_rec.ordered_quantity;
3354: l_line_tbl(l_number).item_type_code := OE_GLOBALS.G_ITEM_STANDARD;
3355: l_line_tbl(l_number).operation := OE_GLOBALS.G_OPR_CREATE;
3356: l_line_tbl(l_number).header_id := l_orig_line_rec.header_id;
3357: l_line_tbl(l_number).line_type_id := l_orig_line_rec.line_type_id;
3358: l_line_tbl(l_number).return_reason_code := l_orig_line_rec.return_reason_code;

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

5036: END IF;
5037:
5038: IF (l_line_rec.ato_line_id is not null and
5039: NOT (l_line_rec.ato_line_id = l_line_rec.line_id and
5040: l_line_rec.item_type_code IN (OE_GLOBALS.G_ITEM_STANDARD,
5041: OE_GLOBALS.G_ITEM_OPTION,
5042: OE_GLOBALS.G_ITEM_INCLUDED))) OR --9775352
5043: nvl(l_line_rec.ship_model_complete_flag,'N') = 'Y'
5044: THEN

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

5110:
5111: -- Set the Entity as ATO or SMC and not ship set.
5112: IF l_line_rec.ato_line_id is not null AND
5113: NOT (l_line_rec.ato_line_id = l_line_rec.line_id AND
5114: l_line_rec.item_type_code IN (OE_GLOBALS.G_ITEM_STANDARD,
5115: OE_GLOBALS.G_ITEM_OPTION,
5116: OE_GLOBALS.G_ITEM_INCLUDED)) THEN --9775352
5117:
5118: l_group_req_rec.entity_type :=

Line 5291: (OE_GLOBALS.G_ITEM_STANDARD,

5287: IF l_line_rec.ship_model_complete_flag = 'Y'
5288: OR (l_line_rec.ato_line_id is not null
5289: AND NOT (l_line_rec.ato_line_id = l_line_rec.line_id AND
5290: l_line_rec.item_type_code IN
5291: (OE_GLOBALS.G_ITEM_STANDARD,
5292: OE_GLOBALS.G_ITEM_OPTION,
5293: OE_GLOBALS.G_ITEM_INCLUDED))) --9775352
5294: THEN
5295: -- Line is part of ato model or smc. Cannot insert a

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

6086: --Here Loop for each Order Line
6087: FOR Cur_Ord_line in ord_line_cur(p_ord_header_id)
6088: LOOP
6089: j := j+1;
6090: IF cur_ord_line.item_type_code <> OE_GLOBALS.G_ITEM_STANDARD THEN
6091: fnd_message.set_name('ONT','ONT_ISO_ITEM_TYPE_NOT_STD');
6092: OE_MSG_PUB.Add;
6093: x_return_status := FND_API.G_RET_STS_ERROR;
6094: RAISE FND_API.G_EXC_ERROR;