DBA Data[Home] [Help]

APPS.OE_ORDER_ADJ_PVT dependencies on OE_LINE_ADJ_ASSOCS_UTIL

Line 3763: Oe_Line_Adj_Assocs_util.Convert_Miss_To_Null (l_old_Line_Adj_Assoc_rec);

3759: -- Set missing old record elements to NULL.
3760:
3761: adj_debug('Entering OE_Line_Adj_Assoc_Util.Convert_Miss_To_Null', 1);
3762: -- l_old_Line_Adj_Assoc_rec :=
3763: Oe_Line_Adj_Assocs_util.Convert_Miss_To_Null (l_old_Line_Adj_Assoc_rec);
3764:
3765: ELSIF l_Line_Adj_Assoc_rec.operation = OE_GLOBALS.G_OPR_UPDATE
3766: OR l_Line_Adj_Assoc_rec.operation = OE_GLOBALS.G_OPR_DELETE
3767: THEN

Line 3777: Oe_Line_Adj_Assocs_util.Query_Row

3773: IF l_old_Line_Adj_Assoc_rec.Price_Adj_assoc_id = FND_API.G_MISS_NUM
3774: THEN
3775:
3776:
3777: Oe_Line_Adj_Assocs_util.Query_Row
3778: ( p_Price_Adj_assoc_id => l_Line_Adj_Assoc_rec.Price_Adj_assoc_id
3779: , x_Line_Adj_Assoc_rec => l_old_Line_Adj_Assoc_rec
3780: );
3781:

Line 3787: Oe_Line_Adj_Assocs_util.Convert_Miss_To_Null (l_old_Line_Adj_Assoc_rec);

3783:
3784: -- Set missing old record elements to NULL.
3785:
3786: -- l_old_Line_Adj_Assoc_rec :=
3787: Oe_Line_Adj_Assocs_util.Convert_Miss_To_Null (l_old_Line_Adj_Assoc_rec);
3788:
3789: END IF;
3790:
3791: -- Complete new record from old

Line 3794: Oe_Line_Adj_Assocs_util.Complete_Record

3790:
3791: -- Complete new record from old
3792:
3793: -- l_Line_Adj_Assoc_rec :=
3794: Oe_Line_Adj_Assocs_util.Complete_Record
3795: ( p_x_Line_Adj_Assoc_rec => l_Line_Adj_Assoc_rec
3796: , p_old_Line_Adj_Assoc_rec => l_old_Line_Adj_Assoc_rec
3797: );
3798:

Line 3824: Oe_Line_Adj_Assocs_util.Apply_Attribute_Changes

3820: THEN
3821:
3822: -- This will also log request/s to check duplicity of
3823: -- price adjustment entered
3824: Oe_Line_Adj_Assocs_util.Apply_Attribute_Changes
3825: ( p_x_Line_Adj_Assoc_rec => l_Line_Adj_Assoc_rec
3826: , p_old_Line_Adj_Assoc_rec => l_old_Line_Adj_Assoc_rec
3827: --, x_Line_Adj_Assoc_rec => l_Line_Adj_Assoc_rec
3828: );

Line 3845: Oe_Line_Adj_Assocs_util.Delete_Row

3841: IF l_Line_Adj_Assoc_rec.operation = OE_GLOBALS.G_OPR_DELETE THEN
3842:
3843:
3844: adj_debug('deleting line adj assocs',2);
3845: Oe_Line_Adj_Assocs_util.Delete_Row
3846: ( p_Price_Adj_assoc_id => l_Line_Adj_Assoc_rec.Price_Adj_assoc_id
3847: );
3848:
3849: ELSE

Line 3859: Oe_Line_Adj_Assocs_util.Update_Row (l_Line_Adj_Assoc_rec);

3855: l_Line_Adj_Assoc_rec.last_update_login := FND_GLOBAL.LOGIN_ID;
3856:
3857: IF l_Line_Adj_Assoc_rec.operation = OE_GLOBALS.G_OPR_UPDATE THEN
3858: adj_debug('updating line adj assocs',2);
3859: Oe_Line_Adj_Assocs_util.Update_Row (l_Line_Adj_Assoc_rec);
3860:
3861: ELSIF l_Line_Adj_Assoc_rec.operation = OE_GLOBALS.G_OPR_CREATE THEN
3862: adj_debug('inserting into line adj assocs',2);
3863: l_Line_Adj_Assoc_rec.creation_date := SYSDATE;

Line 3866: Oe_Line_Adj_Assocs_util.Insert_Row (l_Line_Adj_Assoc_rec);

3862: adj_debug('inserting into line adj assocs',2);
3863: l_Line_Adj_Assoc_rec.creation_date := SYSDATE;
3864: l_Line_Adj_Assoc_rec.created_by := FND_GLOBAL.USER_ID;
3865:
3866: Oe_Line_Adj_Assocs_util.Insert_Row (l_Line_Adj_Assoc_rec);
3867:
3868: END IF;
3869:
3870: END IF;

Line 6830: OE_Line_Adj_Assocs_Util.Query_Rows(

6826:
6827: End Loop;
6828:
6829: adj_debug('query line adj assocs for price adjustment:'||p_price_adjustment_id, 2);
6830: OE_Line_Adj_Assocs_Util.Query_Rows(
6831: p_price_adjustment_id => p_price_adjustment_id
6832: , x_Line_Adj_Assoc_Tbl => L_Line_Adj_Assoc_Tbl );
6833:
6834: -- Append to the tbl with Delete flag set.