-
WebServices Guides Are Gone
I am looking into ways to use WebServices, but when I went to download the PDFs in the help section, they are gone. Anyone know where they have been moved to?
-
Creating New Entry Forms
Is there a way to create a brand new entry form without resorting to customizing a preexisting one?
-
Attaching a Note to SupportCase
I was hoping someone might be able to show us where we are going wrong with attaching a note to a support case record using WSDL 1.3.2. A new note is created, and then assigned to a support case with the statement: Note newNote = new Note(); newNote.record = new RecordRef(); newNote.record.internalId =…
-
A few questions from a newbie
I have a few questions. 1. At what point does the Item Fulfillment record get populated? I am assuming that after you mark a Purchase Order as shipped, that it gets populated at that point 2. Will the following code segment work by creating an email?: nlapiSendEmail(-5,'sthong@yahoo.com','Your order has been shipped','Body…
-
Missing fields in custom entry form
I added several custom fields to one of our customer entry forms. They show up on the form itself, but I can't see them on the page where I'm editing the forms. It's almost as if the list of fields for the tab is just too long. I tried moving some of the fields that I wasn't using onto a different tab to see if the…
-
How do you get the internal id from search results?
Use case: I want to search for a specific customer using the nlapiSearchRecord() function, so that I can obtain the internal id for that custoemr and set the company field within a case record. I can use nlapiSearchRecord() to retrieve the correct record, but how do I get its internal id? I'm assuming that a customer…
-
Script does not work for case created through e-mail
I have a SuiteScript that is run on the before submit event for a case record. It works fine when you create a case using the UI. However, when a case is created through the inbound e-mail feature, the script is not executed. I know this for sure since none of the debug statements are logged that are normally logged when…
-
Transforming Sales Orders
Hi all, When transforming sales orders into invoices using nlapiTransformRecord(...), we end up with erroneous units for each line item on the invoice where no units are specified on the sales order. Any insights? Thanks, Dave
-
Does recordList return other lists too?
I couldn't find anything in the documentation about this, but I wondered if anybody else had encountered something similar. We are doing a search for SupportCases, and then the return list gives us all our cases that meet our parameters. Everything comes back fine except for the messageList. The messageList, when we try to…
-
Users with different roles in custom web site
Hi all, I'm new to web services platform, so plase have mercy! I'm building a web site which is going to be integrated with netsuite with web services. Several users will be able to access this web site -they are different users in netsuite, with different default roles assigned to each one. I noticed that we have to pass…
-
Error while adding web reference in VS2002
I can add web references to other web services just fine, but whenever I try to add a web reference to netsuite's wsdl to my VS2002 project, I get the following error: Key cannot be null. Parameter name: key What am I doing wrong?
-
Question on Email Example
Hi All, In the ServerSuiteScript Email Notification example. The record which the script works on is Sales Order. The field which the example works with is 'discountrate' However in the documentation the field 'discountrate' doesn't exist. The field 'discountitem' does exist. Is the Sales Order record wrong or is the…
-
Remove the '- New -' item from multiple select list
I created a custom list but when I display it as a multiple select field, NetSuite adds the item '- New -' to the top of the list. I only want the choices I put in and not the '- New -'. This may be a stupid question but can this be removed and how? Thanks. -Steve
-
Script Execution Usage Limit Exceeded
netsuite keeps throwing out this error when my script is executed. all it does is search for a few estimates, pull out a few fields from it, and a few fields from the customer record, and send an email. it'll send out three, then give me that error, saying it's been given something like 71490000 instructions. i'm querying…
-
Add 6 months to expected close
Anyone know how to add six months to the expected close date via Script. I have tried to do this on the Page Init and can get the date value. However it is not in the right format. This works and puts the date that I want in the field but the format is all wrong. Any help on what function to use or how to do this would be…
-
Stumped on AutoFill function
Hi All, Our Data entry department creates only one type of Item. It is for a Child in our Sponsorship program. I am using JavaScript to autofill a bunch of the fields on the form. (Department, Activity, Status...) I want to fill in the Center# for them as well. The Child's ID is a 9 digit code; ie: 320-042-0430 320-042 is…
-
Carrying amounts from sales order to drop ship PO
Hi, I am tying to see if it possible to get a value of a calculated value in a custom field to carry over to a PO that has been generated by a drop ship item. 1. User enters a sales order with a drop ship item 2. When they click on Add an amount is auto calculated and populated into the custom transaction column field of…
-
RecordType for Department and Location
Hi folks, I am a bit confused as to what static reference to use in a SalesOrder for the setDepartment and setLocation RecordTypes. The RecordType object doesnt have a specific department or location type. In the DTD the departmentRef and locationRef are defined by; [INDENT]<!ELEMENT departmentRef (%HierarchicalNameType;)>…
-
searching date values
i spent quite some time trying to figure out how to search for transactions based on dates, and for some reason, it looks as though the operator "on" isn't available, for some odd reason. you have to use "within," and specify two search values.
-
#'s not being escaped in custom fields on sales order?
We are having sales orders with #'s in their custom fields not go through. They are getting the error; java lang Exception: Code=CSTM FIELD VALUE REQD The specified custom field value is missing I couldnt find any documentation that stated hashes have to be escaped.
-
ColdFusion and sessions
I'm probably missing something completely obvious, but has anyone successfully used ColdFusion to make calls to the web service? I'm writing a demo app, and have tried to no avail to maintain a session. For example, all of my attempts to call the get method fail with: com.netledger.dto.v1_3.faults.InvalidSessionFault: Your…
-
Custom record listed in 2 record types?
I created a custom record to enter and track some expenses for our items. Each expense record is listed as a child record of the items, and shows properly in a list on the item record. But I would also like to create a custom record for the vendor who was paid for that expense (we have CRM+, so I'm having to create all of…
-
Trouble getting SiteCategoryList
I did a search for inventory items, the object that returns to me (InventoryItem) is great, it contains the getOnSpecial and InternalID, and I have no problem getting the values for them. If I try to get the SiteCategoryList no object returns to me, when it supposed to give me the…
-
Querying Customer Lists
I want to query a custom list via Web Services. I am following the example on page 151 of the Web Services Records user guide (version 1.3.2). The same example was also presented in the old user forum as well, as follows. CustomRecordSearch customRecordSearch = new CustomRecordSearch(); RecordRef recordRef = new…
-
phone calls and script deployment inconsistence
i'm trying to create a phone call, but i can't seem to find a way to specify participants, or set the start/end times. there's a "Block out time" option in the UI, but there's none through suitescript, nor is there a "Participants" field. has anyone set these values successfully? here's my code: var record =…
-
.net 2.0 sample
Hi there, Are you planning to develop a sample supporting .net 2.0 framework? It would be also very nice if you could prepare a web based application sample... Regards,
-
NetSuiteBinding WSDL Error
Trying to migrate from 1.3.2 to the 2.0 beta. Getting the following error in VS: Custom tool error: Unable to import WebService/Schema. Unable to import binding 'NetSuiteBinding' from namespace 'urn:platform_2_0.webservices.netsuite.com'. The operation 'attach' on portType 'NetSuitePortType' from namespace…
-
Running Server SuiteScript On Demand?
Hi ... When creating a new server script, the description for a "scheduled" script reads: "This script is executed on demand or via a user-configurable schedule." All that I'm finding is the option to set the scripts to execute according to the deployment schedule ... Has anyone come across how to manually execute? This…
-
S2S Issue
I am currently unable to submit SmbXML via S2S for a client since they were upgraded to version 11. We receive an unexpected error in every response. case # 447283
-
item record
is there any way to show the landed cost in the item record? right now we have a custom tab with purchase price but that is in us dollars. when we export our item list we end up with the landed costs. i have tried to customize the item view but it's not in there as an option. any ideas?