My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Comments
-
The problem is that I'm developing this app as an SDN member, and I believe that on Friday my SDN account was moved to 13.2. I had been going against the endpoint: "https://webservices.na1.netsuite.com/services/NetSuitePort_2013_1" which is what the Web Services documentation says to do. Once I changed it to the following,…
-
yes, I'm doing something similar. By the way, I'd be happy with a WSDL element that associates the proprietary NetSuite country code with the ISO code.
-
Thanks for the prompt replies. I will file a defect on the online pubs. This is the sort of thing that's making working with NetSuite painful. I wasn't clear in my description--I will have new "records" as well as existing ones in the set, so an upsert should be ideal.
-
Thanks for the quick reply, but getting information about custom fields from the UI is not going to work. I'm using SuiteTalk for a *headless* integration, i.e. no access to the UI. I just found the page about getCustomizationId…
-
I am able to log in, using the following: SessionResponse response = stub.login(req, appInfo, partnerInfo).getSessionResponse(); boolean isSuccess = response.getStatus().isIsSuccess(); RecordRef loggedInUserRef = response.getUserId(); The recordRef has a name, and internalID, but its type is null. Is it possible to do a…
-
hmm. So a ref to aContact's "company" can point to any of the so-called entities? i.e. I could have a contact that carried an Employee's id in her company attribute? As you see, I'm a little confused what "etc." means in this case. I also see that Customer has a companyName (String) attribute, rather than a pointer to a…
-
It's now 2013. I also need something like an "OR" to construct search criteria--either an OR, or an operator like "any of" on a string field. If either of these exist, please let me know. Thanks!
-
I just got back to look at this, and realized that my earlier post didn't mention that I'm using SuiteTalk (Web Services). Is this search filter capability available for SuiteTalk?
-
I, too, am trying to get members of a static group. I'm using the 2012_2_0 WSDL, from a web client. Here's what's in the .xsd: <complexType name="GroupMemberSearchBasic"><complexContent><extension base="platformCore:SearchRecord"><sequence><element name="groupId" type="platformCore:SearchMultiSelectField"…
-
FWIW, as I was using Axis2 to generate classes, I saw what seems to be the same as Raj's stack. (see below). I discovered that the operation getDataCenterUrls was defined in the interface (portType) with two faults, but the binding was missing the entry for "ExceededRequestSizeFault". Once I added it, WSDL2Java worked.…