James Morris
07/10/2025, 12:44 PMCeligo AI
07/10/2025, 12:44 PMAI generated answer (using internal Slack threads):The error "The feature 'SuiteTax Plug-in' required to access this page is not enabled in this account" is likely due to the fact that the 'TAX_OVERHAULINGDEV' feature is not enabled in your account. This feature allows you to develop SuiteTax plugins. You can check if this feature is enabled by using the
runtime.isFeatureInEffect()
function with the feature parameter set to 'TAX_OVERHAULINGDEV'. Here is a code sample:
javascript
function isSuiteTaxDevEnabled() {
return runtime.isFeatureInEffect({ feature: 'TAX_OVERHAULINGDEV' });
}
If this function returns false, it means that the 'TAX_OVERHAULINGDEV' feature is not enabled in your account. You may need to enable it in order to deploy a tax engine plug-in.
Remember, SuiteTax is a bundle. To see if you have that bundle installed you could go to CUSTOMIZATION > SUITEBUNDLER > SEARCH AND INSTALL BUNDLES > LIST and sort the bundles alphabetically. If you have it, it will be there.
******
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
07/10/2025, 12:45 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.845844924
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.844594657
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.836542189
Celigo AI
07/10/2025, 12:45 PM