Question

I'm accessing sage 50 via the v16 ODBC driver, and I'm struggling to find the expenses data.

i.e. I'm shown an export which shows things like water bills, phone bills, salary etc, all going out from the company / main bank account

However I dont see this data in the audit_journal table, which from my limited knowledge is where I did expect to find it.

Was it helpful?

Solution

You need to use AUDIT_HEADER or AUDIT_SPLIT tables e.g. SELECT * FROM AUDIT_SPLIT

If you only want expenses then you should probably add a where clause for TYPE ="BP" OR TYPE="PI"

Audit Header is the group transaction header and audit split is the nominal code analysis.

Adam

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top