DBA Data[Home] [Help]

APPS.GMI_PICK_RELEASE_PUB dependencies on FND_MSG_PUB

Line 129: FND_MSG_PUB.initialize;

125: END IF;
126:
127: /* Initialize message list if p_init_msg_list is set to true */
128: IF FND_API.to_Boolean(p_init_msg_lst) THEN
129: FND_MSG_PUB.initialize;
130: END IF;
131: /* =====================================================================
132: Validate parameters
133: =====================================================================

Line 144: FND_MSG_PUB.Add;

140: THEN
141: GMI_Reservation_Util.PrintLn('GMI_Pick_Release_PUB, Validation Error count=0');
142: ROLLBACK TO Pick_Release_PUB;
143: FND_MESSAGE.SET_NAME('INV','INV_NO_LINES_TO_PICK');
144: FND_MSG_PUB.Add;
145: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
146: END IF;
147:
148: /* Validate that all move order lines are from the same org, that all lines

Line 161: FND_MSG_PUB.Add;

157: /* Verify that the lines are all for the same organization */
158: IF l_mo_line.organization_id <> l_organization_id THEN
159: GMI_Reservation_Util.PrintLn('GMI_Pick_Release_PUB, In loop Error pick_different_org');
160: FND_MESSAGE.SET_NAME('GMI','INV_PICK_DIFFERENT_ORG');
161: FND_MSG_PUB.Add;
162: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
163: END IF;
164:
165: /* Verify that the line status is approved or pre-approved */

Line 169: FND_MSG_PUB.Add;

165: /* Verify that the line status is approved or pre-approved */
166: IF (l_mo_line.line_status <> 3 AND l_mo_line.line_status <> 7) THEN
167: GMI_Reservation_Util.PrintLn('GMI_Pick_Release_PUB, In loop Error Pick_line_Status');
168: FND_MESSAGE.SET_NAME('GMI','INV_PICK_LINE_STATUS');
169: FND_MSG_PUB.Add;
170: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
171: END IF;
172:
173: /* Verify that the move order type is Pick Wave (3) */

Line 260: FND_MSG_PUB.Add;

256: */
257: x_pick_release_status.delete;
258: ROLLBACK TO Pick_Release_PUB;
259: FND_MESSAGE.SET_NAME('INV','INV_COULD_NOT_PICK_FULL');
260: FND_MSG_PUB.Add;
261: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
262: END IF;
263:
264: /* HW BUG#:1941429 code for cross_docking */

Line 285: FND_MSG_PUB.count_and_get

281: EXCEPTION
282: WHEN no_data_found THEN
283: ROLLBACK TO SAVEPOINT Pick_Release_PUB;
284: x_return_status := FND_API.G_RET_STS_ERROR;
285: FND_MSG_PUB.count_and_get
286: ( p_count => x_msg_count
287: , p_data => x_msg_data
288: );
289: END ;

Line 306: FND_MSG_PUB.Add;

302: GMI_Reservation_Util.Println('No Shipping data found in Auto_detail',
303: 'Inv_Pick_Release_Pub.Pick_Release');
304: ROLLBACK TO SAVEPOINT Pick_Release_PUB;
305: FND_MESSAGE.SET_NAME('INV','INV_DELIV_INFO_MISSING');
306: FND_MSG_PUB.Add;
307: RAISE fnd_api.g_exc_unexpected_error;
308: END;
309:
310: gmi_reservation_util.println('Value of l_quantity from WDD '||l_quantity);

Line 357: FND_MSG_PUB.Add;

353: GMI_Reservation_Util.Println('No Shipping data found in Auto_detail',
354: 'Inv_Pick_Release_Pub.Pick_Release');
355: ROLLBACK TO SAVEPOINT Pick_Release_PUB;
356: FND_MESSAGE.SET_NAME('INV','INV_DELIV_INFO_MISSING');
357: FND_MSG_PUB.Add;
358: RAISE fnd_api.g_exc_unexpected_error;
359: END;
360: gmi_reservation_util.println('In Auto_detail going to call update_shipping');
361: --Call Update_Shipping_Attributes to backorder detail line

Line 429: FND_MSG_PUB.count_and_get

425:
426: x_return_status := FND_API.G_RET_STS_ERROR;
427:
428: /* Get message count and data */
429: FND_MSG_PUB.count_and_get
430: ( p_count => x_msg_count
431: , p_data => x_msg_data
432: );
433:

Line 440: FND_MSG_PUB.count_and_get

436: ROLLBACK TO SAVEPOINT Pick_Release_PUB;
437: x_return_status := FND_API.G_RET_STS_ERROR;
438:
439: /* Get message count and data */
440: FND_MSG_PUB.count_and_get
441: ( p_count => x_msg_count
442: , p_data => x_msg_data
443: );
444: