Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document shorter view to get TrialBalancePerPeriod. #9

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions B_ANALYTICS/B2_INVANTIVE_SQL/A001.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ local remark Saldibalans per periode

local remark Voor gebruik met de Invantive XML Auditfile Financieel v3.2 driver.

select *
from TrialBalancePerPeriod
order
by interface_url
, company_name
, fiscal_year_number
, transaction_periodnumber
, accid
, accdesc

local remark Of gebruik de code uit de view TrialBalancePerPeriod:

select dtl.interface_url
, dtl.company_name
, dtl.fiscal_year_number
Expand Down
10 changes: 10 additions & 0 deletions B_ANALYTICS/B2_INVANTIVE_SQL/xaa-eol-check-all-companies-known.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
local remark Check that all company IDs of the XAA files are known as a company in Exact Online.

select distinct
lce.company_id
from LocationCashRegisterCashTransactionLines@xaa lce
left
outer
join systemdivisions@eol sdn
on sdn.hid = lce.company_id
where sdn.hid is null
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ De doelstelling is om te komen tot een breed gedragen generiek toepasbare set an
+ Verlagen drempel toepassen data-analyse.
+ Efficiency in bijvoorbeeld audit, samenstel of fiscale compliance/adviespraktijk.

Hierbij wordt uit gegeven van een aantal veronderstellingen:
Hierbij wordt uit gegaan van een aantal veronderstellingen:

1. De analyses moeten kunnen worden uitgevoerd met de onder gebruikers veel voorkomende analyse-tools.
2. Alhoewel de auditfile-familie vaak de databron zal zijn, is de inhoud van de analyse een belangrijk uitgangspunt. Dit betekent dat sommige analyses niet uitgevoerd kunnen worden met alleen auditfiles maar dat data uit andere bronnen noodzakelijk is.
Expand Down