You wrote that you were thinking of using the following WHERE clause:
assetnum in (select asset from TOOLTRANS where assetnum is not null)
I assume you meant to say:
assetnum in (select assetNum from TOOLTRANS where assetnum is not null)
Anyways, the problem is that it should be:
assetnum in (select RotAssetNum from TOOLTRANS where assetnum is not null)
The AssetNum in the ToolTrans is the Asset being charged, which normally defaults to the AssetNum on the WO being charged. The RotAssetNum represents the Asset that was used.
------------------------------
Julio Hernandez
Ergonare, Inc.
------------------------------