Netsuite Transformation dbt Package (Docs)
- Produces modeled tables that leverage Netsuite data from Fivetran's connector in the format described by this ERD and builds off the output of our Netsuite source package.
- Enables users to insights into their netsuite data that can be used for financial statement reporting and deeper transactional analysis. This is achieved by the following:
- Recreating both the balance sheet and income statement
- Recreating commonly used data by using the transaction lines as the base table and joining other data
- Generates a comprehensive data dictionary of your source and modeled Netsuite data through the dbt docs site.
The following table provides a detailed list of all models materialized within this package by default.
TIP: See more details about these models in the package's dbt docs site.
Model | Description |
---|---|
netsuite__transaction_details or netsuite2__transaction_details | All transactions with the associated accounting period, account and subsidiary information. Where applicable, you can also see data about the customer, location, item, vendor, and department. |
netsuite__income_statement or netsuite2__income_statement | All transaction lines necessary to generate an income statement (converted for the appropriate exchange rate of the parent subsidiary). Department, class, and location information are included for additional reporting functionality. |
netsuite__balance_sheet or netsuite2__balance_sheet | All transaction lines necessary to generate a balance sheet (converted for the appropriate exchange rate of the parent subsidiary). Non balance sheet transactions are categorized as either Retained Earnings or Net Income. |
To use this dbt package, you must have At least either one Fivetran Netsuite (netsuite.com) or Netsuite2 (netsuite2) connector syncing the respective tables to your destination:
- accounts
- accounting_periods
- accounting_books
- consolidated_exchange_rates
- currencies
- customers
- classes
- departments
- expense_accounts
- income_accounts
- items
- locations
- partners
- transaction_lines
- transactions
- subsidiaries
- vendors
- vendor_types
- account
- accounttype
- accountingbooksubsidiary
- accountingperiodfiscalcalendar
- accountingperiod
- accountingbook
- consolidatedexchangerate
- currency
- customer
- classification
- department
- entity
- entityaddress
- item
- item
- job
- location
- locationmainaddress
- transactionaccountingline
- transactionline
- transaction
- subsidiary
- vendor
- vendorcategory
This package is compatible with either a BigQuery, Snowflake, Redshift, PostgreSQL, or Databricks destination.
If you are using a Databricks destination with this package, you must add the following (or a variation of the following) dispatch configuration within your dbt_project.yml
. This is required in order for the package to accurately search for macros within the dbt-labs/spark_utils
then the dbt-labs/dbt_utils
packages respectively.
dispatch:
- macro_namespace: dbt_utils
search_order: ['spark_utils', 'dbt_utils']
Do NOT include the netsuite_source
package in this file. The transformation package itself has a dependency on it and will install the source package as well.
Include the following netsuite package version in your packages.yml
file:
TIP: Check dbt Hub for the latest installation instructions or read the dbt docs for more information on installing packages.
packages:
- package: fivetran/netsuite
version: [">=0.8.0", "<0.9.0"]
As of April 2022 Fivetran made available a new Netsuite connector which leverages the Netsuite2 endpoint opposed to the original Netsuite.com endpoint. This package is designed to run for either or, not both. By default the netsuite_data_model
variable for this package is set to the original netsuite
value which runs the netsuite.com version of the package. If you would like to run the package on Netsuite2 data, you may adjust the netsuite_data_model
variable to run the netsuite2
version of the package.
vars:
netsuite_data_model: netsuite2 #netsuite by default
By default, this package runs using your destination and the netsuite
schema. If this is not where your Netsuite data is (for example, if your netsuite schema is named netsuite_fivetran
), add the following configuration to your root dbt_project.yml
file:
vars:
netsuite_database: your_destination_name
netsuite_schema: your_schema_name
It's possible that your Netsuite connector does not sync every table that this package expects. If your syncs exclude certain tables, it is because you either don't use that feature in Netsuite or actively excluded some tables from your syncs. To disable the corresponding functionality in the package, you must add the relevant variables. By default, all variables are assumed to be true. Add variables for only the tables you would like to disable:
vars:
netsuite2__multibook_accounting_enabled: false # True by default. Disable `accountingbooksubsidiary` and `accountingbook` if you are not using the Multi-Book Accounting feature
netsuite2__using_vendor_categories: false # True by default. Disable `vendorcategory` if you don't categorize your vendors
netsuite2__using_jobs: false # True by default. Disable `job` if you don't use jobs
Note: The Netsuite dbt package currently only supports disabling transforms of Multi-Book Accounting related tables (
accountingbooksubsidiary
andaccountingbook
) and thevendorcategory
andjob
source tables. Please create an issue to request additional tables and/or features to exclude.To determine if a table or field is activated by a feature, access the Records Catalog.
Expand for configurations
This package includes all source columns defined in the macros folder. To add additional columns to this package, do so by adding our pass-through column variables to your dbt_project.yml
file:
vars:
accounts_pass_through_columns:
- name: "new_custom_field"
alias: "custom_field"
classes_pass_through_columns:
- name: "this_field"
departments_pass_through_columns:
- name: "unique_string_field"
alias: "field_id"
transform_sql: "cast(field_id as string)"
transactions_pass_through_columns:
- name: "that_field"
transaction_lines_pass_through_columns:
- name: "other_id"
alias: "another_id"
transform_sql: "cast(another_id as int64)"
customers_pass_through_columns:
- name: "customer_custom_field"
alias: "customer_field"
locations_pass_through_columns:
- name: "location_custom_field"
subsidiaries_pass_through_columns:
- name: "sub_field"
alias: "subsidiary_field"
consolidated_exchange_rates_pass_through_columns:
- name: "consolidate_this_field"
Additionally, this package allows users to pass columns from the netsuite__transaction_details
table into
the netsuite__balance_sheet
and netsuite__income_statement
tables. See below for an example
of how to passthrough transaction detail columns into the respective balance sheet and income statement final tables
within your dbt_project.yml
file.
vars:
balance_sheet_transaction_detail_columns: ['company_name','vendor_name']
income_statement_transaction_detail_columns: ['is_account_intercompany','location_name']
By default, this package builds the Netsuite staging models within a schema titled (<target_schema>
+ _netsuite_source
) and your Netsuite modeling models within a schema titled (<target_schema>
+ _netsuite
) in your destination. If this is not where you would like your Netsuite data to be written to, add the following configuration to your root dbt_project.yml
file:
models:
netsuite_source:
+schema: my_new_schema_name # leave blank for just the target_schema
netsuite:
+schema: my_new_schema_name # leave blank for just the target_schema
If an individual source table has a different name than the package expects, add the table name as it appears in your destination to the respective variable:
IMPORTANT: See this project's
dbt_project.yml
variable declarations to see the expected names.
vars:
# For all Netsuite source tables
netsuite_<default_source_table_name>_identifier: your_table_name
# For all Netsuite2 source tables
netsuite2_<default_source_table_name>_identifier: your_table_name
This package is designed to run either the Netsuite.com or Netsuite2 data models. However, for documentation purposes, an additional variable netsuite_data_model_override
was created to allow for both data model types to be run at the same time by setting the variable value to netsuite
. This is only to ensure the dbt docs (which is hosted on this repository) is generated for both model types. While this variable is provided, we recommend you do not adjust the variable and instead change the netsuite_data_model
variable to fit your configuration needs.
Expand for details
Fivetran offers the ability for you to orchestrate your dbt project through Fivetran Transformations for dbt Core™. Learn how to set up your project for orchestration through Fivetran in our Transformations for dbt Core setup guides.
This dbt package is dependent on the following dbt packages. Please be aware that these dependencies are installed by default within this package. For more information on the following packages, refer to the dbt hub site.
IMPORTANT: If you have any of these dependent packages in your own
packages.yml
file, we highly recommend that you remove them from your rootpackages.yml
to avoid package version conflicts.
packages:
- package: fivetran/netsuite_source
version: [">=0.6.0", "<0.7.0"]
- package: fivetran/fivetran_utils
version: [">=0.4.0", "<0.5.0"]
- package: dbt-labs/dbt_utils
version: [">=1.0.0", "<2.0.0"]
- package: dbt-labs/spark_utils
version: [">=0.3.0", "<0.4.0"]
The Fivetran team maintaining this package only maintains the latest version of the package. We highly recommend you stay consistent with the latest version of the package and refer to the CHANGELOG and release notes for more information on changes across versions.
A small team of analytics engineers at Fivetran develops these dbt packages. However, the packages are made better by community contributions!
We highly encourage and welcome contributions to this package. Check out this dbt Discourse article on the best workflow for contributing to a package!
- If you have questions or want to reach out for help, please refer to the GitHub Issue section to find the right avenue of support for you.
- If you would like to provide feedback to the dbt package team at Fivetran or would like to request a new dbt package, fill out our Feedback Form.
- Have questions or want to be part of the community discourse? Create a post in the Fivetran community and our team along with the community can join in on the discussion!