DBA Data[Home] [Help]

APPS.WMS_LABEL_PUB dependencies on FND_API

Line 33: -- p_init_msg_list (optional, default FND_API.G_FALSE)

29: --
30: -- Input Parameters
31: -- p_api_version
32: -- API version number (current version is 1.0)
33: -- p_init_msg_list (optional, default FND_API.G_FALSE)
34: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
35: -- if set to FND_API.G_TRUE
36: -- initialize error message list
37: -- if set to FND_API.G_FALSE - not initialize error

Line 34: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.

30: -- Input Parameters
31: -- p_api_version
32: -- API version number (current version is 1.0)
33: -- p_init_msg_list (optional, default FND_API.G_FALSE)
34: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
35: -- if set to FND_API.G_TRUE
36: -- initialize error message list
37: -- if set to FND_API.G_FALSE - not initialize error
38: -- message list

Line 35: -- if set to FND_API.G_TRUE

31: -- p_api_version
32: -- API version number (current version is 1.0)
33: -- p_init_msg_list (optional, default FND_API.G_FALSE)
34: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
35: -- if set to FND_API.G_TRUE
36: -- initialize error message list
37: -- if set to FND_API.G_FALSE - not initialize error
38: -- message list
39: -- p_commit (optional, default FND_API.G_FALSE)

Line 37: -- if set to FND_API.G_FALSE - not initialize error

33: -- p_init_msg_list (optional, default FND_API.G_FALSE)
34: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
35: -- if set to FND_API.G_TRUE
36: -- initialize error message list
37: -- if set to FND_API.G_FALSE - not initialize error
38: -- message list
39: -- p_commit (optional, default FND_API.G_FALSE)
40: -- whether or not to commit the changes to database
41: -- p_organization_id Organization Id - Required Value

Line 39: -- p_commit (optional, default FND_API.G_FALSE)

35: -- if set to FND_API.G_TRUE
36: -- initialize error message list
37: -- if set to FND_API.G_FALSE - not initialize error
38: -- message list
39: -- p_commit (optional, default FND_API.G_FALSE)
40: -- whether or not to commit the changes to database
41: -- p_organization_id Organization Id - Required Value
42: -- p_Zone_From Zone Range From
43: -- p_Zone_To Zone Range To

Line 54: -- fnd_api.g_ret_sts_success;

50: --
51: -- Output Parameters
52: -- x_return_status
53: -- if the pick release process succeeds, the value is
54: -- fnd_api.g_ret_sts_success;
55: -- if there is an expected error, the value is
56: -- fnd_api.g_ret_sts_error;
57: -- if there is an unexpected error, the value is
58: -- fnd_api.g_ret_sts_unexp_error;

Line 56: -- fnd_api.g_ret_sts_error;

52: -- x_return_status
53: -- if the pick release process succeeds, the value is
54: -- fnd_api.g_ret_sts_success;
55: -- if there is an expected error, the value is
56: -- fnd_api.g_ret_sts_error;
57: -- if there is an unexpected error, the value is
58: -- fnd_api.g_ret_sts_unexp_error;
59: -- x_msg_count
60: -- if there is one or more errors, the number of error messages

Line 58: -- fnd_api.g_ret_sts_unexp_error;

54: -- fnd_api.g_ret_sts_success;
55: -- if there is an expected error, the value is
56: -- fnd_api.g_ret_sts_error;
57: -- if there is an unexpected error, the value is
58: -- fnd_api.g_ret_sts_unexp_error;
59: -- x_msg_count
60: -- if there is one or more errors, the number of error messages
61: -- in the buffer
62: -- x_msg_data

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

60: -- if there is one or more errors, the number of error messages
61: -- in the buffer
62: -- x_msg_data
63: -- if there is one and only one error, the error message
64: -- (See fnd_api package for more details about the above output parameters)
65:
66: PROCEDURE Location_Label
67: ( p_api_version IN NUMBER ,
68: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,

Line 68: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,

64: -- (See fnd_api package for more details about the above output parameters)
65:
66: PROCEDURE Location_Label
67: ( p_api_version IN NUMBER ,
68: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,
69: p_commit IN VARCHAR2 := fnd_api.g_false ,
70: x_return_status OUT VARCHAR2 ,
71: x_msg_count OUT NUMBER ,
72: x_msg_data OUT VARCHAR2 ,

Line 69: p_commit IN VARCHAR2 := fnd_api.g_false ,

65:
66: PROCEDURE Location_Label
67: ( p_api_version IN NUMBER ,
68: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,
69: p_commit IN VARCHAR2 := fnd_api.g_false ,
70: x_return_status OUT VARCHAR2 ,
71: x_msg_count OUT NUMBER ,
72: x_msg_data OUT VARCHAR2 ,
73: p_organization_id IN NUMBER ,

Line 74: p_zone_fr IN VARCHAR2 := fnd_api.g_miss_char ,

70: x_return_status OUT VARCHAR2 ,
71: x_msg_count OUT NUMBER ,
72: x_msg_data OUT VARCHAR2 ,
73: p_organization_id IN NUMBER ,
74: p_zone_fr IN VARCHAR2 := fnd_api.g_miss_char ,
75: p_zone_to IN VARCHAR2 := fnd_api.g_miss_char ,
76: p_location_fr IN VARCHAR2 := fnd_api.g_miss_char ,
77: p_location_to IN VARCHAR2 := fnd_api.g_miss_char ,
78: p_no_of_copies IN NUMBER := 1

Line 75: p_zone_to IN VARCHAR2 := fnd_api.g_miss_char ,

71: x_msg_count OUT NUMBER ,
72: x_msg_data OUT VARCHAR2 ,
73: p_organization_id IN NUMBER ,
74: p_zone_fr IN VARCHAR2 := fnd_api.g_miss_char ,
75: p_zone_to IN VARCHAR2 := fnd_api.g_miss_char ,
76: p_location_fr IN VARCHAR2 := fnd_api.g_miss_char ,
77: p_location_to IN VARCHAR2 := fnd_api.g_miss_char ,
78: p_no_of_copies IN NUMBER := 1
79: );

Line 76: p_location_fr IN VARCHAR2 := fnd_api.g_miss_char ,

72: x_msg_data OUT VARCHAR2 ,
73: p_organization_id IN NUMBER ,
74: p_zone_fr IN VARCHAR2 := fnd_api.g_miss_char ,
75: p_zone_to IN VARCHAR2 := fnd_api.g_miss_char ,
76: p_location_fr IN VARCHAR2 := fnd_api.g_miss_char ,
77: p_location_to IN VARCHAR2 := fnd_api.g_miss_char ,
78: p_no_of_copies IN NUMBER := 1
79: );
80: /*---------------------------------------------------------------------*/

Line 77: p_location_to IN VARCHAR2 := fnd_api.g_miss_char ,

73: p_organization_id IN NUMBER ,
74: p_zone_fr IN VARCHAR2 := fnd_api.g_miss_char ,
75: p_zone_to IN VARCHAR2 := fnd_api.g_miss_char ,
76: p_location_fr IN VARCHAR2 := fnd_api.g_miss_char ,
77: p_location_to IN VARCHAR2 := fnd_api.g_miss_char ,
78: p_no_of_copies IN NUMBER := 1
79: );
80: /*---------------------------------------------------------------------*/
81: -- Name

Line 91: -- p_init_msg_list (optional, default FND_API.G_FALSE)

87: --
88: -- Input Parameters
89: -- p_api_version
90: -- API version number (current version is 1.0)
91: -- p_init_msg_list (optional, default FND_API.G_FALSE)
92: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
93: -- if set to FND_API.G_TRUE
94: -- initialize error message list
95: -- if set to FND_API.G_FALSE - not initialize error

Line 92: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.

88: -- Input Parameters
89: -- p_api_version
90: -- API version number (current version is 1.0)
91: -- p_init_msg_list (optional, default FND_API.G_FALSE)
92: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
93: -- if set to FND_API.G_TRUE
94: -- initialize error message list
95: -- if set to FND_API.G_FALSE - not initialize error
96: -- message list

Line 93: -- if set to FND_API.G_TRUE

89: -- p_api_version
90: -- API version number (current version is 1.0)
91: -- p_init_msg_list (optional, default FND_API.G_FALSE)
92: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
93: -- if set to FND_API.G_TRUE
94: -- initialize error message list
95: -- if set to FND_API.G_FALSE - not initialize error
96: -- message list
97: -- p_commit (optional, default FND_API.G_FALSE)

Line 95: -- if set to FND_API.G_FALSE - not initialize error

91: -- p_init_msg_list (optional, default FND_API.G_FALSE)
92: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
93: -- if set to FND_API.G_TRUE
94: -- initialize error message list
95: -- if set to FND_API.G_FALSE - not initialize error
96: -- message list
97: -- p_commit (optional, default FND_API.G_FALSE)
98: -- whether or not to commit the changes to database
99: -- p_organization_id Organization Id - Required Value

Line 97: -- p_commit (optional, default FND_API.G_FALSE)

93: -- if set to FND_API.G_TRUE
94: -- initialize error message list
95: -- if set to FND_API.G_FALSE - not initialize error
96: -- message list
97: -- p_commit (optional, default FND_API.G_FALSE)
98: -- whether or not to commit the changes to database
99: -- p_organization_id Organization Id - Required Value
100: -- p_Zone_From Zone Range From
101: -- p_Zone_To Zone Range To

Line 116: -- fnd_api.g_ret_sts_success;

112: --
113: -- Output Parameters
114: -- x_return_status
115: -- if the pick release process succeeds, the value is
116: -- fnd_api.g_ret_sts_success;
117: -- if there is an expected error, the value is
118: -- fnd_api.g_ret_sts_error;
119: -- if there is an unexpected error, the value is
120: -- fnd_api.g_ret_sts_unexp_error;

Line 118: -- fnd_api.g_ret_sts_error;

114: -- x_return_status
115: -- if the pick release process succeeds, the value is
116: -- fnd_api.g_ret_sts_success;
117: -- if there is an expected error, the value is
118: -- fnd_api.g_ret_sts_error;
119: -- if there is an unexpected error, the value is
120: -- fnd_api.g_ret_sts_unexp_error;
121: -- x_msg_count
122: -- if there is one or more errors, the number of error messages

Line 120: -- fnd_api.g_ret_sts_unexp_error;

116: -- fnd_api.g_ret_sts_success;
117: -- if there is an expected error, the value is
118: -- fnd_api.g_ret_sts_error;
119: -- if there is an unexpected error, the value is
120: -- fnd_api.g_ret_sts_unexp_error;
121: -- x_msg_count
122: -- if there is one or more errors, the number of error messages
123: -- in the buffer
124: -- x_msg_data

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

122: -- if there is one or more errors, the number of error messages
123: -- in the buffer
124: -- x_msg_data
125: -- if there is one and only one error, the error message
126: -- (See fnd_api package for more details about the above output parameters)
127:
128: PROCEDURE Item_Label
129: ( p_api_version IN NUMBER ,
130: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,

Line 130: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,

126: -- (See fnd_api package for more details about the above output parameters)
127:
128: PROCEDURE Item_Label
129: ( p_api_version IN NUMBER ,
130: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,
131: p_commit IN VARCHAR2 := fnd_api.g_false ,
132: x_return_status OUT VARCHAR2 ,
133: x_msg_count OUT NUMBER ,
134: x_msg_data OUT VARCHAR2 ,

Line 131: p_commit IN VARCHAR2 := fnd_api.g_false ,

127:
128: PROCEDURE Item_Label
129: ( p_api_version IN NUMBER ,
130: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,
131: p_commit IN VARCHAR2 := fnd_api.g_false ,
132: x_return_status OUT VARCHAR2 ,
133: x_msg_count OUT NUMBER ,
134: x_msg_data OUT VARCHAR2 ,
135: p_organization_id IN NUMBER ,

Line 155: -- p_init_msg_list (optional, default FND_API.G_FALSE)

151: --
152: -- Input Parameters
153: -- p_api_version
154: -- API version number (current version is 1.0)
155: -- p_init_msg_list (optional, default FND_API.G_FALSE)
156: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
157: -- if set to FND_API.G_TRUE
158: -- initialize error message list
159: -- if set to FND_API.G_FALSE - not initialize error

Line 156: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.

152: -- Input Parameters
153: -- p_api_version
154: -- API version number (current version is 1.0)
155: -- p_init_msg_list (optional, default FND_API.G_FALSE)
156: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
157: -- if set to FND_API.G_TRUE
158: -- initialize error message list
159: -- if set to FND_API.G_FALSE - not initialize error
160: -- message list

Line 157: -- if set to FND_API.G_TRUE

153: -- p_api_version
154: -- API version number (current version is 1.0)
155: -- p_init_msg_list (optional, default FND_API.G_FALSE)
156: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
157: -- if set to FND_API.G_TRUE
158: -- initialize error message list
159: -- if set to FND_API.G_FALSE - not initialize error
160: -- message list
161: -- p_commit (optional, default FND_API.G_FALSE)

Line 159: -- if set to FND_API.G_FALSE - not initialize error

155: -- p_init_msg_list (optional, default FND_API.G_FALSE)
156: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
157: -- if set to FND_API.G_TRUE
158: -- initialize error message list
159: -- if set to FND_API.G_FALSE - not initialize error
160: -- message list
161: -- p_commit (optional, default FND_API.G_FALSE)
162: -- whether or not to commit the changes to database
163: -- p_organization_id Organization Id - Required Value

Line 161: -- p_commit (optional, default FND_API.G_FALSE)

157: -- if set to FND_API.G_TRUE
158: -- initialize error message list
159: -- if set to FND_API.G_FALSE - not initialize error
160: -- message list
161: -- p_commit (optional, default FND_API.G_FALSE)
162: -- whether or not to commit the changes to database
163: -- p_organization_id Organization Id - Required Value
164: -- p_Move_Order_Number Move Order Number
165: -- p_Zone_From Zone Range From

Line 179: -- fnd_api.g_ret_sts_success;

175: --
176: -- Output Parameters
177: -- x_return_status
178: -- if the pick release process succeeds, the value is
179: -- fnd_api.g_ret_sts_success;
180: -- if there is an expected error, the value is
181: -- fnd_api.g_ret_sts_error;
182: -- if there is an unexpected error, the value is
183: -- fnd_api.g_ret_sts_unexp_error;

Line 181: -- fnd_api.g_ret_sts_error;

177: -- x_return_status
178: -- if the pick release process succeeds, the value is
179: -- fnd_api.g_ret_sts_success;
180: -- if there is an expected error, the value is
181: -- fnd_api.g_ret_sts_error;
182: -- if there is an unexpected error, the value is
183: -- fnd_api.g_ret_sts_unexp_error;
184: -- x_msg_count
185: -- if there is one or more errors, the number of error messages

Line 183: -- fnd_api.g_ret_sts_unexp_error;

179: -- fnd_api.g_ret_sts_success;
180: -- if there is an expected error, the value is
181: -- fnd_api.g_ret_sts_error;
182: -- if there is an unexpected error, the value is
183: -- fnd_api.g_ret_sts_unexp_error;
184: -- x_msg_count
185: -- if there is one or more errors, the number of error messages
186: -- in the buffer
187: -- x_msg_data

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

185: -- if there is one or more errors, the number of error messages
186: -- in the buffer
187: -- x_msg_data
188: -- if there is one and only one error, the error message
189: -- (See fnd_api package for more details about the above output parameters)
190:
191: PROCEDURE Material_Movement_Label
192: ( p_api_version IN NUMBER ,
193: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,

Line 193: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,

189: -- (See fnd_api package for more details about the above output parameters)
190:
191: PROCEDURE Material_Movement_Label
192: ( p_api_version IN NUMBER ,
193: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,
194: p_commit IN VARCHAR2 := fnd_api.g_false ,
195: x_return_status OUT VARCHAR2 ,
196: x_msg_count OUT NUMBER ,
197: x_msg_data OUT VARCHAR2 ,

Line 194: p_commit IN VARCHAR2 := fnd_api.g_false ,

190:
191: PROCEDURE Material_Movement_Label
192: ( p_api_version IN NUMBER ,
193: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,
194: p_commit IN VARCHAR2 := fnd_api.g_false ,
195: x_return_status OUT VARCHAR2 ,
196: x_msg_count OUT NUMBER ,
197: x_msg_data OUT VARCHAR2 ,
198: p_organization_id IN NUMBER ,

Line 218: -- p_init_msg_list (optional, default FND_API.G_FALSE)

214: --
215: -- Input Parameters
216: -- p_api_version
217: -- API version number (current version is 1.0)
218: -- p_init_msg_list (optional, default FND_API.G_FALSE)
219: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
220: -- if set to FND_API.G_TRUE
221: -- initialize error message list
222: -- if set to FND_API.G_FALSE - not initialize error

Line 219: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.

215: -- Input Parameters
216: -- p_api_version
217: -- API version number (current version is 1.0)
218: -- p_init_msg_list (optional, default FND_API.G_FALSE)
219: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
220: -- if set to FND_API.G_TRUE
221: -- initialize error message list
222: -- if set to FND_API.G_FALSE - not initialize error
223: -- message list

Line 220: -- if set to FND_API.G_TRUE

216: -- p_api_version
217: -- API version number (current version is 1.0)
218: -- p_init_msg_list (optional, default FND_API.G_FALSE)
219: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
220: -- if set to FND_API.G_TRUE
221: -- initialize error message list
222: -- if set to FND_API.G_FALSE - not initialize error
223: -- message list
224: -- p_commit (optional, default FND_API.G_FALSE)

Line 222: -- if set to FND_API.G_FALSE - not initialize error

218: -- p_init_msg_list (optional, default FND_API.G_FALSE)
219: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
220: -- if set to FND_API.G_TRUE
221: -- initialize error message list
222: -- if set to FND_API.G_FALSE - not initialize error
223: -- message list
224: -- p_commit (optional, default FND_API.G_FALSE)
225: -- whether or not to commit the changes to database
226: -- p_organization_id Organization Id - Required Value

Line 224: -- p_commit (optional, default FND_API.G_FALSE)

220: -- if set to FND_API.G_TRUE
221: -- initialize error message list
222: -- if set to FND_API.G_FALSE - not initialize error
223: -- message list
224: -- p_commit (optional, default FND_API.G_FALSE)
225: -- whether or not to commit the changes to database
226: -- p_organization_id Organization Id - Required Value
227: -- p_Move_Order_Number Move Order Number
228: -- p_Zone_From Zone Range From

Line 244: -- fnd_api.g_ret_sts_success;

240: --
241: -- Output Parameters
242: -- x_return_status
243: -- if the pick release process succeeds, the value is
244: -- fnd_api.g_ret_sts_success;
245: -- if there is an expected error, the value is
246: -- fnd_api.g_ret_sts_error;
247: -- if there is an unexpected error, the value is
248: -- fnd_api.g_ret_sts_unexp_error;

Line 246: -- fnd_api.g_ret_sts_error;

242: -- x_return_status
243: -- if the pick release process succeeds, the value is
244: -- fnd_api.g_ret_sts_success;
245: -- if there is an expected error, the value is
246: -- fnd_api.g_ret_sts_error;
247: -- if there is an unexpected error, the value is
248: -- fnd_api.g_ret_sts_unexp_error;
249: -- x_msg_count
250: -- if there is one or more errors, the number of error messages

Line 248: -- fnd_api.g_ret_sts_unexp_error;

244: -- fnd_api.g_ret_sts_success;
245: -- if there is an expected error, the value is
246: -- fnd_api.g_ret_sts_error;
247: -- if there is an unexpected error, the value is
248: -- fnd_api.g_ret_sts_unexp_error;
249: -- x_msg_count
250: -- if there is one or more errors, the number of error messages
251: -- in the buffer
252: -- x_msg_data

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

250: -- if there is one or more errors, the number of error messages
251: -- in the buffer
252: -- x_msg_data
253: -- if there is one and only one error, the error message
254: -- (See fnd_api package for more details about the above output parameters)
255:
256: PROCEDURE Palette_Label
257: ( p_api_version IN NUMBER ,
258: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,

Line 258: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,

254: -- (See fnd_api package for more details about the above output parameters)
255:
256: PROCEDURE Palette_Label
257: ( p_api_version IN NUMBER ,
258: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,
259: p_commit IN VARCHAR2 := fnd_api.g_false ,
260: x_return_status OUT VARCHAR2 ,
261: x_msg_count OUT NUMBER ,
262: x_msg_data OUT VARCHAR2 ,

Line 259: p_commit IN VARCHAR2 := fnd_api.g_false ,

255:
256: PROCEDURE Palette_Label
257: ( p_api_version IN NUMBER ,
258: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,
259: p_commit IN VARCHAR2 := fnd_api.g_false ,
260: x_return_status OUT VARCHAR2 ,
261: x_msg_count OUT NUMBER ,
262: x_msg_data OUT VARCHAR2 ,
263: p_organization_id IN NUMBER ,

Line 285: -- p_init_msg_list (optional, default FND_API.G_FALSE)

281: --
282: -- Input Parameters
283: -- p_api_version
284: -- API version number (current version is 1.0)
285: -- p_init_msg_list (optional, default FND_API.G_FALSE)
286: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
287: -- if set to FND_API.G_TRUE
288: -- initialize error message list
289: -- if set to FND_API.G_FALSE - not initialize error

Line 286: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.

282: -- Input Parameters
283: -- p_api_version
284: -- API version number (current version is 1.0)
285: -- p_init_msg_list (optional, default FND_API.G_FALSE)
286: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
287: -- if set to FND_API.G_TRUE
288: -- initialize error message list
289: -- if set to FND_API.G_FALSE - not initialize error
290: -- message list

Line 287: -- if set to FND_API.G_TRUE

283: -- p_api_version
284: -- API version number (current version is 1.0)
285: -- p_init_msg_list (optional, default FND_API.G_FALSE)
286: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
287: -- if set to FND_API.G_TRUE
288: -- initialize error message list
289: -- if set to FND_API.G_FALSE - not initialize error
290: -- message list
291: -- p_commit (optional, default FND_API.G_FALSE)

Line 289: -- if set to FND_API.G_FALSE - not initialize error

285: -- p_init_msg_list (optional, default FND_API.G_FALSE)
286: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
287: -- if set to FND_API.G_TRUE
288: -- initialize error message list
289: -- if set to FND_API.G_FALSE - not initialize error
290: -- message list
291: -- p_commit (optional, default FND_API.G_FALSE)
292: -- whether or not to commit the changes to database
293: -- p_kanban_card_id_fr Kanban Card Id Range from

Line 291: -- p_commit (optional, default FND_API.G_FALSE)

287: -- if set to FND_API.G_TRUE
288: -- initialize error message list
289: -- if set to FND_API.G_FALSE - not initialize error
290: -- message list
291: -- p_commit (optional, default FND_API.G_FALSE)
292: -- whether or not to commit the changes to database
293: -- p_kanban_card_id_fr Kanban Card Id Range from
294: -- p_kanban_card_id_to Kanban Card Id Range To
295: -- p_no_of_copies Number of copies of dupliate label

Line 301: -- fnd_api.g_ret_sts_success;

297: --
298: -- Output Parameters
299: -- x_return_status
300: -- if the pick release process succeeds, the value is
301: -- fnd_api.g_ret_sts_success;
302: -- if there is an expected error, the value is
303: -- fnd_api.g_ret_sts_error;
304: -- if there is an unexpected error, the value is
305: -- fnd_api.g_ret_sts_unexp_error;

Line 303: -- fnd_api.g_ret_sts_error;

299: -- x_return_status
300: -- if the pick release process succeeds, the value is
301: -- fnd_api.g_ret_sts_success;
302: -- if there is an expected error, the value is
303: -- fnd_api.g_ret_sts_error;
304: -- if there is an unexpected error, the value is
305: -- fnd_api.g_ret_sts_unexp_error;
306: -- x_msg_count
307: -- if there is one or more errors, the number of error messages

Line 305: -- fnd_api.g_ret_sts_unexp_error;

301: -- fnd_api.g_ret_sts_success;
302: -- if there is an expected error, the value is
303: -- fnd_api.g_ret_sts_error;
304: -- if there is an unexpected error, the value is
305: -- fnd_api.g_ret_sts_unexp_error;
306: -- x_msg_count
307: -- if there is one or more errors, the number of error messages
308: -- in the buffer
309: -- x_msg_data

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

307: -- if there is one or more errors, the number of error messages
308: -- in the buffer
309: -- x_msg_data
310: -- if there is one and only one error, the error message
311: -- (See fnd_api package for more details about the above output parameters)
312:
313: PROCEDURE Kanban_Card_Label
314: ( p_api_version IN NUMBER ,
315: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,

Line 315: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,

311: -- (See fnd_api package for more details about the above output parameters)
312:
313: PROCEDURE Kanban_Card_Label
314: ( p_api_version IN NUMBER ,
315: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,
316: p_commit IN VARCHAR2 := fnd_api.g_false ,
317: x_return_status OUT VARCHAR2 ,
318: x_msg_count OUT NUMBER ,
319: x_msg_data OUT VARCHAR2 ,

Line 316: p_commit IN VARCHAR2 := fnd_api.g_false ,

312:
313: PROCEDURE Kanban_Card_Label
314: ( p_api_version IN NUMBER ,
315: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,
316: p_commit IN VARCHAR2 := fnd_api.g_false ,
317: x_return_status OUT VARCHAR2 ,
318: x_msg_count OUT NUMBER ,
319: x_msg_data OUT VARCHAR2 ,
320: p_kanban_card_id_fr IN NUMBER ,

Line 335: -- p_init_msg_list (optional, default FND_API.G_FALSE)

331: --
332: -- Input Parameters
333: -- p_api_version
334: -- API version number (current version is 1.0)
335: -- p_init_msg_list (optional, default FND_API.G_FALSE)
336: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
337: -- if set to FND_API.G_TRUE
338: -- initialize error message list
339: -- if set to FND_API.G_FALSE - not initialize error

Line 336: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.

332: -- Input Parameters
333: -- p_api_version
334: -- API version number (current version is 1.0)
335: -- p_init_msg_list (optional, default FND_API.G_FALSE)
336: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
337: -- if set to FND_API.G_TRUE
338: -- initialize error message list
339: -- if set to FND_API.G_FALSE - not initialize error
340: -- message list

Line 337: -- if set to FND_API.G_TRUE

333: -- p_api_version
334: -- API version number (current version is 1.0)
335: -- p_init_msg_list (optional, default FND_API.G_FALSE)
336: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
337: -- if set to FND_API.G_TRUE
338: -- initialize error message list
339: -- if set to FND_API.G_FALSE - not initialize error
340: -- message list
341: -- p_commit (optional, default FND_API.G_FALSE)

Line 339: -- if set to FND_API.G_FALSE - not initialize error

335: -- p_init_msg_list (optional, default FND_API.G_FALSE)
336: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
337: -- if set to FND_API.G_TRUE
338: -- initialize error message list
339: -- if set to FND_API.G_FALSE - not initialize error
340: -- message list
341: -- p_commit (optional, default FND_API.G_FALSE)
342: -- whether or not to commit the changes to database
343: -- p_lpn_fr LPN Range from

Line 341: -- p_commit (optional, default FND_API.G_FALSE)

337: -- if set to FND_API.G_TRUE
338: -- initialize error message list
339: -- if set to FND_API.G_FALSE - not initialize error
340: -- message list
341: -- p_commit (optional, default FND_API.G_FALSE)
342: -- whether or not to commit the changes to database
343: -- p_lpn_fr LPN Range from
344: -- p_lpn_to LPN Range To
345: -- p_customer_id Customer ID

Line 354: -- fnd_api.g_ret_sts_success;

350: --
351: -- Output Parameters
352: -- x_return_status
353: -- if the pick release process succeeds, the value is
354: -- fnd_api.g_ret_sts_success;
355: -- if there is an expected error, the value is
356: -- fnd_api.g_ret_sts_error;
357: -- if there is an unexpected error, the value is
358: -- fnd_api.g_ret_sts_unexp_error;

Line 356: -- fnd_api.g_ret_sts_error;

352: -- x_return_status
353: -- if the pick release process succeeds, the value is
354: -- fnd_api.g_ret_sts_success;
355: -- if there is an expected error, the value is
356: -- fnd_api.g_ret_sts_error;
357: -- if there is an unexpected error, the value is
358: -- fnd_api.g_ret_sts_unexp_error;
359: -- x_msg_count
360: -- if there is one or more errors, the number of error messages

Line 358: -- fnd_api.g_ret_sts_unexp_error;

354: -- fnd_api.g_ret_sts_success;
355: -- if there is an expected error, the value is
356: -- fnd_api.g_ret_sts_error;
357: -- if there is an unexpected error, the value is
358: -- fnd_api.g_ret_sts_unexp_error;
359: -- x_msg_count
360: -- if there is one or more errors, the number of error messages
361: -- in the buffer
362: -- x_msg_data

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

360: -- if there is one or more errors, the number of error messages
361: -- in the buffer
362: -- x_msg_data
363: -- if there is one and only one error, the error message
364: -- (See fnd_api package for more details about the above output parameters)
365:
366: PROCEDURE LPN_Label
367: ( p_api_version IN NUMBER ,
368: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,

Line 368: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,

364: -- (See fnd_api package for more details about the above output parameters)
365:
366: PROCEDURE LPN_Label
367: ( p_api_version IN NUMBER ,
368: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,
369: p_commit IN VARCHAR2 := fnd_api.g_false ,
370: x_return_status OUT VARCHAR2 ,
371: x_msg_count OUT NUMBER ,
372: x_msg_data OUT VARCHAR2 ,

Line 369: p_commit IN VARCHAR2 := fnd_api.g_false ,

365:
366: PROCEDURE LPN_Label
367: ( p_api_version IN NUMBER ,
368: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,
369: p_commit IN VARCHAR2 := fnd_api.g_false ,
370: x_return_status OUT VARCHAR2 ,
371: x_msg_count OUT NUMBER ,
372: x_msg_data OUT VARCHAR2 ,
373: p_lpn_fr IN VARCHAR2 ,

Line 392: -- p_init_msg_list (optional, default FND_API.G_FALSE)

388: --
389: -- Input Parameters
390: -- p_api_version
391: -- API version number (current version is 1.0)
392: -- p_init_msg_list (optional, default FND_API.G_FALSE)
393: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
394: -- if set to FND_API.G_TRUE
395: -- initialize error message list
396: -- if set to FND_API.G_FALSE - not initialize error

Line 393: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.

389: -- Input Parameters
390: -- p_api_version
391: -- API version number (current version is 1.0)
392: -- p_init_msg_list (optional, default FND_API.G_FALSE)
393: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
394: -- if set to FND_API.G_TRUE
395: -- initialize error message list
396: -- if set to FND_API.G_FALSE - not initialize error
397: -- message list

Line 394: -- if set to FND_API.G_TRUE

390: -- p_api_version
391: -- API version number (current version is 1.0)
392: -- p_init_msg_list (optional, default FND_API.G_FALSE)
393: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
394: -- if set to FND_API.G_TRUE
395: -- initialize error message list
396: -- if set to FND_API.G_FALSE - not initialize error
397: -- message list
398: -- p_commit (optional, default FND_API.G_FALSE)

Line 396: -- if set to FND_API.G_FALSE - not initialize error

392: -- p_init_msg_list (optional, default FND_API.G_FALSE)
393: -- Valid values: FND_API.G_FALSE or FND_API.G_TRUE.
394: -- if set to FND_API.G_TRUE
395: -- initialize error message list
396: -- if set to FND_API.G_FALSE - not initialize error
397: -- message list
398: -- p_commit (optional, default FND_API.G_FALSE)
399: -- whether or not to commit the changes to database
400: -- p_organization_id Organization Id - Required Value

Line 398: -- p_commit (optional, default FND_API.G_FALSE)

394: -- if set to FND_API.G_TRUE
395: -- initialize error message list
396: -- if set to FND_API.G_FALSE - not initialize error
397: -- message list
398: -- p_commit (optional, default FND_API.G_FALSE)
399: -- whether or not to commit the changes to database
400: -- p_organization_id Organization Id - Required Value
401: -- p_Move_Order_Number Move Order Number
402: -- p_Zone_From Zone Range From

Line 418: -- fnd_api.g_ret_sts_success;

414: --
415: -- Output Parameters
416: -- x_return_status
417: -- if the pick release process succeeds, the value is
418: -- fnd_api.g_ret_sts_success;
419: -- if there is an expected error, the value is
420: -- fnd_api.g_ret_sts_error;
421: -- if there is an unexpected error, the value is
422: -- fnd_api.g_ret_sts_unexp_error;

Line 420: -- fnd_api.g_ret_sts_error;

416: -- x_return_status
417: -- if the pick release process succeeds, the value is
418: -- fnd_api.g_ret_sts_success;
419: -- if there is an expected error, the value is
420: -- fnd_api.g_ret_sts_error;
421: -- if there is an unexpected error, the value is
422: -- fnd_api.g_ret_sts_unexp_error;
423: -- x_msg_count
424: -- if there is one or more errors, the number of error messages

Line 422: -- fnd_api.g_ret_sts_unexp_error;

418: -- fnd_api.g_ret_sts_success;
419: -- if there is an expected error, the value is
420: -- fnd_api.g_ret_sts_error;
421: -- if there is an unexpected error, the value is
422: -- fnd_api.g_ret_sts_unexp_error;
423: -- x_msg_count
424: -- if there is one or more errors, the number of error messages
425: -- in the buffer
426: -- x_msg_data

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

424: -- if there is one or more errors, the number of error messages
425: -- in the buffer
426: -- x_msg_data
427: -- if there is one and only one error, the error message
428: -- (See fnd_api package for more details about the above output parameters)
429:
430: PROCEDURE Shipping_Label
431: ( p_api_version IN NUMBER ,
432: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,

Line 432: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,

428: -- (See fnd_api package for more details about the above output parameters)
429:
430: PROCEDURE Shipping_Label
431: ( p_api_version IN NUMBER ,
432: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,
433: p_commit IN VARCHAR2 := fnd_api.g_false ,
434: x_return_status OUT VARCHAR2 ,
435: x_msg_count OUT NUMBER ,
436: x_msg_data OUT VARCHAR2 ,

Line 433: p_commit IN VARCHAR2 := fnd_api.g_false ,

429:
430: PROCEDURE Shipping_Label
431: ( p_api_version IN NUMBER ,
432: p_init_msg_list IN VARCHAR2 := fnd_api.g_false ,
433: p_commit IN VARCHAR2 := fnd_api.g_false ,
434: x_return_status OUT VARCHAR2 ,
435: x_msg_count OUT NUMBER ,
436: x_msg_data OUT VARCHAR2 ,
437: p_organization_id IN NUMBER ,