Mehmet Seflek
11/10/2022, 7:48 AMTransactions
or TransactionAccountingLine
that would represent this information, or if I’d be able to write a query that’d represent all posting transactions with a GL impact with the account that the “double” entry posted to. Am I missing something obvious? I know i can get a list of transactions for each account, but I’m not sure how I can find the second entry of each transaction.Clay Roper
11/10/2022, 3:30 PMtransactionaccountingline
entries for a given transaction would be a good startClay Roper
11/10/2022, 3:34 PMSELECT
account,
credit,
debit,
transactionline
FROM transactionaccountingline
WHERE
posting = 'T' AND
transaction = {{transactionInternalId}}