My Stuff
Comments
-
Thank you - that would probably fix it. I would make the change, except I'm not making the call. It's just automatically there when I try to run my SSP page. It's not in any of my SSP or SS files though. So, I don't know how to get to it, or where that call is, or why it's showing up. Does Netsuite have a backtrace log…
-
I'm a n00b, but I have been told deletions in NetSuite are 100% permanent. I guess you don't have a backup of your data anywhere, then? At least not of that record... If someone tells you any differently, let me know.
-
Thank you, that worked. I forgot it takes an array of strings. Now I just have to figure out why it didn't like my calls to getPageTop() and getPageFullHead() with no parameters: ReferenceError: "getPageFullHead" is not defined. (Nimbus Cart#4) 1: function service(request, response) 2: { 3: response.write("<html><head>");…
-
by 'secondary table' do you mean the join fields?
-
Mine is taking over a half hour to start as well. I thought I was doing something wrong, but based on these posts, it seems that Mass Updates just take an incredibly long time to start if done during business hours. One the other hand I am trying to update 280536 records which have over a dozen User Event scripts and a…
-
Full export is not full export. Vote for Enhancement 22349
-
Also, make sure to occasionally sync your test environment to be the same as your production environment (record types, fields, lists, etc.) so that testing gives the same results in the test environment as it would in production. This can turn into a huge project depending on how much customization your company has in…
-
Bundles to move from dev to test to production is a good approach. I suggest you augment scripting development with a version control system like SVN, GIT, or TFS for your script files. Also, every stable release should be a new bundle, not an update, because if something goes wrong with a new release, you can fall back to…
-
That seems like less of a NetSuite question and more like an HTML question. It may be important to note though, that NetSuite's UI uses HTML that might not be conducive to good JAWS operation. They will be changing the UI this year, but I have no idea if it will improve on that. If the screen reader is only going to be…
-
Thank you, frederic and jmaipid. Thank you for clearing that up, too, about the Yield setting recover point for you -- that's what I had read. I have been working with this project and I think I need to use nlapiScheduleScript no matter what, because I need to operate on 120,000+ records, and I would hit the search limit…
-
You can test the screen reader output as visible text using the Fangs addon for FireFox
-
I have noticed that adding summary types (groupings) to Results columns (thereby necessitating drilldowns) has a big effect on Saved Search speed. Also, the fewer results columns you have, the faster the search goes, in my experience - but this might only count for summary columns (Min, Max, Sum, Count, Group, etc.) I'll…
-
I will vote.
-
Oh the voting seems to be by Account - I will have to check with our admin
-
You can attach the Transaction to the email message as a PDF. The email.send parameters allow and control this.
-
fjannelle, I am unable to find a Defect about this. I thought there would be one but it seems it was treated only as a Case. I am in favor of filing a Defect, so please do so. It appears you have at least as deep an awareness of the details of the problem as I do, if not more.
-
I have not done this via Netsuite yet, but if all else fails you may consider using a library like wkhtmltopdf(this one's probably easiest), DOM2PDF, or TCPDF to generate the PDF instead. I would search out something simpler first though. These PDF generators are very tedious to use.
-
I'm all for better searches, too. In the meantime though if I ever need to keep track of a thread that I've already found, the Subscribe tool works great for that.
-
Oh it certainly requires the SQL version of formulas since it's an afterSubmit event handling state - that means it's running server-side, not client-side, so it has to use the SQL kind. Good catch, Cratch. However, I believe || is a Concat operator in NetSuite's version of SQL, and I prefer it over the CONCAT function due…
-
Hm, maybe the + operator is being interpreted as something other than "Add A to B". I guess you could try casting the field reference TO_NUMBER({custitemtestlumens}). Maybe that will help?
-
Oops I didn't see that I'd already posted this same suggestion in more detail above.... You can edit the field in the record type to have different access permissions during Searches. Maybe that will help?
-
This might help: https://system.netsuite.com/help/helpcenter/en_US/Output/Help/SuiteFlex/SuiteScript/SSRecordsFieldsSublists_ConsequencesOfUsingNlapiSubmitFieldForNonInlineEditableFields.html?NS_VER=2012.2.0 I created a test record type where I edited one of the Fields in the record type, so that in its Access tab, Default…
-
I had the same issue recently. It seems that on BeforeLoad, changes to records don't show up on the page load, but after refresh instead, so I just moved everything to the pageInit, including the record updates, and also used the SetFieldValues to update the view, since that command was doing nothing on the BeforeLoad.
-
Try this on any server-side script: nlapiDateToString(new Date())