DBA Data[Home] [Help]

APPS.OE_PRICING_CONT_PVT dependencies on OE_PRICE_LIST_UTIL

Line 802: OE_Price_List_Util.Convert_Miss_To_Null (l_old_Price_LHeader_rec);

798:
799: -- Set missing old record elements to NULL.
800:
801: l_old_Price_LHeader_rec :=
802: OE_Price_List_Util.Convert_Miss_To_Null (l_old_Price_LHeader_rec);
803:
804: ELSIF l_Price_LHeader_rec.operation = OE_GLOBALS.G_OPR_UPDATE
805: OR l_Price_LHeader_rec.operation = OE_GLOBALS.G_OPR_DELETE
806: THEN

Line 816: l_old_Price_LHeader_rec := OE_Price_List_Util.Query_Row

812: IF l_old_Price_LHeader_rec.name = FND_API.G_MISS_CHAR
813: OR l_old_Price_LHeader_rec.price_list_id = FND_API.G_MISS_NUM
814: THEN
815:
816: l_old_Price_LHeader_rec := OE_Price_List_Util.Query_Row
817: ( p_name => l_Price_LHeader_rec.name ,
818: p_price_list_id => l_Price_LHeader_rec.price_list_id
819: );
820:

Line 826: OE_Price_List_Util.Convert_Miss_To_Null (l_old_Price_LHeader_rec);

822:
823: -- Set missing old record elements to NULL.
824:
825: l_old_Price_LHeader_rec :=
826: OE_Price_List_Util.Convert_Miss_To_Null (l_old_Price_LHeader_rec);
827:
828: END IF;
829:
830: -- Complete new record from old

Line 832: l_Price_LHeader_rec := OE_Price_List_Util.Complete_Record

828: END IF;
829:
830: -- Complete new record from old
831:
832: l_Price_LHeader_rec := OE_Price_List_Util.Complete_Record
833: ( p_PRICE_LIST_rec => l_Price_LHeader_rec
834: , p_old_PRICE_LIST_rec => l_old_Price_LHeader_rec
835: );
836:

Line 872: OE_Price_List_Util.Clear_Dependent_Attr

868: IF l_control_rec.change_attributes THEN
869:
870: l_p_Price_LHeader_rec := l_Price_LHeader_rec; --[prarasto]
871:
872: OE_Price_List_Util.Clear_Dependent_Attr
873: ( p_Price_list_rec => l_p_Price_LHeader_rec
874: , p_old_Price_list_rec => l_old_Price_LHeader_rec
875: , x_Price_list_rec => l_Price_LHeader_rec
876: );

Line 903: OE_Price_List_Util.Apply_Attribute_Changes

899: THEN
900:
901: l_p_Price_LHeader_rec := l_Price_LHeader_rec; --[prarasto]
902:
903: OE_Price_List_Util.Apply_Attribute_Changes
904: ( p_Price_LIST_rec => l_p_Price_LHeader_rec
905: , p_old_Price_list_rec => l_old_Price_LHeader_rec
906: , x_Price_list_rec => l_Price_LHeader_rec
907: );

Line 946: OE_Price_List_Util.Delete_Row

942: IF l_control_rec.write_to_db THEN
943:
944: IF l_Price_LHeader_rec.operation = OE_GLOBALS.G_OPR_DELETE THEN
945:
946: OE_Price_List_Util.Delete_Row
947: ( p_name => l_Price_LHeader_rec.name,
948: p_price_list_id => l_Price_LHeader_rec.price_list_id
949: );
950:

Line 961: OE_Price_List_Util.Update_Row (l_Price_LHeader_rec);

957: l_Price_LHeader_rec.last_update_login := FND_GLOBAL.LOGIN_ID;
958:
959: IF l_Price_LHeader_rec.operation = OE_GLOBALS.G_OPR_UPDATE THEN
960:
961: OE_Price_List_Util.Update_Row (l_Price_LHeader_rec);
962:
963: ELSIF l_Price_LHeader_rec.operation = OE_GLOBALS.G_OPR_CREATE THEN
964:
965: l_Price_LHeader_rec.creation_date := SYSDATE;

Line 968: OE_Price_List_Util.Insert_Row (l_Price_LHeader_rec);

964:
965: l_Price_LHeader_rec.creation_date := SYSDATE;
966: l_Price_LHeader_rec.created_by := FND_GLOBAL.USER_ID;
967:
968: OE_Price_List_Util.Insert_Row (l_Price_LHeader_rec);
969:
970: END IF;
971:
972: END IF;

Line 2484: OE_Price_List_Util.Lock_Row

2480: -- Lock Price_LHeader
2481:
2482: IF p_Price_LHeader_rec.operation = OE_GLOBALS.G_OPR_LOCK THEN
2483:
2484: OE_Price_List_Util.Lock_Row
2485: ( p_Price_LIST_rec => p_Price_LHeader_rec
2486: , x_Price_LIST_rec => x_Price_LHeader_rec
2487: , x_return_status => l_return_status
2488: );

Line 2773: l_Price_LHeader_tbl(1) := OE_Price_List_Util.Query_Row

2769:
2770:
2771: -- Get Price_LHeader ( parent = Contract )
2772:
2773: l_Price_LHeader_tbl(1) := OE_Price_List_Util.Query_Row
2774: ( p_name => l_Price_LHeader_rec.name
2775: ,p_price_list_id => l_contract_rec.pricing_contract_id
2776: );
2777: