My Stuff
Comments
-
Update: My update site was 2017.2 - I updated to 2018.1 and all is good now! https://system.netsuite.com/download/ide/update_18_1 I had to re-enter my account information, though, and add the Netsuite Environments in Eclipse, but after that all worked well.
-
I just started having issues this morning. Updated the IDE and now I see this in the logs: com.thoughtworks.xstream.converters.reflection.Abs tractReflectionConverter$UnknownFieldException: No such field com.netsuite.ide.core.account.data.JSONAccount.type
-
FYI, I was referred to this article which indicates that Sandbox accounts are affected by the deprecation of TLS 1.0 / 1.1: https://netsuite.custhelp.com/app/answers/detail/a_id/49076/kw/49076#bridgehead_1506617574 However, the suggestion in the article did not seem to work. Help!
-
What version are you running? I definitely have the latest version of the plugin, but not sure about Eclipse. Which distro?
-
Thanks, Michoel! I was able to clear it, but I'm still not getting code completion on the script...
-
It only works temporarily, and then it breaks as well. I cannot continue to work with SDF like this... any ideas?
-
Once again I began receiving errors. Unable to connect to server. I verified the password. Also, I get a Connection Reset when trying to upload files. Please help! I just updated Eclipse to 2017.2 hoping that would work, but it didn't!
-
I just upgraded now. However, the problems I had were intermittent; occurred one day, but the next time I tried it worked again smoothly until today. Hopefully, these problems will now go away for good. Plus all the other advantages of using the new IDE ;-)
-
I will; I had a couple of client accounts that were stragglers and were just finally upgraded to 2017.1, so I couldn't install until just recently. I'll upgrade soon and try again. FYI, the issue is still occurring on 2016.2 (I just had it break on me today after using it on and off since SW2017).
-
I figured out a workaround for now and updated my project to use the NA1 data center (East) and got it working. Not sure still what would have happened all of the sudden to cause it to stop working, but I am operational again nonetheless. Thanks!
-
If this helps anyone, I got in touch with NS Support and we identified that the JDK was not updated. I updated Java JDK to 1.8 (Java 8) and all worked well!
-
Two years ago they spoke about changes coming to the IDE and they didn't come until much later. Last year they spoke about certain changes to the Netsuite interface (for example, a bird's eye view of where the transaction stands from Quote to Bill) that still never has happened, to my knowledge... It was in Evan's keynote…
-
It was called Transaction Timeline... I am yet to see it though!
-
Sorry, I forgot to post that in the original! nlapiTransformRecord('salesorder', salesOrderID, 'invoice')
-
There is an issue with one particular form I am having where the History tab did not go away, even though it is showing as Upgraded/Deployed in the Upgrade Checklist. The Manager Non Inventory Part Form - and any form customized off of that one - still includes the History tab. I am in an old Sandbox account that has not…
-
Not looking to do this exactly, but am looking to write a suitelet with checkboxes / textboxes for capturing user input. I am stuck trying to figure out how to add a checkbox/textbox to a list... Any suggestions?
-
Looks like I was doing the right thing all along... but the checbkoxes don't show unless you are in edit mode. It looks like the best approach would be to create a Suitelet as was suggested, populate your own form based on a saved search, and have the form display the sublist as desired. Thanks.
-
Thanks In midst of creating a beforeLoad User Event
-
Only shows in Edit mode, actually.
-
I'll let you know if I make any progress... So far, I have: [LIST] [*]A sublist, with headers and everything [*]Values in the fields (with the proper types - float, percent, text, etc) [*]Weird sorting (can't I set it to sort by whichever field I would like? I might have to play with the saved search to get it to act the…
-
Thanks, Wiktor. I am aware of the options of setting another checkbox for marking records inactive, and keeping all of them active. . . However, I also know that Netsuite is capable somehow of setting fields with values of inactive list records. . . Many times I'll come across a select/dropdown with a checkbox "Include…
-
Actually, I didn't realize, the email address in Home > Set Preferences does follow the user from role to role. Nonetheless, I don't see why the login email address is not used for the Sender. The Help states: "If you do not enter an email address here, email will be sent with your login email address" Why is the Sender…
-
I am aware of that preference - it is set to the User Email Address. And, the truth is, in many email clients, you will never know or notice the actual sender (company@domain.com), just the From email address, which shows "user@domain.com" and all is fine. The problem arises when you use certain versions of various email…
-
After some testing, this is what I have come up with: [LIST=1] [*]Global preference: User's Email [*]Personal preference: [blank] [*]"From" header: user email address [*]"Sender" header: company return email address [/LIST] However, to get it to the point where I want it, I need to set it up as follows: [LIST=1] [*]Global…
-
despatch( You might want to run the final copy through spell-checker!
-
NOTE: You want to add a space before and after your strings in the CONCAT wherever necessary so that it doesn't display as: Commencing6/1/2011& Adding spaces within the '' will display: Commencing 6/1/2011 & Like this: CONCAT(CONCAT( '**Please Note: This item is currently out of stock, Pre-Order now for delivery Week…
-
Cloud, I would suggest taking the working formula: CASE WHEN {custitem_ebird_pre_order} IS NULL THEN '' WHEN {custitem_ebird_pre_order}= 1 THEN {custitem_due_date} ELSE {custitem_due_date} END Change the THEN statement the following: THEN CONCAT('*', {custitem_due_date}) See if that works. If so, run with it and nest…
-
You want to use the CONCAT formula to concatenate 2 strings of text together. You can nest CONCAT formulas to display the entire string. Something like this (without testing it): CONCAT(CONCAT( '**Please Note: This item is currently out of stock, Pre-Order now for delivery Week Commencing', {custitem_due_date}), '& Get 10%…
-
No problem. You, too!
-
A simple thank you will suffice. As for the final code, did you try nesting? I would suggest to add another line to the search (or another custom field, whatever it is you are doing) and copy this one, but nest the entire CONCAT(..., ...) inside another CONCAT. In this example, take the entire string: CONCAT('**Please…