DBA Data[Home] [Help]

APPS.GMI_MOVE_ORDER_LINES_PVT dependencies on FND_MSG_PUB

Line 140: FND_MSG_PUB.Initialize;

136:
137: /* Initialize message list if p_int_msg_lst is set TRUE. */
138: IF FND_API.to_boolean(p_init_msg_lst)
139: THEN
140: FND_MSG_PUB.Initialize;
141: END IF;
142: /* Initialize API return status to sucess */
143:
144: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 295: FND_MSG_PUB.Add;

291: GMI_reservation_Util.PrintLn('Error returned by balance_default_lot in Process_Move_Order_LINES');
292: FND_MESSAGE.Set_Name('GMI','GMI_ERROR');
293: FND_MESSAGE.Set_Token('BY_PROC', 'GMI_TRANS_ENGINE_PUB.UPDATE_PENDING_TRANSACTION');
294: FND_MESSAGE.Set_Token('WHERE', 'Delete_Reservation');
295: FND_MSG_PUB.Add;
296: RAISE FND_API.G_EXC_ERROR;
297: END IF;
298: END IF;
299: END IF;

Line 316: /* FND_MSG_PUB.Add; */

312:
313: WSH_Util_Core.PrintLn('Count MOL Table => '|| x_mo_line_tbl.COUNT);
314:
315: /* FND_MESSAGE.Set_Name('GMI','Entering_GMI_Create_Move_Order_LINES'); */
316: /* FND_MSG_PUB.Add; */
317: /* RAISE FND_API.G_EXC_ERROR; */
318:
319: EXCEPTION
320: WHEN fnd_api.g_exc_error THEN

Line 324: FND_MSG_PUB.count_and_get

320: WHEN fnd_api.g_exc_error THEN
321: x_return_status := fnd_api.g_ret_sts_error;
322:
323: /* Get message count and data */
324: FND_MSG_PUB.count_and_get
325: ( p_count => x_msg_count
326: , p_data => x_msg_data
327: );
328:

Line 332: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME

328:
329: WHEN OTHERS THEN
330: x_return_status := fnd_api.g_ret_sts_error;
331:
332: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME
333: , l_api_name
334: );
335:
336:

Line 338: FND_MSG_PUB.count_and_get

334: );
335:
336:
337: /* Get message count and data */
338: FND_MSG_PUB.count_and_get
339: ( p_count => x_msg_count
340: , p_data => x_msg_data
341: );
342: