Hi all - we have a client who has installed SuiteT...
# suitescript
c
Hi all - we have a client who has installed SuiteTax in their sandbox environment. I am trying to add a check which determines if the SuiteTax feature is enabled. Using runtime.isFeatureInEffect() I have tried both SUITETAXDATARECORDS AND SUITETAXENGINE as documented in SuiteAnswers ID: 66030 NetSuite is still reporting that the feature is not enabled? Is there a different value I should be checking or something I am overlooking? Thanks for any help!
m
Here's what we use
Copy code
function isSuiteTaxEnabled() {
    return runtime.isFeatureInEffect({ feature: 'TAX_OVERHAULING' });
}
c
Interesting, I can’t even find that in SuiteAnswers….
I see a TAX_OVERHAULINGDEV listed though.
m
TAX_OVERHAULINGDEV is the feature that allows you to develop SuiteTax plugins. Most customers would not have this feature enabled.
c
OK, thanks for your help. I will try this.