My Stuff
Comments
-
Netsuite has two-factor now, but some of us would LOVE to see it take advantage of RSA's iPhone app. I try to walk as lean as possible and abhor the idea of carrying around a hardware authenticator. I already dislike carrying around my iPhone but I kinda have to already; floss in front left pocket, lean wallet with only…
-
Burp. And can't edit titles either. ssssssssssssssssssssss oh well I didn't really expect an answer anyway. P.S. Why the different user name? I left my other company and Voltron was tied to the email address I had there.
-
Figured. Still see you at SuiteWorld? Should be able to in 2014. I was in the first week of my new job when SuiteWorld 2013 was going on, and couldn't swing it.
-
Hi, Corey. I can't help, but I thought I'd point out I think you mean 2013.2. If not, time to upgrade again! You wanna know how little help I am? I can't even remember how to download the IDE since I had to get a new computer. Josh (formerly Voltron)
-
Support responded, citing SuiteAnswers article 39120: "Only users with an Administrator role initially have access to the Release Preview account. An Administrator can give Release Preview access to other users as needed for testing." They noted the article was created in 2014 as evidence this has been the behavior since…
-
I'm not totally familiar with "NLRecordScripting.scriptInit$sys#231," but that message reads like a typical script error I've seen wherein someone was testing in the browser console then uploaded the code to the environment (they probably tried console.log([somemessage])). If you got an email about the error, the details…
-
I had an issue with RP availability for 2019.1. More complicated scenario, but perhaps anecdotal evidence they're struggling with Release Previews this time. I'm on a Tier 3, dedicated environment (ie not shared tenant), so I can choose a different phase. Was scheduled for Phase 2 (mid-March production), but requested a…
-
Support got back to me and confirmed my memory isn't fading yet. This "feature," as they call it, is new as of 2018.2. I vaguley recall with 2018.2 that users still showed as having access but logins failed; at the very least, I recall having trouble with it. Would like for this new feature to be peeled off or be…
-
Yep, I noticed something similar the other day, and have verified it further since your post. Bothersome. However, with past recent RPs (2018.2 and 2018.1 for sure), users appeared to still have access, but I had to "touch" their profiles for them to be able to log in, so it's hardly any change except I have to respecify…
-
If nlapiGetField() would accept the integer, that would help. If it did, you could do something like: var value = nlapiGetFieldValue('custrecord_fieldlist'); var fld = nlapiGetField(value); //value might be -1099 fld.getName();
-
Owner can be no one, too.
-
Gah. That did it. I knew that too. Thanks. Gets me all the time. :h_a_w: :D
-
Or look in the URL, though I know that can be confusing sometimes. I'd think the people concerned about internal ID would be technical enough to see "id=xxxx"
-
I must not follow, and I haven't had a NS system with Support Cases enabled in 3 years. However, I'm able to upload files to a case I have with NS Support, and I can see that section when I log in (as a customer, of course). Perhaps you mean your reps are unable to upload files that then show in that area.
-
Ah, okay. Didn't have the context. How about that comma after {today}. What's that for?
-
For starters, I don't think you need "transaction.trandate," just "trandate." You may not need that on any of those referenced values. I get errors when trying to reference the fields that way.
-
Not sure what you're asking, but it can probably be done. Well, technically, the function will probably still be called but the action inside it can be bypassed with conditions. Elaborate, and I can probably help.
-
I don't think you need to make any changes to the script to simply do what you're asking. I set up a User Event script and used the same code, but I modified it to make it more readable. Ran fine. Then I added Kim's 'csvimport' context suggestion and it ran fine, too. function update_price() { if…
-
Thanks. I only wish I understood... Sounds like you have a client script. Show the code and tell us the requirements and I could probably translate it to a server side.
-
I don't know about importing and pricing; I just know you can import some prices, according to the import field selection. Have you tried something simpler in that 2nd line to see if it's even executing right? Also, like I did with your script previously, I'd simplify that line: pull all the math out of there and put the…
-
Shaun, try changing ownership of that list from yourself to someone else (or no one) and logging in with a role other than Administrator that doesn't have permissions to add to lists. You'll likely no longer see the + or 'new' option. Or, look at the entity record at that field in someone else's computer and role. Make…
-
Not really. I'm still guessing you're talking about an item record because you've not said where. Is that right? I would talk to whoever your Netsuite administrator is and show them what you're talking about and ask what's setting it. Manufacturer City shouldn't have WA (I'm assuming Washington) since that's a state. Is…
-
I might be able to help but I don't know where you find the field "manufacturer city." I assumed it was on something like inventory item. Are you sure there's not a script or workflow setting that field?
-
Looks like it examined one field, not two.
-
RE: Remove the 'Submit and Close Case' button in Customer Centre form Hello, The ability to remove or disable the Submit and Close Case button from the case form used in the Customer Center has been filed as an enhancement. Please vote for Enhancement 100318. As an alternate solution, you can perform the steps below: 1. Go…
-
Could be feasible with a script, but that script would likely have to exist on every record type and anywhere else they go. Would need to execute on View. It could send out a beacon each time it is triggered, simply updating a given record or creating a new record (and I'd scrub/delete those records on a rolling week,…
-
If it exists, I'm not aware of it. I'm sure it doesn't. I'm also certain the user will not get kicked out just for a role add, remove or permission change. My experience is role and permission changes aren't realized until the user logs in again. The log out isn't necessary, I believe.
-
I see indeed that the saved search for Time lacks some of the features for email triggers that other saved searches have. Workflow apparently can't access Time either, as you say. Surprised by this. For script, I think you could use BeforeSubmit or AfterSubmit and see if status is Approved and send email if so. That would…
-
Ouch! Just saw this thread from 6 years ago. I need to merge employees because our finance group has created multiple sets of duplicates over the past 8 years and pointed JEs to them. Some JE's can be modified with no G/L impact to allow me to point to the dominant employee record, but there are many that can't be…
-
Off the cuff, I think the syntax should include the list type, like record.getLineItemCount('item'). Totally from memory, so I am likely wrong at least a bit. Check Help or SuiteAnswers for clarification on that function.