DBA Data[Home] [Help]

APPS.OE_SHIPPING_INTEGRATION_PUB dependencies on FND_API

Line 5: ( line_id NUMBER := FND_API.G_MISS_NUM

1: PACKAGE OE_Shipping_Integration_PUB AUTHID CURRENT_USER AS
2: /* $Header: OEXPSHPS.pls 120.0 2005/06/01 01:07:38 appldev noship $ */
3:
4: TYPE Cal_Tolerance_Rec_Type IS RECORD
5: ( line_id NUMBER := FND_API.G_MISS_NUM
6: , shipping_uom VARCHAR2(3) := FND_API.G_MISS_CHAR
7: , quantity_to_be_shipped NUMBER := FND_API.G_MISS_NUM
8: , planned_quantity NUMBER := FND_API.G_MISS_NUM
9: );

Line 6: , shipping_uom VARCHAR2(3) := FND_API.G_MISS_CHAR

2: /* $Header: OEXPSHPS.pls 120.0 2005/06/01 01:07:38 appldev noship $ */
3:
4: TYPE Cal_Tolerance_Rec_Type IS RECORD
5: ( line_id NUMBER := FND_API.G_MISS_NUM
6: , shipping_uom VARCHAR2(3) := FND_API.G_MISS_CHAR
7: , quantity_to_be_shipped NUMBER := FND_API.G_MISS_NUM
8: , planned_quantity NUMBER := FND_API.G_MISS_NUM
9: );
10:

Line 7: , quantity_to_be_shipped NUMBER := FND_API.G_MISS_NUM

3:
4: TYPE Cal_Tolerance_Rec_Type IS RECORD
5: ( line_id NUMBER := FND_API.G_MISS_NUM
6: , shipping_uom VARCHAR2(3) := FND_API.G_MISS_CHAR
7: , quantity_to_be_shipped NUMBER := FND_API.G_MISS_NUM
8: , planned_quantity NUMBER := FND_API.G_MISS_NUM
9: );
10:
11: TYPE Cal_Tolerance_Tbl_Type IS TABLE OF Cal_Tolerance_Rec_Type

Line 8: , planned_quantity NUMBER := FND_API.G_MISS_NUM

4: TYPE Cal_Tolerance_Rec_Type IS RECORD
5: ( line_id NUMBER := FND_API.G_MISS_NUM
6: , shipping_uom VARCHAR2(3) := FND_API.G_MISS_CHAR
7: , quantity_to_be_shipped NUMBER := FND_API.G_MISS_NUM
8: , planned_quantity NUMBER := FND_API.G_MISS_NUM
9: );
10:
11: TYPE Cal_Tolerance_Tbl_Type IS TABLE OF Cal_Tolerance_Rec_Type
12: INDEX BY BINARY_INTEGER;

Line 37: -- work flow. Returns FND_API.G_TRUE if line is at SHIP_LINE

33: -- API name : Is_Activity_Shipping
34: -- Type : Public
35: -- Pre-reqs : None.
36: -- Function : Checks if the current activity for a line is SHIP_LINE in
37: -- work flow. Returns FND_API.G_TRUE if line is at SHIP_LINE
38: -- work flow activity else return FND_API.G_FALSE.
39: -- Parameters : p_api_version_number IN NUMBER Required
40: -- p_line_id IN NUMBER Required
41: -- The line_id of the line for which the check is required.

Line 38: -- work flow activity else return FND_API.G_FALSE.

34: -- Type : Public
35: -- Pre-reqs : None.
36: -- Function : Checks if the current activity for a line is SHIP_LINE in
37: -- work flow. Returns FND_API.G_TRUE if line is at SHIP_LINE
38: -- work flow activity else return FND_API.G_FALSE.
39: -- Parameters : p_api_version_number IN NUMBER Required
40: -- p_line_id IN NUMBER Required
41: -- The line_id of the line for which the check is required.
42: -- Version : Current version = 1.0

Line 59: -- work flow. Returns FND_API.G_TRUE if line is at SHIP_LINE

55: -- Type : Public
56: -- Pre-reqs : The line for which the SHIP_LINE work flow activity is to
57: -- be completed should be at SHIP_LINE work flow activity.
58: -- Function : Checks if the current activity for a line is SHIP_LINE in
59: -- work flow. Returns FND_API.G_TRUE if line is at SHIP_LINE
60: -- work flow activity else return FND_API.G_FALSE.
61: -- Parameters : p_api_version_number IN NUMBER Required
62: -- p_line_id IN NUMBER Required
63: -- The line_id of the line for which the SHIP_LINE work

Line 60: -- work flow activity else return FND_API.G_FALSE.

56: -- Pre-reqs : The line for which the SHIP_LINE work flow activity is to
57: -- be completed should be at SHIP_LINE work flow activity.
58: -- Function : Checks if the current activity for a line is SHIP_LINE in
59: -- work flow. Returns FND_API.G_TRUE if line is at SHIP_LINE
60: -- work flow activity else return FND_API.G_FALSE.
61: -- Parameters : p_api_version_number IN NUMBER Required
62: -- p_line_id IN NUMBER Required
63: -- The line_id of the line for which the SHIP_LINE work
64: -- flow activity will be completed.