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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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