DBA Data[Home] [Help]

APPS.OE_ORDER_ADJ_PVT dependencies on OE_HEADER_PATTR_UTIL

Line 1896: OE_Header_PAttr_Util.Convert_Miss_To_Null (l_old_Header_Price_Att_rec);

1892: -- Set missing old record elements to NULL.
1893:
1894: oe_debug_pub.add('Entering OE_Header_Price_Att_Util.Convert_Miss_To_Null', 2);
1895: -- l_old_Header_Price_Att_rec :=
1896: OE_Header_PAttr_Util.Convert_Miss_To_Null (l_old_Header_Price_Att_rec);
1897:
1898: ELSIF l_Header_Price_Att_rec.operation = OE_GLOBALS.G_OPR_UPDATE
1899: OR l_Header_Price_Att_rec.operation = OE_GLOBALS.G_OPR_DELETE
1900: THEN

Line 1910: OE_Header_PAttr_Util.Query_Row

1906: IF l_old_Header_Price_Att_rec.order_price_attrib_id = FND_API.G_MISS_NUM
1907: THEN
1908:
1909:
1910: OE_Header_PAttr_Util.Query_Row
1911: ( p_order_price_attrib_id => l_Header_Price_Att_rec.order_price_attrib_id
1912: , x_Header_Price_Att_rec => l_old_Header_Price_Att_rec
1913: );
1914:

Line 1920: OE_Header_PAttr_Util.Convert_Miss_To_Null (l_old_Header_Price_Att_rec);

1916:
1917: -- Set missing old record elements to NULL.
1918:
1919: -- l_old_Header_Price_Att_rec :=
1920: OE_Header_PAttr_Util.Convert_Miss_To_Null (l_old_Header_Price_Att_rec);
1921:
1922: END IF;
1923:
1924: -- Complete new record from old

Line 1927: OE_Header_PAttr_Util.Complete_Record

1923:
1924: -- Complete new record from old
1925:
1926: -- l_Header_Price_Att_rec :=
1927: OE_Header_PAttr_Util.Complete_Record
1928: ( p_x_Header_Price_Att_rec => l_Header_Price_Att_rec
1929: , p_old_Header_Price_Att_rec => l_old_Header_Price_Att_rec
1930: );
1931:

Line 1970: OE_Header_PAttr_Util.Clear_Dependent_Attr

1966: -- Clear dependent attributes.
1967:
1968: IF l_control_rec.clear_dependents THEN
1969:
1970: OE_Header_PAttr_Util.Clear_Dependent_Attr
1971: ( p_x_Header_Price_Att_rec => l_Header_Price_Att_rec
1972: , p_old_Header_Price_Att_rec => l_old_Header_Price_Att_rec
1973: --, x_Header_Price_Att_rec => l_Header_Price_Att_rec
1974: );

Line 1998: OE_Header_PAttr_Util.Apply_Attribute_Changes

1994:
1995: -- This will also log request/s to check duplicity of
1996: -- price adjustment entered
1997: oe_debug_pub.add(' In apply attribute changes');
1998: OE_Header_PAttr_Util.Apply_Attribute_Changes
1999: ( p_x_Header_Price_Att_rec => l_Header_Price_Att_rec
2000: , p_old_Header_Price_Att_rec => l_old_Header_Price_Att_rec
2001: );
2002:

Line 2045: OE_Header_PAttr_Util.Delete_Row

2041: IF l_control_rec.write_to_db THEN
2042:
2043: IF l_Header_Price_Att_rec.operation = OE_GLOBALS.G_OPR_DELETE THEN
2044:
2045: OE_Header_PAttr_Util.Delete_Row
2046: ( p_order_price_attrib_id => l_Header_Price_Att_rec.order_price_attrib_id
2047: );
2048:
2049: -- Log a delayed request to cause repricing due to deleted

Line 2138: OE_Header_PAttr_Util.Update_Row (l_Header_Price_Att_rec);

2134: l_Header_Price_Att_rec.last_update_login := FND_GLOBAL.LOGIN_ID;
2135:
2136: IF l_Header_Price_Att_rec.operation = OE_GLOBALS.G_OPR_UPDATE THEN
2137:
2138: OE_Header_PAttr_Util.Update_Row (l_Header_Price_Att_rec);
2139:
2140: ELSIF l_Header_Price_Att_rec.operation = OE_GLOBALS.G_OPR_CREATE THEN
2141:
2142: l_Header_Price_Att_rec.creation_date := SYSDATE;

Line 2150: OE_Header_PAttr_Util.Insert_Row (l_Header_Price_Att_rec);

2146: select OE_ORDER_PRICE_ATTRIBS_S.nextval
2147: into l_header_price_att_rec.order_price_attrib_id
2148: from dual;
2149:
2150: OE_Header_PAttr_Util.Insert_Row (l_Header_Price_Att_rec);
2151:
2152: END IF;
2153:
2154: END IF;