DBA Data[Home] [Help]

APPS.OE_OE_FORM_LINE dependencies on OE_SET_UTIL

Line 4933: oe_set_util.get_fulfillment_list(p_line_id => p_line_rec.line_id);

4929:
4930: IF p_line_rec.line_id IS NOT NULL THEN
4931:
4932: x_line_val_rec.fulfillment_list :=
4933: oe_set_util.get_fulfillment_list(p_line_id => p_line_rec.line_id);
4934: END IF;
4935:
4936: IF p_line_rec.calculate_price_flag IS NOT NULL THEN
4937: BEGIN

Line 6303: --Before calling procedure OE_Set_Util.Remove_From_Fulfilment to remove the fulfillment information,

6299: --bug#3947584
6300: --Calling procedure to remove fulfillment set info for the record
6301:
6302: --bug # 6059554--
6303: --Before calling procedure OE_Set_Util.Remove_From_Fulfilment to remove the fulfillment information,
6304: --check whether Order line exists in oe_order_lines_all or not.If it does
6305: --not exists then only Call OE_Set_Util.Remove_From_Fulfilment to remove the fulfillment set information for the
6306: --line otherwise we will not remove the fulfillment information from line.
6307:

Line 6305: --not exists then only Call OE_Set_Util.Remove_From_Fulfilment to remove the fulfillment set information for the

6301:
6302: --bug # 6059554--
6303: --Before calling procedure OE_Set_Util.Remove_From_Fulfilment to remove the fulfillment information,
6304: --check whether Order line exists in oe_order_lines_all or not.If it does
6305: --not exists then only Call OE_Set_Util.Remove_From_Fulfilment to remove the fulfillment set information for the
6306: --line otherwise we will not remove the fulfillment information from line.
6307:
6308: select count(1) into l_count_to_keep
6309: from oe_order_lines_all

Line 6314: OE_Set_Util.Remove_From_Fulfillment(p_line_id => p_line_id);

6310: where line_id=p_line_id;
6311:
6312: if l_count_to_keep = 0 then
6313:
6314: OE_Set_Util.Remove_From_Fulfillment(p_line_id => p_line_id);
6315:
6316: end if;
6317:
6318: --Close for bug #6059554--