DBA Data[Home] [Help]

APPS.INV_PICK_RELEASE_PVT dependencies on FND_API

Line 44: -- fnd_api.g_ret_sts_success;

40: --
41: -- Output Parameters
42: -- x_return_status
43: -- if the process succeeds, the value is
44: -- fnd_api.g_ret_sts_success;
45: -- if there is an expected error, the value is
46: -- fnd_api.g_ret_sts_error;
47: -- if there is an unexpected error, the value is
48: -- fnd_api.g_ret_sts_unexp_error;

Line 46: -- fnd_api.g_ret_sts_error;

42: -- x_return_status
43: -- if the process succeeds, the value is
44: -- fnd_api.g_ret_sts_success;
45: -- if there is an expected error, the value is
46: -- fnd_api.g_ret_sts_error;
47: -- if there is an unexpected error, the value is
48: -- fnd_api.g_ret_sts_unexp_error;
49: -- x_msg_count
50: -- if there is one or more errors, the number of error messages

Line 48: -- fnd_api.g_ret_sts_unexp_error;

44: -- fnd_api.g_ret_sts_success;
45: -- if there is an expected error, the value is
46: -- fnd_api.g_ret_sts_error;
47: -- if there is an unexpected error, the value is
48: -- fnd_api.g_ret_sts_unexp_error;
49: -- x_msg_count
50: -- if there is one or more errors, the number of error messages
51: -- in the buffer
52: -- x_msg_data

Line 54: -- (See fnd_api package for more details about the above output parameters)

50: -- if there is one or more errors, the number of error messages
51: -- in the buffer
52: -- x_msg_data
53: -- if there is one and only one error, the error message
54: -- (See fnd_api package for more details about the above output parameters)
55: --
56:
57: PROCEDURE Process_Line
58: (

Line 60: ,p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false

56:
57: PROCEDURE Process_Line
58: (
59: p_api_version IN NUMBER
60: ,p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false
61: ,p_commit IN VARCHAR2 DEFAULT fnd_api.g_false
62: ,x_return_status OUT NOCOPY VARCHAR2
63: ,x_msg_count OUT NOCOPY NUMBER
64: ,x_msg_data OUT NOCOPY VARCHAR2

Line 61: ,p_commit IN VARCHAR2 DEFAULT fnd_api.g_false

57: PROCEDURE Process_Line
58: (
59: p_api_version IN NUMBER
60: ,p_init_msg_list IN VARCHAR2 DEFAULT fnd_api.g_false
61: ,p_commit IN VARCHAR2 DEFAULT fnd_api.g_false
62: ,x_return_status OUT NOCOPY VARCHAR2
63: ,x_msg_count OUT NOCOPY NUMBER
64: ,x_msg_data OUT NOCOPY VARCHAR2
65: ,p_mo_line_rec IN OUT NOCOPY INV_Move_Order_PUB.TROLIN_REC_TYPE

Line 67: ,p_allow_partial_pick IN VARCHAR2 DEFAULT fnd_api.g_true

63: ,x_msg_count OUT NOCOPY NUMBER
64: ,x_msg_data OUT NOCOPY VARCHAR2
65: ,p_mo_line_rec IN OUT NOCOPY INV_Move_Order_PUB.TROLIN_REC_TYPE
66: ,p_grouping_rule_id IN NUMBER
67: ,p_allow_partial_pick IN VARCHAR2 DEFAULT fnd_api.g_true
68: ,p_print_mode IN VARCHAR2
69: ,x_detail_rec_count OUT NOCOPY NUMBER
70: ,p_plan_tasks IN BOOLEAN DEFAULT FALSE
71: );

Line 107: -- fnd_api.g_ret_sts_success;

103: --
104: -- Output Parameters
105: -- x_return_status
106: -- if the process succeeds, the value is
107: -- fnd_api.g_ret_sts_success;
108: -- if there is an expected error, the value is
109: -- fnd_api.g_ret_sts_error;
110: -- if there is an unexpected error, the value is
111: -- fnd_api.g_ret_sts_unexp_error;

Line 109: -- fnd_api.g_ret_sts_error;

105: -- x_return_status
106: -- if the process succeeds, the value is
107: -- fnd_api.g_ret_sts_success;
108: -- if there is an expected error, the value is
109: -- fnd_api.g_ret_sts_error;
110: -- if there is an unexpected error, the value is
111: -- fnd_api.g_ret_sts_unexp_error;
112: -- x_msg_count
113: -- if there is one or more errors, the number of error messages

Line 111: -- fnd_api.g_ret_sts_unexp_error;

107: -- fnd_api.g_ret_sts_success;
108: -- if there is an expected error, the value is
109: -- fnd_api.g_ret_sts_error;
110: -- if there is an unexpected error, the value is
111: -- fnd_api.g_ret_sts_unexp_error;
112: -- x_msg_count
113: -- if there is one or more errors, the number of error messages
114: -- in the buffer
115: -- x_msg_data

Line 117: -- (See fnd_api package for more details about the above output parameters)

113: -- if there is one or more errors, the number of error messages
114: -- in the buffer
115: -- x_msg_data
116: -- if there is one and only one error, the error message
117: -- (See fnd_api package for more details about the above output parameters)
118: --
119:
120: PROCEDURE process_prj_dynamic_locator
121: (

Line 173: , p_allow_partial_pick IN VARCHAR2 DEFAULT fnd_api.g_true

169: , p_mo_line_rec IN inv_move_order_pub.trolin_rec_type
170: , p_mso_line_id IN NUMBER
171: , p_demand_source_type IN VARCHAR2
172: , p_demand_source_name IN VARCHAR2
173: , p_allow_partial_pick IN VARCHAR2 DEFAULT fnd_api.g_true
174: , x_demand_rsvs_ordered OUT NOCOPY inv_reservation_global.mtl_reservation_tbl_type
175: , x_rsv_qty_available OUT NOCOPY NUMBER
176: ,x_rsv_qty2_available OUT NOCOPY NUMBER --7377744
177: );