DBA Data[Home] [Help]

APPS.OE_ORDER_ADJ_PVT dependencies on OE_HEADER_PATTR_UTIL

Line 1813: OE_Header_PAttr_Util.Convert_Miss_To_Null (l_old_Header_Price_Att_rec);

1809: -- Set missing old record elements to NULL.
1810:
1811: oe_debug_pub.add('Entering OE_Header_Price_Att_Util.Convert_Miss_To_Null', 2);
1812: -- l_old_Header_Price_Att_rec :=
1813: OE_Header_PAttr_Util.Convert_Miss_To_Null (l_old_Header_Price_Att_rec);
1814:
1815: ELSIF l_Header_Price_Att_rec.operation = OE_GLOBALS.G_OPR_UPDATE
1816: OR l_Header_Price_Att_rec.operation = OE_GLOBALS.G_OPR_DELETE
1817: THEN

Line 1827: OE_Header_PAttr_Util.Query_Row

1823: IF l_old_Header_Price_Att_rec.order_price_attrib_id = FND_API.G_MISS_NUM
1824: THEN
1825:
1826:
1827: OE_Header_PAttr_Util.Query_Row
1828: ( p_order_price_attrib_id => l_Header_Price_Att_rec.order_price_attrib_id
1829: , x_Header_Price_Att_rec => l_old_Header_Price_Att_rec
1830: );
1831:

Line 1837: OE_Header_PAttr_Util.Convert_Miss_To_Null (l_old_Header_Price_Att_rec);

1833:
1834: -- Set missing old record elements to NULL.
1835:
1836: -- l_old_Header_Price_Att_rec :=
1837: OE_Header_PAttr_Util.Convert_Miss_To_Null (l_old_Header_Price_Att_rec);
1838:
1839: END IF;
1840:
1841: -- Complete new record from old

Line 1844: OE_Header_PAttr_Util.Complete_Record

1840:
1841: -- Complete new record from old
1842:
1843: -- l_Header_Price_Att_rec :=
1844: OE_Header_PAttr_Util.Complete_Record
1845: ( p_x_Header_Price_Att_rec => l_Header_Price_Att_rec
1846: , p_old_Header_Price_Att_rec => l_old_Header_Price_Att_rec
1847: );
1848:

Line 1887: OE_Header_PAttr_Util.Clear_Dependent_Attr

1883: -- Clear dependent attributes.
1884:
1885: IF l_control_rec.clear_dependents THEN
1886:
1887: OE_Header_PAttr_Util.Clear_Dependent_Attr
1888: ( p_x_Header_Price_Att_rec => l_Header_Price_Att_rec
1889: , p_old_Header_Price_Att_rec => l_old_Header_Price_Att_rec
1890: --, x_Header_Price_Att_rec => l_Header_Price_Att_rec
1891: );

Line 1915: OE_Header_PAttr_Util.Apply_Attribute_Changes

1911:
1912: -- This will also log request/s to check duplicity of
1913: -- price adjustment entered
1914: oe_debug_pub.add(' In apply attribute changes');
1915: OE_Header_PAttr_Util.Apply_Attribute_Changes
1916: ( p_x_Header_Price_Att_rec => l_Header_Price_Att_rec
1917: , p_old_Header_Price_Att_rec => l_old_Header_Price_Att_rec
1918: );
1919:

Line 1962: OE_Header_PAttr_Util.Delete_Row

1958: IF l_control_rec.write_to_db THEN
1959:
1960: IF l_Header_Price_Att_rec.operation = OE_GLOBALS.G_OPR_DELETE THEN
1961:
1962: OE_Header_PAttr_Util.Delete_Row
1963: ( p_order_price_attrib_id => l_Header_Price_Att_rec.order_price_attrib_id
1964: );
1965:
1966: -- Log a delayed request to cause repricing due to deleted

Line 2055: OE_Header_PAttr_Util.Update_Row (l_Header_Price_Att_rec);

2051: l_Header_Price_Att_rec.last_update_login := FND_GLOBAL.LOGIN_ID;
2052:
2053: IF l_Header_Price_Att_rec.operation = OE_GLOBALS.G_OPR_UPDATE THEN
2054:
2055: OE_Header_PAttr_Util.Update_Row (l_Header_Price_Att_rec);
2056:
2057: ELSIF l_Header_Price_Att_rec.operation = OE_GLOBALS.G_OPR_CREATE THEN
2058:
2059: l_Header_Price_Att_rec.creation_date := SYSDATE;

Line 2067: OE_Header_PAttr_Util.Insert_Row (l_Header_Price_Att_rec);

2063: select OE_ORDER_PRICE_ATTRIBS_S.nextval
2064: into l_header_price_att_rec.order_price_attrib_id
2065: from dual;
2066:
2067: OE_Header_PAttr_Util.Insert_Row (l_Header_Price_Att_rec);
2068:
2069: END IF;
2070:
2071: END IF;