How can I featureCheck is SuiteTAX is enabled?
# ask-stanley-ai
d
How can I featureCheck is SuiteTAX is enabled?
c
AI 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:
Copy code
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. ******
Slack 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
Please provide your feedback on this answer.