DBA Data[Home] [Help]

APPS.OE_OE_FORM_LINE dependencies on OE_SET_UTIL

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

4651:
4652: IF p_line_rec.line_id IS NOT NULL THEN
4653:
4654: x_line_val_rec.fulfillment_list :=
4655: oe_set_util.get_fulfillment_list(p_line_id => p_line_rec.line_id);
4656: END IF;
4657:
4658: IF p_line_rec.calculate_price_flag IS NOT NULL THEN
4659: BEGIN

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

5951: --bug#3947584
5952: --Calling procedure to remove fulfillment set info for the record
5953:
5954: --bug # 6059554--
5955: --Before calling procedure OE_Set_Util.Remove_From_Fulfilment to remove the fulfillment information,
5956: --check whether Order line exists in oe_order_lines_all or not.If it does
5957: --not exists then only Call OE_Set_Util.Remove_From_Fulfilment to remove the fulfillment set information for the
5958: --line otherwise we will not remove the fulfillment information from line.
5959:

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

5953:
5954: --bug # 6059554--
5955: --Before calling procedure OE_Set_Util.Remove_From_Fulfilment to remove the fulfillment information,
5956: --check whether Order line exists in oe_order_lines_all or not.If it does
5957: --not exists then only Call OE_Set_Util.Remove_From_Fulfilment to remove the fulfillment set information for the
5958: --line otherwise we will not remove the fulfillment information from line.
5959:
5960: select count(1) into l_count_to_keep
5961: from oe_order_lines_all

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

5962: where line_id=p_line_id;
5963:
5964: if l_count_to_keep = 0 then
5965:
5966: OE_Set_Util.Remove_From_Fulfillment(p_line_id => p_line_id);
5967:
5968: end if;
5969:
5970: --Close for bug #6059554--