DBA Data[Home] [Help]

APPS.INV_DEFAULT_TROLIN dependencies on INV_MOVE_ORDER_PUB

Line 10: g_trolin_rec INV_Move_Order_PUB.Trolin_Rec_Type;

6: G_PKG_NAME CONSTANT VARCHAR2(30) := 'INV_Default_Trolin';
7:
8: -- Package global used within the package.
9:
10: g_trolin_rec INV_Move_Order_PUB.Trolin_Rec_Type;
11: g_max_line_num_header_id number := null;
12:
13: -- Get functions.
14:

Line 18: l_trohdr_rec INV_Move_Order_PUB.Trohdr_Rec_Type;

14:
15: FUNCTION Get_Date_Required
16: RETURN DATE
17: IS
18: l_trohdr_rec INV_Move_Order_PUB.Trohdr_Rec_Type;
19: BEGIN
20: RETURN NULL;
21:
22: END Get_Date_Required;

Line 47: l_trohdr_rec INV_Move_Order_PUB.Trohdr_Rec_Type;

43:
44: FUNCTION Get_From_Subinventory
45: RETURN VARCHAR2
46: IS
47: l_trohdr_rec INV_Move_Order_PUB.Trohdr_Rec_Type;
48: BEGIN
49: RETURN NULL;
50:
51: END Get_From_Subinventory;

Line 92: l_trohdr_rec INV_Move_Order_PUB.Trohdr_Rec_Type;

88:
89: FUNCTION Get_Line_Number
90: RETURN NUMBER
91: IS
92: l_trohdr_rec INV_Move_Order_PUB.Trohdr_Rec_Type;
93: --Bug #4347016
94: --Initialized Max Line Number to the global variable
95: l_max_line_num number := NVL(INV_Globals.g_max_line_num, 0);
96: BEGIN

Line 284: l_trohdr_rec INV_Move_Order_PUB.Trohdr_Rec_Type;

280:
281: FUNCTION Get_To_Account
282: RETURN NUMBER
283: IS
284: l_trohdr_rec INV_Move_Order_PUB.Trohdr_Rec_Type;
285: BEGIN
286: /*
287: IF g_trolin_rec.header_id IS NOT NULL AND
288: g_trolin_rec.header_id <> FND_API.G_MISS_NUM

Line 324: l_trohdr_rec INV_Move_Order_PUB.Trohdr_Rec_Type;

320:
321: FUNCTION Get_To_Subinventory
322: RETURN VARCHAR2
323: IS
324: l_trohdr_rec INV_Move_Order_PUB.Trohdr_Rec_Type;
325: BEGIN
326: /*
327: IF g_trolin_rec.header_id IS NOT NULL AND
328: g_trolin_rec.header_id <> FND_API.G_MISS_NUM

Line 559: p_trolin_rec IN OUT NOCOPY inv_move_order_pub.trolin_rec_type) IS

555:
556:
557: PROCEDURE convert_quantity
558: ( x_return_status OUT NOCOPY VARCHAR2,
559: p_trolin_rec IN OUT NOCOPY inv_move_order_pub.trolin_rec_type) IS
560: l_return_status VARCHAR2(1):= fnd_api.g_ret_sts_success;
561: l_primary_uom_code VARCHAR2(3);
562: l_tmp_secondary_quantity NUMBER := NULL; -- INVCONV
563: l_tmp_quantity NUMBER := NULL;

Line 636: ( p_trolin_rec IN INV_Move_Order_PUB.Trolin_Rec_Type :=

632:
633: -- Procedure Attributes
634:
635: PROCEDURE Attributes
636: ( p_trolin_rec IN INV_Move_Order_PUB.Trolin_Rec_Type :=
637: INV_Move_Order_PUB.G_MISS_TROLIN_REC
638: , p_iteration IN NUMBER := 1
639: , x_trolin_rec OUT NOCOPY INV_Move_Order_PUB.Trolin_Rec_Type
640: )

Line 637: INV_Move_Order_PUB.G_MISS_TROLIN_REC

633: -- Procedure Attributes
634:
635: PROCEDURE Attributes
636: ( p_trolin_rec IN INV_Move_Order_PUB.Trolin_Rec_Type :=
637: INV_Move_Order_PUB.G_MISS_TROLIN_REC
638: , p_iteration IN NUMBER := 1
639: , x_trolin_rec OUT NOCOPY INV_Move_Order_PUB.Trolin_Rec_Type
640: )
641: IS

Line 639: , x_trolin_rec OUT NOCOPY INV_Move_Order_PUB.Trolin_Rec_Type

635: PROCEDURE Attributes
636: ( p_trolin_rec IN INV_Move_Order_PUB.Trolin_Rec_Type :=
637: INV_Move_Order_PUB.G_MISS_TROLIN_REC
638: , p_iteration IN NUMBER := 1
639: , x_trolin_rec OUT NOCOPY INV_Move_Order_PUB.Trolin_Rec_Type
640: )
641: IS
642: l_org inv_validate.org;
643: l_item inv_validate.item;