DBA Data[Home] [Help]

APPS.OE_LINE_UTIL_EXT dependencies on OE_ORDER_PUB

Line 1794: ( p_LINE_rec IN OE_Order_PUB.LINE_Rec_Type

1790: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1791: END G_MISS_OE_AK_LINE_REC;
1792:
1793: PROCEDURE API_Rec_To_Rowtype_Rec
1794: ( p_LINE_rec IN OE_Order_PUB.LINE_Rec_Type
1795: , x_rowtype_rec IN OUT NOCOPY OE_AK_ORDER_LINES_V%ROWTYPE
1796: ) IS
1797: BEGIN
1798:

Line 2156: , x_api_rec IN OUT NOCOPY OE_Order_PUB.LINE_Rec_Type

2152:
2153:
2154: PROCEDURE Rowtype_Rec_To_API_Rec
2155: ( p_record IN OE_AK_ORDER_LINES_V%ROWTYPE
2156: , x_api_rec IN OUT NOCOPY OE_Order_PUB.LINE_Rec_Type
2157: ) IS
2158: BEGIN
2159:
2160: x_api_rec.ACCOUNTING_RULE_ID := p_record.ACCOUNTING_RULE_ID;

Line 2743: -- types are of the type OE_Order_PUB._rec_Type

2739: -- PROCEDURE Clear_Dependent_Attr
2740: -- This version of the clear dependent attributes procedure is called
2741: -- from the private process order API (OE_Order_PVT) to clear the
2742: -- dependents if control_rec.clear_dependents is TRUE. The record
2743: -- types are of the type OE_Order_PUB._rec_Type
2744: -- Arguments:
2745: -- p_attr_id: if passed, then clear attributes dependent only on
2746: -- this attribute else compare p_old_line_rec and p_x_line_rec
2747: -- and clear attributes dependent on all the change attributes

Line 2752: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type

2748: -- p_old_line_rec: the old record as it was before the changes
2749: -- p_x_line_rec: the current record with the user-specified changes
2750: PROCEDURE Clear_Dependent_Attr
2751: ( p_attr_id IN NUMBER := FND_API.G_MISS_NUM
2752: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type
2753: , p_old_line_rec IN OE_Order_PUB.Line_Rec_Type :=
2754: OE_Order_PUB.G_MISS_LINE_REC
2755: )
2756: IS

Line 2753: , p_old_line_rec IN OE_Order_PUB.Line_Rec_Type :=

2749: -- p_x_line_rec: the current record with the user-specified changes
2750: PROCEDURE Clear_Dependent_Attr
2751: ( p_attr_id IN NUMBER := FND_API.G_MISS_NUM
2752: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type
2753: , p_old_line_rec IN OE_Order_PUB.Line_Rec_Type :=
2754: OE_Order_PUB.G_MISS_LINE_REC
2755: )
2756: IS
2757: l_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;

Line 2754: OE_Order_PUB.G_MISS_LINE_REC

2750: PROCEDURE Clear_Dependent_Attr
2751: ( p_attr_id IN NUMBER := FND_API.G_MISS_NUM
2752: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type
2753: , p_old_line_rec IN OE_Order_PUB.Line_Rec_Type :=
2754: OE_Order_PUB.G_MISS_LINE_REC
2755: )
2756: IS
2757: l_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;
2758: l_initial_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;

Line 2786: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type

2782: -- This procedure will be used to detect if there was a dependent
2783: -- attribute that is changed and re-defaulted in the call or not.
2784: PROCEDURE Clear_Dep_And_Default
2785: ( p_src_attr_tbl IN OE_GLOBALS.Number_Tbl_Type
2786: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type
2787: , p_old_line_rec IN OE_Order_PUB.Line_Rec_Type
2788: )IS
2789: l_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;
2790: l_initial_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;

Line 2787: , p_old_line_rec IN OE_Order_PUB.Line_Rec_Type

2783: -- attribute that is changed and re-defaulted in the call or not.
2784: PROCEDURE Clear_Dep_And_Default
2785: ( p_src_attr_tbl IN OE_GLOBALS.Number_Tbl_Type
2786: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type
2787: , p_old_line_rec IN OE_Order_PUB.Line_Rec_Type
2788: )IS
2789: l_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;
2790: l_initial_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;
2791: l_old_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;