Under Enable Features Tax there is and Advanced Ta...
# ask-stanley-ai
s
Under Enable Features Tax there is and Advanced Taxes checkbox and a SuiteTax checkbox. I want to know in suitescript if the Advanced Taxes checkbox is selected.
c
AI generated answer (using internal Slack threads):
To check if the Advanced Taxes feature is enabled in NetSuite using SuiteScript, you can use the
runtime.isFeatureInEffect()
method. However, the feature string to use is not clearly documented. From the conversations, it seems that the feature string 'TAX_OVERHAULING' might be used to check if SuiteTax is enabled. Here is a sample code snippet:
Copy code
javascript
function isAdvancedTaxesEnabled() {
    return runtime.isFeatureInEffect({ feature: 'TAX_OVERHAULING' });
}
Please note that this code snippet is based on the information provided in the conversations and might not be accurate. It's recommended to test this in your NetSuite environment to confirm. ****** 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.847869396
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.846491933
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.828431547
Please provide your feedback on this answer.