Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Adding Tax
Tax Rate
I've run into this problem whereby I cannot upload the tax along with the sale
[PHP]
if($order->tax > 0){
$orderFields['isTaxable'] = true;
$orderFields['taxRate'] = '07.00';
}
[/PHP]
I get:
You do not have permissions to set a value for element taxrate due to one of the following reasons: 1) The field is read-only; 2) An associated feature is disabled; 3) The field is available either when a record is created or updated, but not in both cases.
I have full admin permissions so that should't be the issue. Can someone tell me what I am doing wrong?
I've run into this problem whereby I cannot upload the tax along with the sale
[PHP]
if($order->tax > 0){
$orderFields['isTaxable'] = true;
$orderFields['taxRate'] = '07.00';
}
[/PHP]
I get:
You do not have permissions to set a value for element taxrate due to one of the following reasons: 1) The field is read-only; 2) An associated feature is disabled; 3) The field is available either when a record is created or updated, but not in both cases.
I have full admin permissions so that should't be the issue. Can someone tell me what I am doing wrong?
0