How to remove transformable sellable as option from itemfind screen
When creating new items, there is a drop down on the itemfind screen that includes the item type to be created.
For many retailer such as fashion retailers, item types such as deposit and transformable will never be used and so can be removed from this list.
This would be done by deleting the non required entries in CODE_DETAIL WHERE CODE_TYPE='ITMT'
I have done this for the following types on RMS 14.1.0 and checked same form code exists in 14.1.1
delete from code_detail where code_type='ITMT' and code in ('A','E','T','Z','L','O', 'P'); COMMIT;