My Stuff
We’re excited to announce a brand new feature in the NetSuite Support Community—Email Digests!
Now, you can stay up-to-date with the latest discussions, helpful tips, and important announcements, all delivered straight to your inbox. Whether you’re looking to catch up on what you missed or just want a quick overview, our email digest has you covered. To learn more and to subscribe, click here.
Now, you can stay up-to-date with the latest discussions, helpful tips, and important announcements, all delivered straight to your inbox. Whether you’re looking to catch up on what you missed or just want a quick overview, our email digest has you covered. To learn more and to subscribe, click here.
Comments
-
Thanks George value1 in your nlobjSearchFilter should be an Array of values for select/multiselect fields Have you tried the following: var IDstr = ['1116','1143','1154'];
-
how to get current date and current time in suitelet?
-
Hi, I used to get the custom form text then if matches then check type == 'create' or 'view'. Now I got the solution I removed the if/then block. Works fine. Thanks a lot. Regards Shrinivas
-
Same thing I have done but whenever I open in create or edit mode I not able to line edit. Time being thought of creating sublist through script. !!
-
You could achieve this using a standard Suitelet without needing extjs using the file UI input object and then saving the file to the file cabinet (although there are size limitations). You might have a specific need for extJS but figured I'd mention anyway. we have specific need of extjs. I have created uploading file…
-
Hi , I deleted whole record and recreated ... I havent found any solution :( regards, Shrinvias
-
If I understand your question, yes, you can share custom record definitions and data using the bundler. And, if you add more values in the source account, you can update the bundle in the destination. Thank you :)
-
I think you could set when create the bundle to enable the bundle creator to push an update to any production account that install the bundle. Thank you :)
-
Hi I found in Jquery some example but if netsuite built-in api would be great and easy. Thanks for your suggestion. Regards Shrinivas
-
I have found the solution from Help center.
-
Thanks Madhur, It works !!
-
Hey Got it. Thank you Madhur.
-
If you can expose certain APIs from your website, then you might be able to catch the returned values on button click using script. Okay. But from suitescript (clientside scripting) is it possible to achieve? Thanks. Regards, Shrinivas
-
Works fine with nlapiRequestURL(). Thanks Guys!
-
Even works with firebug Interesting. Only works when editing records (on the fields I tried) -- makes sense.
-
You might want to look at nlapiRequestURL() Thank you :)
-
Hi Thanks for your suggestion and help. It works only for scripted fields. Thanks. Regards, Shrinivas You will only be able to use nlapiRemoveSelectOption on fields that you created via script (before load or suitelet). Example : form.addField('custpage_test', 'select', 'Test'); nlapiRemoveSelectOption would then work on…
-
Okay I m using nlapiRemoveSelectOption to remove all the initial options as below nlapiRemoveSelectOption('custcol_advs_selected_inventory_type', null); Getting ERROR: ReferenceError: "nlapiRemoveSelectOption" is not defined. (JobOrderUserEvent.js#136) This API can only be used for Transaction Body Fields ? Can't we use it…
-
Hi , Actually I wanted string to be converted to NS Time.like '5:30pm' to timeofday format in NS. Because I 'm storing this in recordtype which has timeofday field. Thanks any way. Not sure about timezone because dates are assumed PST from string, but try this: That should give you ideas. nlapiStringToDate just gives you a…
-
Is there any function or API to convert string '5:50PM ' to timeofday format ?
-
Hi, I have tried that but I got following error. You have entered an Invalid Field Value 17-Dec-2012 8:54:20 pm for the following field: custpage_date and time and date required in Indian Standard Time too. I have converted to time and date to IST by changing date field type to text and time field to text. while executing…
-
Hi Its working fine when i change the setup General preference date format. Thanks you.
-
HI I got the solution. But not proper. I have changed the date type to string type field. The reason for not able to convert date to string or string to date is that I have changed the preferences(Home-->Set Preferences-->general--> formatting-->date) date format to DD-Mon-YYYY (Ex. 23-Dec-2012) from this format we cannot…
-
I tried as you mentioned. But still same problem. NaN :h_a_w: today.getMonth() returns 0 for January 1 for February and so on. Thats why added 1 to get NS dates I guess. I have done some similar codes before, hope this can help. var recId = nlapiGetRecordId(); var recEst = nlapiLoadRecord('estimate',recId); var today = new…
-
Got the solution getText()
-
Yes, typically through a Suitelet for the server-side content. Hi, I have read documentation about AJAX which is available in suitescript server pages. I didn't find any api for client script/suitelet. can you give example of the API? Thank you. Regards, Shrinivas
-
i have got the solution. deployment error. wrong file. Thank you . I don't follow how you get an error with function userEventBeforeLoad(pageInit) when your script example is function caseBeforeLoad. Do you have a client script on the record as well?
-
how to create extjs form on suitelet? and how to upload the supported css and library files and how to access it ?
-
I have written the following Extjs code in suitelet embeed in inline html field. but when i deployed suitelet I can see all other elements not the extjs grid. I inspected inline html field through Chrome, the following script is not there instead i saw '<script type='text/javascript'> undefined </script>'. Can anybody help…
-
I don't believe there is a way to just add it, but can be easily recreated by adding a sublist to your suitelet, and making sure you have all the same column fields, buttons, etc. Yeah. I have recreate the sublist :(