My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Comments
-
Enhancement #160443 has been created for this request.
-
Can you please file a case with support so that may investigate as well. Feel free to post your case number on this thread. Barry
-
Have a look at this post by Yang and see if this is causing your error. Maybe confirm the line item count you are deleting. If this is the case then maybe descending order to delete will work. Barry https://usergroup.netsuite.com/users/showthread.php?t=16715 The problem was that the # of lines in the sublist changes every…
-
Hello Matt for your line item count try this line: var nextline = thereport.getLineItemCount('expense'); nextline++; and for retrieving the currency on the employee record: var rec = nlapiLoadRecord('employee', '41'); //internal ID of the employee record. var cur = rec.getFieldValue('currency') // Note this is only…
-
Hello Sue, when customer reported this problem the issue was “only assigned resources can enter time for this job’s tasks.” If this is not the problem you are having then please file a case with support so that they may investigate as well. Feel free to post your case number on this thread. Barry
-
You have a space in your function call calc ulateTime(): nlapiSetFieldValue('custevent_total_duration',calc ulateTime()); See if this will fix it. nlapiSetFieldValue('custevent_total_duration',calculateTime()); Barry
-
I do recommend reviewing the latest documentation SuiteScriptDeveloperGuide.pdf as it will explain all the functions and have examples. To get the documents you need log into Netsuite> Click on the Help link in the top right corner> this will bring up the Netsuite Help Center> On the left side under the Netsuite Help…
-
This is in the SuiteScriptDeveloperGuide.pdf: nlapiGetCurrentLineItemValue(type, fldnam, linenum) Returns the value of a sublist field on the currently selected line
-
Hello Scott, correct me if I’m wrong, 1. Have you create a Transaction Column Fields with the name manufacturertariff then added that to the Purchase order form? 2. Are you then sourcing this Transaction Column Fields from the item record? In my testing On the Validate Line Function I set my Transaction Column Fields with…
-
Hi Scott, I searched for manufacturertariff in the SuiteScriptReferenceGuide.pdf file and found that manufacturertariff is a “text” field, have you tried nlapiGetCurrentLineItemText(type, fldnam, linenum)?
-
Scott are you trying to use nlapiGetCurrentLineItemValue to pull data from the Item record???? Can you attach a screen shot of your PO form with the line Item "manufacturertariff" showing? nlapiGetCurrentLineItemValue will only pull data from the PO line item, you will need to create a Transaction Column Fields that gets…
-
Hello Steve here is an example search join I'm sure you can work with: var filters = new Array(); var columns = new Array(); filters[0] = new nlobjSearchFilter('internalid', null, 'anyof', 26); // 26 internal ID of a customer record columns[0] = new nlobjSearchColumn('internalid'); columns[1] = new…
-
Hello Shawn, The toolkit is still in beta so please file a support case to let us know of any bugs you encounter or enhancement you would like to see and we'll try to fix them as soon as possible. Barry
-
These reports should show up right away, please note logs are recorded in Eastern Time. Also confirm if you have any filtering on the report that might be preventing the log from not showing. If you still can not get the web service log to show up then please file a case with support so that may investigate as well. Feel…
-
After reviewing this software for about 30 minutes I personally like the use of SoapScope, I find it is an easier support tool for testing and creating web service operations for Netsuite. The Pseudocode user interface and how record types are auto populated is defiantly a good tool for beginners or experience users…