DBA Data[Home] [Help]

APPS.EAM_WO_COMP_UTILITY_PVT dependencies on FND_MESSAGE

Line 302: fnd_message.set_name ('EAM', 'EAM_ITEM_DOES_NOT_EXIST');

298:
299: -- get the item info
300: item := wma_derive.getItem(s_rebuild_item_id, s_org_id, s_locator_id);
301: if (item.invItemID is null) then
302: fnd_message.set_name ('EAM', 'EAM_ITEM_DOES_NOT_EXIST');
303: errCode := 1;
304: errMsg := fnd_message.get;
305: return;
306: end if; -- end item info check

Line 304: errMsg := fnd_message.get;

300: item := wma_derive.getItem(s_rebuild_item_id, s_org_id, s_locator_id);
301: if (item.invItemID is null) then
302: fnd_message.set_name ('EAM', 'EAM_ITEM_DOES_NOT_EXIST');
303: errCode := 1;
304: errMsg := fnd_message.get;
305: return;
306: end if; -- end item info check
307:
308: begin

Line 350: fnd_message.set_name('EAM', 'EAM_NEGATIVE_TXN_QUANTITY');

346:
347: FOR i IN 1..s_lot_serial_tbl.COUNT LOOP
348: IF s_lot_serial_tbl(i).quantity is null or s_lot_serial_tbl(i).quantity < 1 THEN
349: errCode := 1;
350: fnd_message.set_name('EAM', 'EAM_NEGATIVE_TXN_QUANTITY');
351: errMsg := fnd_message.get;
352:
353: return;
354: ELSE

Line 351: errMsg := fnd_message.get;

347: FOR i IN 1..s_lot_serial_tbl.COUNT LOOP
348: IF s_lot_serial_tbl(i).quantity is null or s_lot_serial_tbl(i).quantity < 1 THEN
349: errCode := 1;
350: fnd_message.set_name('EAM', 'EAM_NEGATIVE_TXN_QUANTITY');
351: errMsg := fnd_message.get;
352:
353: return;
354: ELSE
355: i_transaction_quantity := i_transaction_quantity + s_lot_serial_tbl(i).quantity;

Line 370: fnd_message.set_name('EAM','EAM_INVALID_TRANSACTION_TYPE');

366: i_primary_quantity := - i_primary_quantity;
367: i_transaction_action_id := WIP_CONSTANTS.RETASSY_ACTION;
368: i_transaction_type_id := WIP_CONSTANTS.RETASSY_TYPE;
369: else
370: fnd_message.set_name('EAM','EAM_INVALID_TRANSACTION_TYPE');
371: errCode := 1;
372: errMsg := fnd_message.get;
373: return;
374: end if; -- end prepare data

Line 372: errMsg := fnd_message.get;

368: i_transaction_type_id := WIP_CONSTANTS.RETASSY_TYPE;
369: else
370: fnd_message.set_name('EAM','EAM_INVALID_TRANSACTION_TYPE');
371: errCode := 1;
372: errMsg := fnd_message.get;
373: return;
374: end if; -- end prepare data
375:
376: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN