DBA Data[Home] [Help]

APPS.OE_LINE_UTIL_EXT dependencies on OE_ORDER_PUB

Line 1947: ( p_LINE_rec IN OE_Order_PUB.LINE_Rec_Type

1943: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1944: END G_MISS_OE_AK_LINE_REC;
1945:
1946: PROCEDURE API_Rec_To_Rowtype_Rec
1947: ( p_LINE_rec IN OE_Order_PUB.LINE_Rec_Type
1948: , x_rowtype_rec IN OUT NOCOPY OE_AK_ORDER_LINES_V%ROWTYPE
1949: ) IS
1950: BEGIN
1951:

Line 2318: , x_api_rec IN OUT NOCOPY OE_Order_PUB.LINE_Rec_Type

2314:
2315:
2316: PROCEDURE Rowtype_Rec_To_API_Rec
2317: ( p_record IN OE_AK_ORDER_LINES_V%ROWTYPE
2318: , x_api_rec IN OUT NOCOPY OE_Order_PUB.LINE_Rec_Type
2319: ) IS
2320: BEGIN
2321:
2322: x_api_rec.ACCOUNTING_RULE_ID := p_record.ACCOUNTING_RULE_ID;

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

2924: -- PROCEDURE Clear_Dependent_Attr
2925: -- This version of the clear dependent attributes procedure is called
2926: -- from the private process order API (OE_Order_PVT) to clear the
2927: -- dependents if control_rec.clear_dependents is TRUE. The record
2928: -- types are of the type OE_Order_PUB._rec_Type
2929: -- Arguments:
2930: -- p_attr_id: if passed, then clear attributes dependent only on
2931: -- this attribute else compare p_old_line_rec and p_x_line_rec
2932: -- and clear attributes dependent on all the change attributes

Line 2937: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type

2933: -- p_old_line_rec: the old record as it was before the changes
2934: -- p_x_line_rec: the current record with the user-specified changes
2935: PROCEDURE Clear_Dependent_Attr
2936: ( p_attr_id IN NUMBER := FND_API.G_MISS_NUM
2937: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type
2938: , p_old_line_rec IN OE_Order_PUB.Line_Rec_Type :=
2939: OE_Order_PUB.G_MISS_LINE_REC
2940: )
2941: IS

Line 2938: , p_old_line_rec IN OE_Order_PUB.Line_Rec_Type :=

2934: -- p_x_line_rec: the current record with the user-specified changes
2935: PROCEDURE Clear_Dependent_Attr
2936: ( p_attr_id IN NUMBER := FND_API.G_MISS_NUM
2937: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type
2938: , p_old_line_rec IN OE_Order_PUB.Line_Rec_Type :=
2939: OE_Order_PUB.G_MISS_LINE_REC
2940: )
2941: IS
2942: l_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;

Line 2939: OE_Order_PUB.G_MISS_LINE_REC

2935: PROCEDURE Clear_Dependent_Attr
2936: ( p_attr_id IN NUMBER := FND_API.G_MISS_NUM
2937: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type
2938: , p_old_line_rec IN OE_Order_PUB.Line_Rec_Type :=
2939: OE_Order_PUB.G_MISS_LINE_REC
2940: )
2941: IS
2942: l_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;
2943: l_initial_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;

Line 2971: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type

2967: -- This procedure will be used to detect if there was a dependent
2968: -- attribute that is changed and re-defaulted in the call or not.
2969: PROCEDURE Clear_Dep_And_Default
2970: ( p_src_attr_tbl IN OE_GLOBALS.Number_Tbl_Type
2971: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type
2972: , p_old_line_rec IN OE_Order_PUB.Line_Rec_Type
2973: )IS
2974: l_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;
2975: l_initial_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;

Line 2972: , p_old_line_rec IN OE_Order_PUB.Line_Rec_Type

2968: -- attribute that is changed and re-defaulted in the call or not.
2969: PROCEDURE Clear_Dep_And_Default
2970: ( p_src_attr_tbl IN OE_GLOBALS.Number_Tbl_Type
2971: , p_x_line_rec IN OUT NOCOPY OE_Order_PUB.Line_Rec_Type
2972: , p_old_line_rec IN OE_Order_PUB.Line_Rec_Type
2973: )IS
2974: l_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;
2975: l_initial_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;
2976: l_old_line_rec OE_AK_ORDER_LINES_V%ROWTYPE;