darrenhillconsulting
08/08/2025, 7:44 PMCeligo AI
08/08/2025, 7:44 PMAI generated answer (using internal Slack threads):To check if the SuiteTax feature is enabled in your NetSuite account, you can use the
runtime.isFeatureInEffect()
method in SuiteScript. The feature you need to check for is 'TAX_OVERHAULING'. Here is a sample function:
javascript
function isSuiteTaxEnabled() {
return runtime.isFeatureInEffect({ feature: 'TAX_OVERHAULING' });
}
Alternatively, you can check if the SuiteTax bundle is installed in your account. To do this, navigate to Customization > SuiteBundler > Search & Install Bundles > List
. If SuiteTax is enabled, it will be listed there when you sort the bundles alphabetically.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
08/08/2025, 7:44 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.866153121
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.852071524
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.845884502
Celigo AI
08/08/2025, 7:44 PM