Hello! I was wondering how I can access the lineFi...
# suiteql
i
Hello! I was wondering how I can access the lineFields of Transaction? For instance, in a Bill Credit, I’d like to access the grossamt field of a expense line.
j
You need to join to the
transactionline
table
e.g.
SELECT * FROM transactionline WHERE transaction = <id_of_your_bill_credit>
m
good to know there is a transactionaccountingline table as well that is needed sometimes
👍 1
i
Thanks! I’ll try that 🙂