Steven Craig
05/02/2025, 6:30 PMCeligo AI
05/02/2025, 6:30 PMAI generated answer (using internal Slack threads):In SuiteScript, you can check if the Advanced Taxes (SuiteTax) feature is enabled by using the
runtime.isFeatureInEffect()
method. The feature ID you should check for is 'TAX_OVERHAULING'. Here is a sample function that checks if SuiteTax is enabled:
javascript
function isSuiteTaxEnabled() {
return runtime.isFeatureInEffect({ feature: 'TAX_OVERHAULING' });
}
This function will return true
if the SuiteTax feature is enabled, and false
otherwise.
******
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
05/02/2025, 6:30 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.86573565
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.857142508
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.845527828
Celigo AI
05/02/2025, 6:30 PM