DBA Data[Home] [Help]

APPS.WIP_EAM_TRANSACTIONS_PVT dependencies on WIP_CONSTANTS

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

127:
128: -- Check whether the item is under lot or serial control or not
129: -- If it is, insert the data to coresponding tables
130:
131: if(item.lotControlCode = WIP_CONSTANTS.LOT) then
132: -- the item is under lot control
133:
134: -- call inventory API to insert data to mtl_transaction_lots_temp
135: -- the spec file is INVTRXUS.pls

Line 158: if(item.serialNumberControlCode in (WIP_CONSTANTS.FULL_SN, WIP_CONSTANTS.DYN_RCV_SN)) then

154:
155: end if; -- end lot control check
156:
157: -- Check if the item is under serial control or not
158: if(item.serialNumberControlCode in (WIP_CONSTANTS.FULL_SN, WIP_CONSTANTS.DYN_RCV_SN)) then
159: -- item is under serial control
160:
161: -- Check if the item is under lot control or not
162: if(item.lotControlCode = WIP_CONSTANTS.LOT) then

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

158: if(item.serialNumberControlCode in (WIP_CONSTANTS.FULL_SN, WIP_CONSTANTS.DYN_RCV_SN)) then
159: -- item is under serial control
160:
161: -- Check if the item is under lot control or not
162: if(item.lotControlCode = WIP_CONSTANTS.LOT) then
163: -- under lot control
164: l_transaction_temp_id_s := l_serial_transaction_temp_id;
165:
166: else