My Stuff
Please note that on Friday, September 19, 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.
Comments
-
Up! I will be grateful if you help me!
-
Hello Herdi, is there any updates on this. Thanks
-
Sajishan, can you answer me that: What can I use for visitor activity Reporting when we are using SuitecommerceAdvanced, is the Google Analytics only option? Thanks
-
Thank you Sajishan, what we can use for visitor activity Reporting when we are using SuitecommerceAdvanced, is the Google Analytics only option?
-
Hello Mikko, let me know when you have any updates on this.
-
I found the problem, the sublist name is not "item" it's "items", here is the working code example: var record = nlapiCreateRecord('promotioncode'); record.setFieldValue('name','test1234'); record.setFieldValue('code', 'test1234'); record.setFieldValue('description', 'testdescription123');…
-
Hello Micah, I got same error, here is how my CSV file looks: Asset,Location 1,3 I'm tried many times without success.
-
Hello Micah, thank you for your research. I supply Asset Internal ID in the "Asset" Column - that's correct in the Location field I supply Location name "100. Бургас" which is parent location, see my list below: Here is the Assets List: What other can cause this error? Thanks
-
Thank you Micah!
-
Thanks, this answers my question. You're trying to use subsidiary with Script.getParameter(options) yes, it's a typo, actually it's custscript_subsidiary, I changed my example accordingly.
-
Hello Erick, I don't want to count calls, or do something based on that if some entry point is called or not, but I want to get script parameters once and to pass these script parameters to the different script entry points. In general my ask is how to define global variable for use in each client script entry point. Thanks
-
Thanks Erick, work like a charm! Best Regards, George
-
Thanks Erick, I'm using this approach right now, thank you for your clarification about the Dynamic mode - I now understand I can't use it on beforeSubmit.
-
My MassUpdateScript didn't help /** * @NApiVersion 2.x * @NScriptType MassUpdateScript * @NModuleScope SameAccount */ define(['N/record','N/log'], function(record, log) { function each(params) { var id = record.submitFields({ type: params.type, id: params.id, values: { 'externalid' : '' } }); log.debug({ title: 'EACH',…
-
I fixed the problem: parseInt('08') = NaN but when I specify radix = 10, parseInt('08', 10) = 8 from the MDN: radix An integer that represents the radix of the above mentioned string. Always specify this parameter to eliminate reader confusion and to guarantee predictable behavior. Different implementations produce…
-
Thank you Jack, In this case I will make a Script which will go through all unit types (load them as record) and take units from the uom sublist.