DBA Data[Home] [Help]

APPS.OE_LINE_UTIL dependencies on OE_GENESIS_UTIL

Line 1045: AND NOT(OE_GENESIS_UTIL.G_INCOMING_FROM_DOO))

1041: ( p_x_line_rec.item_type_code = OE_GLOBALS.G_ITEM_MODEL OR
1042: (p_x_line_rec.item_type_code = OE_GLOBALS.G_ITEM_KIT AND
1043: p_x_line_rec.line_id = p_x_line_rec.top_model_line_id))
1044: /* Start DOO Pre Exploded Kit ER 9339742 */
1045: AND NOT(OE_GENESIS_UTIL.G_INCOMING_FROM_DOO))
1046: OR
1047: (((p_x_line_rec.operation = OE_GLOBALS.G_OPR_UPDATE AND (OE_GENESIS_UTIL.G_INCOMING_FROM_DOO)) OR
1048: (p_x_line_rec.operation = OE_GLOBALS.G_OPR_CREATE AND
1049: p_x_line_rec.split_from_line_id IS NULL AND p_x_line_rec.pre_exploded_flag = 'Y'))

Line 1047: (((p_x_line_rec.operation = OE_GLOBALS.G_OPR_UPDATE AND (OE_GENESIS_UTIL.G_INCOMING_FROM_DOO)) OR

1043: p_x_line_rec.line_id = p_x_line_rec.top_model_line_id))
1044: /* Start DOO Pre Exploded Kit ER 9339742 */
1045: AND NOT(OE_GENESIS_UTIL.G_INCOMING_FROM_DOO))
1046: OR
1047: (((p_x_line_rec.operation = OE_GLOBALS.G_OPR_UPDATE AND (OE_GENESIS_UTIL.G_INCOMING_FROM_DOO)) OR
1048: (p_x_line_rec.operation = OE_GLOBALS.G_OPR_CREATE AND
1049: p_x_line_rec.split_from_line_id IS NULL AND p_x_line_rec.pre_exploded_flag = 'Y'))
1050: AND p_x_line_rec.ato_line_id is NULL
1051: AND ( (( p_x_line_rec.item_type_code = OE_GLOBALS.G_ITEM_KIT OR p_x_line_rec.item_type_code = OE_GLOBALS.G_ITEM_MODEL)

Line 1055: IF OE_GENESIS_UTIL.G_INCOMING_FROM_DOO THEN

1051: AND ( (( p_x_line_rec.item_type_code = OE_GLOBALS.G_ITEM_KIT OR p_x_line_rec.item_type_code = OE_GLOBALS.G_ITEM_MODEL)
1052: AND p_x_line_rec.line_id = p_x_line_rec.top_model_line_id)
1053: OR p_x_line_rec.item_type_code = OE_GLOBALS.G_ITEM_CLASS))
1054: THEN
1055: IF OE_GENESIS_UTIL.G_INCOMING_FROM_DOO THEN
1056: if l_debug_level > 0 then
1057: oe_debug_pub.ADD(' The update is from DOO Pre Exploded Kit ER',5);
1058: end if;
1059: END IF;

Line 2037: AND NOT(OE_GENESIS_UTIL.G_INCOMING_FROM_DOO))

2033: ( p_x_line_rec.item_type_code = OE_GLOBALS.G_ITEM_MODEL OR
2034: (p_x_line_rec.item_type_code = OE_GLOBALS.G_ITEM_KIT AND
2035: p_x_line_rec.line_id = p_x_line_rec.top_model_line_id))
2036: /* Start DOO Pre Exploded Kit ER 9339742 */
2037: AND NOT(OE_GENESIS_UTIL.G_INCOMING_FROM_DOO))
2038: OR
2039: (((p_x_line_rec.operation = OE_GLOBALS.G_OPR_UPDATE AND (OE_GENESIS_UTIL.G_INCOMING_FROM_DOO) ) OR
2040: (p_x_line_rec.operation = OE_GLOBALS.G_OPR_CREATE AND
2041: p_x_line_rec.split_from_line_id IS NULL AND p_x_line_rec.pre_exploded_flag = 'Y'))

Line 2039: (((p_x_line_rec.operation = OE_GLOBALS.G_OPR_UPDATE AND (OE_GENESIS_UTIL.G_INCOMING_FROM_DOO) ) OR

2035: p_x_line_rec.line_id = p_x_line_rec.top_model_line_id))
2036: /* Start DOO Pre Exploded Kit ER 9339742 */
2037: AND NOT(OE_GENESIS_UTIL.G_INCOMING_FROM_DOO))
2038: OR
2039: (((p_x_line_rec.operation = OE_GLOBALS.G_OPR_UPDATE AND (OE_GENESIS_UTIL.G_INCOMING_FROM_DOO) ) OR
2040: (p_x_line_rec.operation = OE_GLOBALS.G_OPR_CREATE AND
2041: p_x_line_rec.split_from_line_id IS NULL AND p_x_line_rec.pre_exploded_flag = 'Y'))
2042: AND p_x_line_rec.ato_line_id is NULL
2043: AND ( (( p_x_line_rec.item_type_code = OE_GLOBALS.G_ITEM_KIT OR p_x_line_rec.item_type_code = OE_GLOBALS.G_ITEM_MODEL)

Line 2047: IF OE_GENESIS_UTIL.G_INCOMING_FROM_DOO THEN

2043: AND ( (( p_x_line_rec.item_type_code = OE_GLOBALS.G_ITEM_KIT OR p_x_line_rec.item_type_code = OE_GLOBALS.G_ITEM_MODEL)
2044: AND p_x_line_rec.line_id = p_x_line_rec.top_model_line_id)
2045: OR p_x_line_rec.item_type_code = OE_GLOBALS.G_ITEM_CLASS))
2046: THEN
2047: IF OE_GENESIS_UTIL.G_INCOMING_FROM_DOO THEN
2048: if l_debug_level > 0 then
2049: oe_debug_pub.ADD(' The update is from DOO Pre Exploded Kit ER',5);
2050: end if;
2051: END IF;

Line 18498: IF NOT((OE_GENESIS_UTIL.G_INCOMING_FROM_DOO)

18494: ,p_old_line_rec => p_old_line_rec
18495: ,x_return_status => l_return_status);
18496:
18497: IF nvl(p_x_line_rec.model_remnant_flag, 'N') = 'N' THEN
18498: IF NOT((OE_GENESIS_UTIL.G_INCOMING_FROM_DOO)
18499: AND Nvl(p_x_line_rec.ordered_quantity,FND_API.G_MISS_NUM) <> 0) -- Bug 16266748
18500: THEN -- DOO Pre Exploded Kit ER 9339742
18501: -- This Global is checked here and not inside the procedure
18502: -- Log_Cascade_Requests because we are currently considering

Line 19362: IF (OE_GENESIS_UTIL.G_INCOMING_FROM_DOO)

19358: end if;
19359: IF p_x_line_rec.line_id = OE_Config_Pvt.OE_FREEZE_INC_ITEMS_TBL(I)
19360: THEN
19361: /* Start DOO Pre Exploded Kit ER 9339742 */
19362: IF (OE_GENESIS_UTIL.G_INCOMING_FROM_DOO)
19363: -- p_x_line_rec.pre_exploded_flag = 'Y'
19364: /* Note: Here we are checking on the global G_Incoming_From_DOO and not the
19365: Pre_Exploded_Flag attribute because user can change a DOO created Sales Order in
19366: EBS OM Sales order pad or by directly calling the Process Order api without

Line 22251: AND NOT(OE_GENESIS_UTIL.G_INCOMING_FROM_DOO) -- Bug 16491708

22247:
22248: -- log only if operation is update and not for create
22249: IF p_x_line_rec.operation = OE_GLOBALS.G_OPR_UPDATE AND
22250: l_config_rev_change = 'N'
22251: AND NOT(OE_GENESIS_UTIL.G_INCOMING_FROM_DOO) -- Bug 16491708
22252: THEN
22253:
22254: if l_debug_level > 0 then
22255: oe_debug_pub.add('Logging a request to update configuration', 1);