DBA Data[Home] [Help]

APPS.OE_ORDER_ADJ_PVT dependencies on OE_LINE_ADJ_ASSOCS_UTIL

Line 3846: Oe_Line_Adj_Assocs_util.Convert_Miss_To_Null (l_old_Line_Adj_Assoc_rec);

3842: -- Set missing old record elements to NULL.
3843:
3844: adj_debug('Entering OE_Line_Adj_Assoc_Util.Convert_Miss_To_Null', 1);
3845: -- l_old_Line_Adj_Assoc_rec :=
3846: Oe_Line_Adj_Assocs_util.Convert_Miss_To_Null (l_old_Line_Adj_Assoc_rec);
3847:
3848: ELSIF l_Line_Adj_Assoc_rec.operation = OE_GLOBALS.G_OPR_UPDATE
3849: OR l_Line_Adj_Assoc_rec.operation = OE_GLOBALS.G_OPR_DELETE
3850: THEN

Line 3860: Oe_Line_Adj_Assocs_util.Query_Row

3856: IF l_old_Line_Adj_Assoc_rec.Price_Adj_assoc_id = FND_API.G_MISS_NUM
3857: THEN
3858:
3859:
3860: Oe_Line_Adj_Assocs_util.Query_Row
3861: ( p_Price_Adj_assoc_id => l_Line_Adj_Assoc_rec.Price_Adj_assoc_id
3862: , x_Line_Adj_Assoc_rec => l_old_Line_Adj_Assoc_rec
3863: );
3864:

Line 3870: Oe_Line_Adj_Assocs_util.Convert_Miss_To_Null (l_old_Line_Adj_Assoc_rec);

3866:
3867: -- Set missing old record elements to NULL.
3868:
3869: -- l_old_Line_Adj_Assoc_rec :=
3870: Oe_Line_Adj_Assocs_util.Convert_Miss_To_Null (l_old_Line_Adj_Assoc_rec);
3871:
3872: END IF;
3873:
3874: -- Complete new record from old

Line 3877: Oe_Line_Adj_Assocs_util.Complete_Record

3873:
3874: -- Complete new record from old
3875:
3876: -- l_Line_Adj_Assoc_rec :=
3877: Oe_Line_Adj_Assocs_util.Complete_Record
3878: ( p_x_Line_Adj_Assoc_rec => l_Line_Adj_Assoc_rec
3879: , p_old_Line_Adj_Assoc_rec => l_old_Line_Adj_Assoc_rec
3880: );
3881:

Line 3907: Oe_Line_Adj_Assocs_util.Apply_Attribute_Changes

3903: THEN
3904:
3905: -- This will also log request/s to check duplicity of
3906: -- price adjustment entered
3907: Oe_Line_Adj_Assocs_util.Apply_Attribute_Changes
3908: ( p_x_Line_Adj_Assoc_rec => l_Line_Adj_Assoc_rec
3909: , p_old_Line_Adj_Assoc_rec => l_old_Line_Adj_Assoc_rec
3910: --, x_Line_Adj_Assoc_rec => l_Line_Adj_Assoc_rec
3911: );

Line 3928: Oe_Line_Adj_Assocs_util.Delete_Row

3924: IF l_Line_Adj_Assoc_rec.operation = OE_GLOBALS.G_OPR_DELETE THEN
3925:
3926:
3927: adj_debug('deleting line adj assocs',2);
3928: Oe_Line_Adj_Assocs_util.Delete_Row
3929: ( p_Price_Adj_assoc_id => l_Line_Adj_Assoc_rec.Price_Adj_assoc_id
3930: );
3931:
3932: ELSE

Line 3942: Oe_Line_Adj_Assocs_util.Update_Row (l_Line_Adj_Assoc_rec);

3938: l_Line_Adj_Assoc_rec.last_update_login := FND_GLOBAL.LOGIN_ID;
3939:
3940: IF l_Line_Adj_Assoc_rec.operation = OE_GLOBALS.G_OPR_UPDATE THEN
3941: adj_debug('updating line adj assocs',2);
3942: Oe_Line_Adj_Assocs_util.Update_Row (l_Line_Adj_Assoc_rec);
3943:
3944: ELSIF l_Line_Adj_Assoc_rec.operation = OE_GLOBALS.G_OPR_CREATE THEN
3945: adj_debug('inserting into line adj assocs',2);
3946: l_Line_Adj_Assoc_rec.creation_date := SYSDATE;

Line 3949: Oe_Line_Adj_Assocs_util.Insert_Row (l_Line_Adj_Assoc_rec);

3945: adj_debug('inserting into line adj assocs',2);
3946: l_Line_Adj_Assoc_rec.creation_date := SYSDATE;
3947: l_Line_Adj_Assoc_rec.created_by := FND_GLOBAL.USER_ID;
3948:
3949: Oe_Line_Adj_Assocs_util.Insert_Row (l_Line_Adj_Assoc_rec);
3950:
3951: END IF;
3952:
3953: END IF;

Line 6921: OE_Line_Adj_Assocs_Util.Query_Rows(

6917:
6918: End Loop;
6919:
6920: adj_debug('query line adj assocs for price adjustment:'||p_price_adjustment_id, 2);
6921: OE_Line_Adj_Assocs_Util.Query_Rows(
6922: p_price_adjustment_id => p_price_adjustment_id
6923: , x_Line_Adj_Assoc_Tbl => L_Line_Adj_Assoc_Tbl );
6924:
6925: -- Append to the tbl with Delete flag set.