My Stuff
Comments
-
That's odd Sharon - everything is working fine here now and has been since last night. Have you reached out to support to report the issue? I am wondering if snebes is right with it not being deployed everywhere yet. We may have all logged onto different servers at different times and if its not deployed everywhere that…
-
That's not cool. I am going to do another import in the next hour or so - I am hoping I don't have the same issue. With your search, is it the same problem as last night or has it changed some?
-
Does anyone have any ideas?
-
We've been running 2012.1 since Feb with no issues, I considered trying 2012.1 wsdl - thanks for confirming that it didn't fix the issue :)
-
Yes I am! I have been debugging this all day and it is ignoring all params and returning over 8000 results for some of our inventory items. Same code worked fine for the past month. I have no idea what changed or how to fix unfortunately
-
perfect! Thanks Lorne
-
I am submitting a case as well - I'll post any helpful info I get.
-
I checked and it is enabled
-
Resolved. C# code is: //This section gets the available inventory for the item ItemAvailabilityFilter iaf = new ItemAvailabilityFilter(); iaf.item = new RecordRef[1]; iaf.item[0] = new RecordRef(); iaf.item[0].internalId = itemId; GetItemAvailabilityResult res = ns._service.getItemAvailability(iaf); This will return a XML…
-
Thanks James, I was able to implement this correctly.
-
I Highlyrecommend taking the SuiteTalk course to learn the NetSuite web services. The course covers pretty much everything you will need to know, and depending upon your classmates and yourself you may have time to discuss other things like RESTlets.
-
Thanks Lorne, that will be more then enough :) I can't imagine trying to referance an external ID 255 characters long :D
-
Rosse, are you getting the same error? That post was from 2009, the WSDL has been updated many times over since then :) If your getting errors, what errors are you getting?
-
For any interested, I had put a post on Stack Overflow (http://stackoverflow.com/questions/15499409/how-to-build-a-wsdl-using-maven) to see if that community could help. After the post was made, I started trying Apache CXF and, with the addition of a binding file, was able to successfully generate proxy classes for the…
-
I gave up on Axis2 for NetSuite as I don't have the time to toy with it, but I would love it if NetSuite updated to use a current technology (current as of 2013) and not force us to use an old technology (as of 2006).
-
We do address validation via Avalara's AvaTax software. It's worked well for us for a number of years, but it's really only worth getting if you need to improve your taxation processes....
-
Hi Joachim, We're in the planning stages right now and haven't tried as of yet - I'll update the thread once I test this with the results.
-
NetSuite opened an S1 ticket for the issue, so apparently it's impacting quite a number of people. Defect #- 265329 for those of you who are/were impacted (the defect is showing as closed now).
-
We are currently working on the 2nd scenario where we are bulk billing fulfilled orders. What we have found works in a sandbox account is running a search to find the orders that have tracking numbers (are fulfilled) but not billed and then running a script to iterate over the search. See the following code: if(type…
-
This thread has all the details you need to know https://usergroup.netsuite.com/users/showthread.php?p=173260
-
Rob, You raise a good point. We'll provide a way to hide the answer. Please allow some time for writing the code and plenty of time for testing. You can track the progress if you file a case with Support and reference issue 247450. Brian Thank you Brian, I look forward to this fix.
-
Brian, I respect the fact additional security is warranted in light of the phishing emails that were sent around previously, however I do have an issue with how this has been implemented. Our NetSuite admins (and users) often need to be involved in meetings with a number of individuals. These meetings are held on a variety…
-
I use git for versioning all my code with Bitbucket hosting my repo as a private repo. This allows me to work from wherever I need while still maintaining document history. Plus its light weight, can integrate nicely with eclipse and is extremely well documented. If you've never heard of bitbucket, check them out:…
-
For our purposes we assumed everything was at base version 1. Then as changes are made the versions are incremented accordingly. Keep in mind though that source code versioning is different then document versioning and having a mutually inclusive solution may not provide the level of control you are looking for. Documents…
-
Thanks, is there one for users as well? I have a user internal id of -4 that I cant seem to track down....
-
The record can be properly manipulated on aftersubmit(create) as this is the first moment when it has an internalid. An after submit call takes place after the record has been saved to the database, which is why it returns an internal ID for the record Apparently changes can be made on beforesubmit(create) but the id…
-
Hard to say as it's very dependant upon other factors ( time of day, other workflows/scripts/customizations etc. ) but I would guess you'll scale just fine. In order to figure out your upper bounds of record creation benchmark your record creation. i.e: Create 100 records Calculate the average time per record. Divide 86400…
-
We started a project like this back in '12 but never pushed it live as we needed a live login. Knowing what I know now, and seeing the apple app makes me want to do this all over again. Now to find the time....
-
Greetings, folks. Our company just made the decision to migrate from Quickbooks/Quickbase for Accounting/CRM to NS. I am the CRM Admin for Quickbase here. I need to be up to speed on NS customization yesterday, if not sooner. We are using an NS implementation partner, and I am sure I will learn much through them, but I…
-
Thanks Oliver, I'll update this thread with any information they provide.