My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Comments
-
Why do you have your seminar as inventory items? If they were non-inventory items, this should not happen.
-
Was this ever fixed? -Tom PS: feel ya... Mr. Wickersham (*Former Participant) Not really. You can only pull specific fields from the sales order on these emails still. Nothing has been changed. You are probably better off creating your own fulfillment email and not using the stock one, so that you can use freemarker.
-
repo seems like its down i cannot connect to either one. It keeps going up and down. Just try again later until it is successful.
-
I am not having any errors on Chrome 57. What is the whole error message?
-
They probably were unaware of it as well until someone told them or they figured it out and then traced where the issues were happening from. They probably did not want to create a statement until they had it solved. I am not sure if you will be able to get more details from these forums, but rnedelkow may be able to tell…
-
You can create it in a saved search like pcutler said and then make a criteria that says a count field is greater than X. Then you would use it as a workflow condition and schedule it every 30 minutes, or whatever timeframe seems to work best.
-
Thanks for confirming my problem. I'll see what support has to offer. salesOrder.setCurrentSublistValue({ sublistId: 'item', fieldId: 'item', value: componentsOfKit[i], ignoreFieldChange: false, fireSlavingSync: true }); Try adding these parameters to your setCurrentSublistValues. I've also had to do…
-
No problem. Greatly helped me pick up 2.0 to be able to play around with it in the console You can also get something like TamperMonkey and then run a script to load the requires on any netsuite page. Then you can just start typing your code and not deal with the requires.
-
If what starlingMark said does not work. Can you try running the function as post sourcing instead? You could also have an issue with standard vs dynamic.
-
If the setting of value is done on field changed and it is triggered with a sublistId and fieldId containing value, it means that there is a selected line. This means that you should be able to use setCurrentSublistValue() without selecting a line since there is already a selected line in the context. Plus since this is a…
-
Are you familiar with Javascript and/or other coding languages? I would look at the SuiteScript 101 video on YouTube and try and follow along with what he does. You will need to download Eclipse and the SuiteScript IDE to make things easier. SuiteAnswers has multiple examples of code that you can practice with. Depending…
-
It is in my IDE. Are you sure you are not in a 1.0 folder? I tried creating a script with it and it loaded the correct parameters.
-
Can we see how you have your item table set up? Is your script returning null on this variable? var rec= nlapiViewLineItemSubrecord('item', 'inventorydetail',i);
-
Hey Jokell, Did you ever figure this out? I have been unable to make kit items look nice on forms and indent like the regular forms.
-
Did you try ${employee.firstname} or ${assigned.firstname} ? Have you tried to pull any other user fields?
-
A nice and easy way to troubleshoot this in the future is to display the field value somewhere on the page. That way you can see what it is returning, this will help you narrow down the cause.
-
please ignore
-
You would have to create a project saved search to find the project that resource A is on and then load the record and add Resource B onto it, then loop through the saved search.
-
Hey Mike, When using the API you would need to load the record of the other field. You could try "nlapiLookupField('record type', 'joined record field', 'custrecord_custom_date'). So if it were a Sales Order and the joining field was 'createdfrom', it would be "nlapiLookupField('salesorder', 'createdfrom',…
-
{field1}|| ‘< br >’ || {field2} Or here is a SuiteAnswer that shows another way of doing it for workflows. https://netsuite.custhelp.com/app/answers/detail/a_id/23340/kw/line%20break%20in%20formula