I am trying to list all available tables in my Invantive Cloud database and create a view to extract transactions for a specific Fortnox-account (2422) for use in Excel.
I now know the correct query is:
select * from DataDictionaryTables@DataDictionary
(with a space between select
, *
, and from
).
Creating a view for general ledger account 2422:
- I want to create a view that shows all transactions for account 2422, but I am unsure which table to use since
TransactionLines
does not seem to be available in my database. - I have not been able to find a suitable table for transactions in the list of available tables.
Questions:
- Is the correct syntax for listing tables in Invantive Cloud always:
select * from DataDictionaryTables@DataDictionary
(with spaces as shown)?
- Which table should I use to create a view for all transactions for a specific account (e.g., 2422)?
- The table
TransactionLines
is not available in my database. - I need guidance on the correct table name and how to write the view.
- Are there any permissions or settings I need to adjust to access transaction data or create views?
I have attached screenshots of the error messages and the list of available tables for reference. My goal is to export transaction data for account 2422 to Excel using a view created in Invantive Cloud.
Please provide guidance on the correct SQL syntax for listing tables and creating views, and advise which table to use for transaction data in my Invantive Cloud database.