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
-
AHHH!!! What is this so difficult? I've got support mentioning that I may need to add "?c=<account>" to get the new WSDL to work - this didn't solve the problem. Has anyone managed to upgrade to the new WSDL and generate working proxies using VS2005 and C#?
-
I tried, yes. I really want to get my geek paws on assemblies!! ;) When I did I received the error: Service /NetSuitePort_2008_1 not available. Please ensure you are indicating to the correct account. Which is why I created this thread. The circle is complete.
-
it's in the help in the SuiteTalk records guide, last section. "New York" would be "_newYork" Not the capitalization of subsequent words.
-
The custom fields are stored in an array of FieldRef (or something like that) To set custom field values you first need to allocate the array and then create each customFieldRef type. This is a pain in the butt if you won't always be adding exactly the same fields. For example, if you have conditional field setting…
-
my environment is VS 2005 Team Edition, .net 2.0
-
I 1) Is this description accurate - or is there flaws? More or less, yes. 2) If I'm using ASP.NET/VB then where do I start? The code for the login on the help files are in C# I can't help here, hopefully you will be able to translate the C# to VB - it's all .Net and the class libraries are the same (for the most part) -…
-
Hey John, I'm getting the error from my .Net application and yes, I am specifying my account in the login setup. I haven't changed anything from my 2_6 login code. I didn't find anything in the docs that suggested I should, so that could be the problem? Here is the code just in case: _service = new NetSuiteService();…
-
Thanks for the explanation. The link you posted is bad, but I will assume it's the same as the one that meatsju posted. Then again, you know what they say about people that assume.... :rolleyes:
-
Makes sense, right? ;0) Nice find, thanks! So.... NS? Is this another documentation problem or am I missing something? Do I maybe have old documentation? Additional Resources : Release Notes : Version 2008 Release 1 Release Notes : SuiteTalk (Web Services) Integration
-
2) If I'm using ASP.NET/VB then where do I start? The code for the login on the help files are in C# While researching an unrelated topic I came across this link: http://www.kamalpatel.net/ConvertCSharp2VB.aspx It will convert from C# -> VB (I feel dirty!) However it chokes on generic syntax (method<T>()) **** any other…
-
[quote=jchernia]which can often give you one side of a join (via searchCustomMultiSelect fields). I'm not sure I'm following you here. Is it possible to return select TEXT rather than ID from a get? In other words, if I have a custom list, "Order Status" and then on a record I have a custom select field of type OrderStatus…
-
I tried adding "salesRep" to the nullFieldList and it didn't make a difference. I also tried "salesrep". I tried setting the conditionalDefaults to false.... no difference. I tried adding "salesRep" to the nullFieldList then updating and this DID work. This is the least attractive option as it takes a long time to save and…
-
Hey John, thanks for the reply. A couple of questions... which can often give you one side of a join (via searchCustomMultiSelect fields). I'm not sure I'm following you here. Is it possible to return select TEXT rather than ID from a get? In other words, if I have a custom list, "Order Status" and then on a record I have…
-
Due to the current design of my DA tier, changing the service preferences per record would require some significant changes. Otherwise update the customer with salesRep in the NullFieldList as soon as you create it. -John This sounds promising, one question; Can the NullFieldList only be used once the record is created?…
-
Suppose a web service is loading records... I could see a before-submit slowing things down a bit It does, quite a bit actually. Would an after-submit be less likely to slow things down? ie. While the after-submit is handling record n, web service can be pushing through n+1. Matt The operations are all synchronous, unless…
-
I tried to vote for it but I can't find it. Doesn't show up in the search; nor can I find it by scanning through all the enhancements Shaggy, Not sure where you are searching or browsing. I know that other users (contacted me privately) have cast their votes somehow. I usually use the "Contact Support Online" option and…
-
Hi Jessie, Thanks for the ideas! I've got my fingers in so many pies I can't keep things straight. ;) The problem IS a SuiteScript error that is sneaking it's way all the way back up to WS - normally I would think this was great if.... there was some indication of the origination of the error. Anyway, problem was I was…
-
Yes, WS operations trigger SS events. If so, how is this done? That's kind of a big question without knowing anything about your SuiteScript Experience. You don't need to do anything special on the WS side, so I would develop and test in the UI. Once your script is cool for prime time check it with WS. I do this all over…
-
Looks like the error is actually coming from a SuiteScript I have deployed against the Message record. What is really strange is that: a) I have the code in the script wrapped in a try block b) There is NOTHING in the SOAP response to indicate the error originated from script. Anyone have any ideas why script errors in a…
-
Case# 641908 Was just informed this isn't possible. :mad: However, I have an idea for the hack of hacks: Is it possible to attach an existing message or file to an existing custom record via SuiteScript? What I'm thinking is that I could put a "command statement" in my message, for example:…
-
I managed to accomplish this using a combination of Web Services and Suite Script. The net result is what I wanted; attaching a message to a custom record from Web Services. If anyone is interested in the solution just reply and I will format and post the code. -Steve
-
Thanks John, that was the problem. I appreciate the help. -Steve
-
SuiteScript's nlapiAttachRecord() now supports attaching files to custom records (YAY!) So I gave a little attention to my "proxy hack" that allows attaching files to custom records from Web Services. The pattern uses a message record as a carrier for a command that will be processed by a Server SuiteScript event. Here is…
-
Have you considered using a JSON library to encapsulate your request in an OO fashion and do the parsing for you? It's a most natural fit for javascript. Hi, I haven't considered using it for this system (until you mentioned it). It would nicer and there are plenty of C# libraries for spitting out JSON. I'm using JSON in…
-
Hi Jessie, Sorry for the very late reply. I have to say this is not pretty code. I banged it out quick to see if it would even work and on top of that, I'm pretty new to javascript so I'm sure there is a much more efficient way to do what I'm doing. First I'll post the C# code for my Outlook addin that is using Web…
-
The enhancement request is: 134509 PLEASE... vote for this. I can't believe we can't do this already, seems like a very common integration requirement to me.
-
Just had to make my own this morning, here is my version (C#): SelectCustomFieldRef statusField = FindCustomField<SelectCustomFieldRef>("custrecord_phys_order__status", record.customFieldList); private T FindCustomField<T>(string fieldID, CustomFieldRef[] fields) where T : CustomFieldRef {…
-
Hi John, Thanks for the reply. That is what I meant with this part: Timeout is probably a timeout for a request, not an idle session, am I correct? Can you comment on my other question regarding how to detect a stale session? Stuff like this is hard to debug due to the inherit time factor involved. If there was a way to…
-
I'm trying to implement system to recover nicely from a stale connection and reconnect if needed. I tried setting the NetSuiteService.Timeout == 20 * 1000 (20 seconds) then blocking my thread for 30 seconds and trying to execute a search. I fully expected a session timeout error of some sort but instead things worked fine.…
-
...after realizing SOAPscope doesn't work with Vista and switching to Fiddler... Hi, I'm wondering if you encountered trouble using Fiddler with SuiteTalk? I'm getting an exception from my SuiteTalk application: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. I…