Could I know how to get transaction lines (journal...
# suiteql
b
Could I know how to get transaction lines (journal entry) using SuiteQL please? like memo, entity column as well
e
Just use the
transactionline
table
SELECT memo, entity  FROM transactionline WHERE transaction = 12770610
b
Thank you