I am using this select statement:
select * from inventTrans where inventTrans.InventTransOrigin == inventTransOrigin.RecId
however it doesn't return anything, where in fact the relation of InventTrans and InventTransOrigin is that.
I looked at the table inventTrans (via table browser) and saw that the inventTrans.InventTransOrigin is a TransId. So I did this:
select * from inventTrans where inventTrans.InventTransOrigin == str2Int64(inventTransOrigin.InventTransId)
however it still doesn't return anything.
What am I missing?
*This post is locked for comments