My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Comments
-
Thanks for your reply. I need something that I can control administratively (within NetSuite) that automatically sets what can can be synced. Not something that I ask each user to do with the local client. I'm guessing the answer is no since it sounds like you would have to alter the client code.
-
That's what I ended up doing, but the reason I was looking for an alternative is because the tax rate appears on the printed form. Is there any way to suppress or alter that tax rate?
-
The tax rate is incorrect because I altered it from the system-determined rate (via zip code). I did this not because there are different tax rates on the items but because there are different taxable amounts on the items. Example line 1 amount:100 taxable amount:100 tax rate:9.25 line 2 amount:100 taxable amount:50 tax…
-
I created enhancement 153918 to expose these item values but surely there has to be a way to achieve the same result whether in client suitescript or elsewhere. It's mentioned explicitly in the FAQs for the new gross profit feature, there is just no detail on how to implement it. What am I missing? Has anyone tried…
-
Ok, so if the first parameter is an array the second must be a 2-dimensional array I'm guessing? nlapiLoadRecord(['customer', 'item'], [['1', '2', '3'], ['1', '2', '3']])
-
Is there a reason why you can't just call each type separately, perhaps using switch statement? Seems to me you would have to have switch in there somewhere even if they sent a multi-type result back to you for different records.
-
You might want to try looping through each item on the sales order and totaling something like grossamt.
-
Is there any way to do this with NetSuite web services? Are there any service urls available that resemble the strike iron examples above (e.g. https://webservices.netsuite.com/loginRequest)?
-
Did you rebuild your proxy classes with the new wsdl? Any code changes at all for the upgrade? I only ask because I forgot to use the patched axis.jar during our upgrade which caused that same error.
-
We've been receiving the same error since our upgrade to v2007 last weekend. Not all our code, but the attempts to use the v260 wsdl all result in that error (after successful login).
-
Nevermind, forgot to use the patched axis.jar file when building the classes:o
-
Try setting isTaxableSpecified to false. If that doesn't work or you encounter other problems, post your SOAP request so we can see how it's being submitted.
-
Here's the SOAP request: <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <soap:Body> <getAll…
-
You'll want to create a new sales order object with only the internal id and new changes you have set. Otherwise NetSuite thinks you are trying to update every single piece of information on the sales order (some of which, like datecreated, are read-only). Not exactly sure why, but I imagine it makes network traffic a lot…
-
If you're using java it goes something like this: Create a transaction search TransactionSearch ts = new TransactionSearch(); TransactionSearchBasic tsb = new TransactionSearchBasic(); Tell the search you only want to see sales orders SearchEnumMultiSelectField smsf = new SearchEnumMultiSelectField();…
-
Thanks, that will work just fine for this process. I'm a bit suprised that they are not settable as hidden fields since the documentation alludes to that.
-
Running the equivalent code in .net yields this error: {"The underlying connection was closed: An unexpected error occurred on a receive."} and further {"Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host."} I have the NetSuite service timeout set to infinity so…
-
Thanks for the compliments John and WalterM :). I haven't worked with .net a whole lot so this is a bit of a guess, but you might want to try setting the set_createdDateSpecified method to false on your new shipping order. I know that those .net specified methods have caused me problems in the past so tweaking them a bit…
-
It happens everytime, after about 3 minutes in java and slightly longer in .net.