문제

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.

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top