Skip to main content

We have a Return Authorization line that has a non-invemtory sales part that we need to scrap but scrap is not showing available. How can we scrap. It looks like we have been able to scrap in the past, has something changed?

Thank you,

I don’t think you can Scrap Non Inventory Part, there is no inventory valuation linked to returning so scrap wouldn’t reduce it.

 

I don’t know for sure about Apps 10 in this case, but in Cloud the condition for the Scrap command to be enabled is as follows:

 


((ModifyDateAppliedEnabled AND ArrivalDate != null) OR NOT ModifyDateAppliedEnabled)


AND NOT (substring(Condition, 3, 1) = "*" OR PartNo = null OR Objstate IN ("Received","ReturnCompleted")


OR (CustomersCompany = Company AND CustomersCompany != null AND parent.OriginatingRmaNo = null AND (SalesPartRef != null AND SalesPartRef.CatalogType = "InventoryPart")) OR RentalDb = "TRUE")


AND NOT (SalesPartRef != null AND SalesPartRef.CatalogType = "PackagePart")


 

So it does seem to select for Inventory Parts or Rental Parts.

 

 


Reply