select transaction.transactionnumber...
# suiteql
h
select transaction.transactionnumber. transaction.trandisplayname, bomAssembly.assembly, bomAssembly.billOfMaterials, bomAssembly.canBeMaster, bomAssembly.masterDefault FROM transaction join bomAssembly on transaction.billofmaterials = bomAssembly.billofmaterials where type = 'WorkOrd'
d
not sure your question, but there is a syntax error. The first column (
transactionnumber
) has a period after the name instead of a comma
👍 1