Error received when attempting to process inventory adjustment in Inventory Adjustment Operations screen.During 'process inventory adjustment', system checks for confirmation that destination load number and associated subnum are permanent. If invlod prmflg fields are not set, system ERROR 10016 occurs, preventing completion of inventory adjustment.
Resolution
Perform the following from Server Command Operations.
1. Check permanent flag on your load and sub numbers. Enter your location and warehouse ID (wh_id).
For Example:
[select s.lodnum,l.prmflg, s.subnum, s.prmflg from invlod l, invsub s where l.stoloc = 'PERM-ADJ-LOC' and l.wh_id = '1918' and s.lodnum = l.lodnum ]
PERM-ADJ-LOD-1918 Unchecked PERM-ADJ-SUB-1918 Checked
2. Above shows invlod.prmflg is unchecked.
3. Set the permanent flag on the inventory load and sub records, by updating the invlod.prmflg = '1' and/or the
invsub.prmflg = '1'. This will allow inventory adjustments to be processed.
For example:
[update invlod set prmflg = '1' where lodnum = 'PERM-ADJ-LOD-1918']
OR
[update invsub set prmflg = '1' where subnum = 'PERM-ADJ-SUB-1918']
4. Retry inventory adjustment.
Regards,
Rachel Gomez