DBA Data[Home] [Help]

APPS.EAM_WO_COMP_UTILITY_PVT dependencies on WIP_CONSTANTS

Line 362: i_transaction_action_id := WIP_CONSTANTS.CPLASSY_ACTION;

358: i_primary_quantity := i_transaction_quantity;
359:
360: -- prepare the rest data
361: if(s_transaction_type = 1) then -- Complete Transaction
362: i_transaction_action_id := WIP_CONSTANTS.CPLASSY_ACTION;
363: i_transaction_type_id := WIP_CONSTANTS.CPLASSY_TYPE;
364: elsif(s_transaction_type = 2) then -- Uncomplete Transaction
365: i_transaction_quantity := - i_transaction_quantity;
366: i_primary_quantity := - i_primary_quantity;

Line 363: i_transaction_type_id := WIP_CONSTANTS.CPLASSY_TYPE;

359:
360: -- prepare the rest data
361: if(s_transaction_type = 1) then -- Complete Transaction
362: i_transaction_action_id := WIP_CONSTANTS.CPLASSY_ACTION;
363: i_transaction_type_id := WIP_CONSTANTS.CPLASSY_TYPE;
364: elsif(s_transaction_type = 2) then -- Uncomplete Transaction
365: i_transaction_quantity := - i_transaction_quantity;
366: i_primary_quantity := - i_primary_quantity;
367: i_transaction_action_id := WIP_CONSTANTS.RETASSY_ACTION;

Line 367: i_transaction_action_id := WIP_CONSTANTS.RETASSY_ACTION;

363: i_transaction_type_id := WIP_CONSTANTS.CPLASSY_TYPE;
364: elsif(s_transaction_type = 2) then -- Uncomplete Transaction
365: i_transaction_quantity := - i_transaction_quantity;
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;

Line 368: i_transaction_type_id := WIP_CONSTANTS.RETASSY_TYPE;

364: elsif(s_transaction_type = 2) then -- Uncomplete Transaction
365: i_transaction_quantity := - i_transaction_quantity;
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;

Line 422: if(item.lotControlCode = WIP_CONSTANTS.LOT) then

418: end if;
419:
420: -- Check whether the item is under lot or serial control or not
421: -- If it is, insert the data to coresponding tables
422: if(item.lotControlCode = WIP_CONSTANTS.LOT) then
423:
424: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN
425: EAM_ERROR_MESSAGE_PVT.Write_Debug('EAM_WO_COMP_UTILITY_PVT.process_lot_serial : before inv_trx_util_pub.insert_lot_trx');
426: END IF;

Line 454: if(item.serialNumberControlCode in (WIP_CONSTANTS.FULL_SN,

450: null;
451: end if; -- end lot control check
452:
453: -- Check if the item is under serial control or not
454: if(item.serialNumberControlCode in (WIP_CONSTANTS.FULL_SN,
455: WIP_CONSTANTS.DYN_RCV_SN)) then
456: -- item is under serial control
457:
458: -- Check if the item is under lot control or not

Line 455: WIP_CONSTANTS.DYN_RCV_SN)) then

451: end if; -- end lot control check
452:
453: -- Check if the item is under serial control or not
454: if(item.serialNumberControlCode in (WIP_CONSTANTS.FULL_SN,
455: WIP_CONSTANTS.DYN_RCV_SN)) then
456: -- item is under serial control
457:
458: -- Check if the item is under lot control or not
459: if(item.lotControlCode = WIP_CONSTANTS.LOT) then

Line 459: if(item.lotControlCode = WIP_CONSTANTS.LOT) then

455: WIP_CONSTANTS.DYN_RCV_SN)) then
456: -- item is under serial control
457:
458: -- Check if the item is under lot control or not
459: if(item.lotControlCode = WIP_CONSTANTS.LOT) then
460:
461: -- under lot control
462: i_transaction_temp_id_s := i_serial_transaction_temp_id;
463: else