My Stuff
Comments
-
Hi, Change the name to NLCUSTRECORD17
-
Thanks Evan, I did something very similar to your suggestion. I've abstracted the item pricing to an additional layer; "Insurance Type" (EG: HMO, PPO, Medicare, etc) The Insurance Type record has a collection of child Insurance Item Details (equivalent to your carrier item price record). The Insurance Carrier in turn has a…
-
Agree. Very nice. Sort of a: var fld = form.getField([built-in listfield]); fld.setSourceFilter([Saved Search ID] or perhaps an array of nlobjSearchFilter objects); Was thinking for of setting actual values, like a hash of key/values. FULL explicit control over what is populated. It will never happen though :(
-
Hey Jim, Yeah, check out my previous post on this thread. I'm assuming you replied to Marty and didn't see my response to him. Other names are interesting but still not a good fit for us.
-
Hi Peter, thanks for the post and sharing your experience. I'm wondering if there is anyway to filter non-custom fields on a record? For example, on the case record if I could specify a customer category filter that would be a great solution. Looking over the docs I don't see any way to do this (filter built in types). Am…
-
Let me ask another question: Is it possible to setup a Many-to-Many relationship between custom records without making one a parent? I've got a basic One-to-Many setup but needed to create a field on the child and set it as a parent. What I can't seem to figure out is how to have two parent records reference the same child…
-
Enhancement #2477 already exists in the system to track this. You should contact support and vote for this enhancement. Thanks, Yang I sent a request to support to attach my account to this er and they show this ER as: Enhancement 2477 - Transactions>Assess Finance Charge: Customer column in machine is incorrectly entitled…
-
I'm sad that this has 3 votes :( I'm also surprised that with the increasing number of partners developing bundles and verticals that there haven't been more requests for this. So if you read this post and you'd like custom icons for your custom records please log into the custom support center and vote for 136283. Thanks
-
I think I may have ran into this as well :( https://usergroup.netsuite.com/users/showthread.php?t=9445 I can't seem to make a custom transaction field source from the entities contact list. Further more I would need to filter that list by some fields on the contact record. Has this ER been implemented?
-
Thanks for the suggestion, but yes, I'm returning true where appropriate. I've updated my original post with a simplified code sample.
-
Thanks for the reply. [LIST=1] [*]Scheduled script - scheduled on demand [*]It's possible, we have hundreds of users. That shouldn't matter though, I'm not retrieving and then updating the order. If nlapiInitializeWorkflow() IS writing to the target record it should be the same as nlapiSubmitField() which isn't subject to…
-
Try the field 'statusRef' with value of "B"
-
Is it legitimately using up > 1000 units or is something going wrong? Options I can think of: [LIST=1] [*]Deploy UE against Item Fulfillment that will schedule a script using nlapiScheduleScript() [*]Optimize your WorkFlowAction script to not use > 1000 units - rarely is there a real need to use this many units, there is…
-
nlapiTransformRecord() doesn't support this transformation. You may want to look at the URL params when you click the "Spec. Ord" link and see what's there, possible that you can use those params as initValues to a nlapiCreateRecord() call to source the items on a new purchase order.
-
Read 2015.1 release notes on "Email Capture Plug-In" - does just what you want. Sounds fun, I wish I had a need to use this!
-
Read 2015.1 release notes on "Email Capture Plug-In" - sounds like it will do exactly what you want.
-
I was wondering if that was the issue for you. I had the same problem at first and it would have been a show stopper. We are also under source control and I have subfolders. For yucks, and because I like to tweak things, I went and deleted the .metadata folder in the workspace and started over. In a clean workspace in the…
-
Hi Corey, I have concluded my testing and uninstalled SuiteIDE - so I guess that gives you an idea how I felt about it. I didn't care for the editor, the spelling error markup but no suggestions to fix and the auto complete. I spent about 5 hours with it and tried to keep an open mind, but in the end it didn't provide…
-
Hey Corey- I had to convert an existing eclipse project into the new NetSuite script project type (this was easy). I did this because I already had all my scripts downloaded and under revision control so I couldn't just use SuiteIDE to download everything and start working. Instead I had to migrate in my current folder…
-
Thanks, but I don't want to use the IDE - too difficult to work with existing projects. The old plugin is all I need.
-
I get this error when updating eclipse and it's likely that NetSuite has taken down the plugin and is pushing the SuiteIDE or whatever it's called. No repository found at http://suitesource.netsuite.com/site/NetSuiteEclipsePlug-in/site.xml. :(
-
Thanks for the reply Smyre, I need the script to load on view not just on edit, so unfortunately using the setScript method in a beforeLoad script is the only way to get any scripting in. I was hoping that since I am setting a 'script record' to be included that Netsuite would also pull the library files listed on that…
-
Just received an update: Abstract: Client SuiteScript > Expense Report > nlapiGetCurrentLineItemValue on a Numeric field from Validate Field Event returns blank string Changes: Status changed from Open - Under Investigation to Testing/Pending Releas So it may make it in Tonight's update. I'll try to test this out Tomorrow…
-
The fieldChanged is just an empty function body, a placeholder onFieldChanged: function BOFC_onFieldChanged(type, name) { }, As for the debugger, it's both a tool and a subdomain, like "beta.netsuite.com" so you can use debugger.netsuite.com to debug scripts, but it doesn't prevent you from using the account the same way…
-
Update: The fix has been released and this is now working - thanks NetSuite!
-
Thanks for the continued attention. I have seen what you describe with sales orders, in fact I have two cases open with supported related to this and one defect. On the fulfillment issue it NEVER reports the correct value entered, I can change it to 100, 200, 300, 400 and it will always report the value in the remaining…
-
I was calling from 714-602-**** Maybe it's not in the logs because I finally hung up after 20 minutes or so?
-
Interesting, thanks for the confirmation! Do you mind telling me what browser you are using? I'm perplexed; I've done essentially what you have done and it's failing terribly.
-
.... also using the validateLine event here. ... Thanks for reply. Are you using validateLine or validateField? validateLine appears to work, validateField does not. Can you confirm?
-
I just tried in IE 9 and I get the same result as in FF and Chrome. I can't get anything predictable out of this thing, in fact it just gets more and more strange. If I check the Fulfill box for the line I'm editing I will then get a value, but it's the wrong value. For example, let's say I have 4,000 remaining on a line.…