Any experience with purging old orphan records in Mtl_Serial_Numbers_Interface?
We have a lot of old orphan records in INV.MTL_SERIAL_NUMBERS_INTERFACE and we want to purge them.
My question is: how to recognize the bad records (to purge) from the good records (to keep).
More details
select * from inv.mtl_serial_numbers_interface MSNI
where transaction_interface_id not in
(select MTI.transaction_interface_id from mtl_transactions_interface MTI)
The above select returns some 160 000 records.
- May I purge all of them?
- Or are there any valid situations for serial number records to appear in MSNI without any parent record in the MTI table?
Thanks