My Stuff
On Friday, October 10, 2025, at 8:00 PM Pacific Time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Share Your SuiteWorld Experience & Earn a Special Badge!
Comments
-
I am searching with bodyfieldsonly=true I'll try to briefly describe our use case: We have an internal desktop application that manages all aspects of manufacturing including Functional Testing, assembly building, receiving assembled items, servicing returned products, etc. We need to access customer orders, customer…
-
Unfortunately Web Services does not support assembly build yet. Please submit an enhancement request for this. Did you ever create the enhancement request? If so, can you please post the number?
-
I am adding a new module to our production management application and I REALLY need to be able to work with Assembly Build/Un-Build transactions as well as accessing the members of an Assembly. I'm begging the members on this list to vote for these enhancments: Enhancement 117891: WS - expose build/unbuild assembly…
-
As of last week, my vote was still the only one. Not sure why the other one(s) aren't showing up?
-
Great! Thank you! I just got off the phone with support and had them add the following comments to the the ERs: 117891 - Support Serialized Assemblies as well. (All our assemblies are serialized) 91536 - Also support Serialized Assemblies plus the ability to access the list of serial numbers for a Serialized Assembly. At…
-
Thanks for the WCF tips. SoapScope let's you invoke web methods and inspect the results, it's great for rapid testing research.
-
It is possible to load campaign records (see code below) private RecordRef[] _loadLeadSource() { GetSelectValueField gsv = new GetSelectValueField(); gsv.fieldType = GetSelectValueType.customer_leadSource; gsv.fieldTypeSpecified = true; _login(); getSelectValueResult getResult = _service.getSelectValue(gsv); _logout();…
-
Sohail, please file a case and we'll investigate this. What happened with this? Are Serial Numbers supported by Web Services? I'm in the early stages of developing a new application and I will need access to Assembly Records and Serialized assembly items. I know the former isn't supported yet, but I can't find anything…
-
Yup. I am beginning to wonder if I should reserve any unnecessary communications with NetSuite for some sort of back-end process (rather than having it linked to user-facing stuff). Of course that won't help when submitting orders... :-( I finally faced the fact today that I need to enqueue my orders for saving in a server…
-
Here is what I ended up doing to access custom fields public StringCustomFieldRef GetStringField(string fieldID, CustomRecord record) { if(record.customFieldList == null) { return null; } foreach(CustomFieldRef fieldRef in record.customFieldList) { if(fieldRef is StringCustomFieldRef &&…
-
I kept getting "No Enumerated Value _itemFulfillmentPicked for Enumerated Type TransactionStatus" Did you ever find a solution to this? I'm getting the same error when using SalesOrderOrderStatus enum. TransactionStatus is not in the latest wsdl, yet the error from netsuite seems to be using it on their end?
-
I just voted for this, can't tell you how happy I would be if it were possible. For my case, I have a very complex saved search that pulls together 7 related custom records. Doing this in pure Web Services is less than fun. :p PLUS, there are some things (Serial Numbers for serialized assemblies) that aren't supported…
-
I also am getting this error. It's quite irritating as the login process works fine without an error. I have logged in and out of netsuite just to see if that had anything to do with it. Anyone have any ideas?
-
I think I found the solution to this by reading this post: Ahh! Our Site Is Down Because Of Upgrade!! In the sample app, there is the following code --- // Enable client cookie management. This is required. _service.CookieContainer = new CookieContainer(2); --- If you copied this, you need to change it to --- // Enable…
-
Hi John, This thread slipped away from me. I missed your response, sorry for the long delay. :o Your suggestions are good ones and I've gone over them a couple of times, although I don't think they will work for what I need. It's partly my fault, in an effort to explain my situation in a simple enough way to make sense I…
-
I spoke too soon, the "Payment Transaction Total" column is not what it appears! It's the total of payments received across ALL invoices for the given customer within the date range, NOT the payments for the specific Invoice. NetSuite, can you comment or assist with this?
-
Wow, great response, thanks for the help! I'm very happy that we can show payment amount on the pending authorization, it's better than nothing. With that said I'm shocked this data isn't available on additional reports??? NetSuite, how difficult is it to add this? It's an obvious hole in the reporting, hardly fits into…
-
lead date is the date the record entered a lead type status (that is marked to incldue in lead reports). Is there a way to update this Lead Date value? We have 5 months of leads that are missing this data and the reports are skewed because of it. I have created new Statuses to replace the old, incorrectly setup ones but…
-
The purpose of the include in leads report checkbox is to be able to have statuses to hold leads such as list imports that should not be counted as actual successful lead acquisitions. Ah, OK I can see how that should work. It's one of those sneaky features that apparently has irreversible effects. Given my situation, what…
-
Please file a case and we will investigate. Back and forth with support for several days and finally this resulted in an ER. FYI: Enhancement 157891 - Ability to modify/update the Lead Date or set it the same as Date Created through Mass update, or CSV or other ways,for the purpose of customizing reports and searches.
-
There were definitely blanks. I did notice that once I created the new "replacement" statuses with the "Include in Lead Report" option checked the Lead Date defaulted to the current date (yesterday). This has now thrown off my reports even worse because it looks like my August-October leads all came in December. I will…
-
Case# 818852 Need to set the Lead Date field to Date Created
-
Jeff, This looks promising... Although I'm not seeing the entity, record_id or rectype fields exposed in the search and those are the fields I needed to search with ;) Maybe they will come later. Thanks for the update, Steve
-
This thread helped me get very close to the results that I'm after using a formula like this: max({custrecord_hcpcs_mps_effective_date}) keep(dense_rank last order by {custrecord_hcpcs_mps_effective_date}) I need to further filter the results to restrict results that are <= the current date:…
-
Hi, I don't think this applies. You know when you choose Reports->New Search and there is a list of all the different record types (Class, Company, Competitor, Contact, etc) Well.... where is 'Message'? How do I search for messages? Hope that clears things up, Steve
-
Hi- Did you ever find a way to generate such a report? We need this too so that we can better prepare for the weekly battle with UPS and their random fees and up-charges :0(
-
For our needs, to get started I would like to see a report on shipping charges from invoices. We would simply like to know how much shipping was charged in a month. This may already be possible, but from I can see the shipping charge isn't a field in the report builder. It would also be nice to see a report by shipping…
-
It looks like this is going to be included in the 2013.2 update that will be coming out around august. Great! I'm so incredibly happy with the features that are coming out in the next version!!
-
Over 2 years later is this still an enhancement??
-
Without seeing your actual bat file it can be hard to say. Mine is very simple: print /D:\serverUPSPrinter %1 Just a single line. From the output you've posted I can't tell if those are all different single things you've tried or if you have a single bat file with all those commands?