My Stuff
Comments
-
No - Assembly items are stocked independantly of their member items. As such, making assembly A only looks at the number of member item 1 and assembly B in stock not member items 2 and 3. The on hand amount of items 2 or 3 is already less the number of those items already build into assemblies.
-
But also, you have to work through your entire inventory to find items you want to order for one particular vendor. It would be a real time saving device to be able to look at just the one vendor's items. I'll be voting for this enhancement!
-
Main line = false should show you a result for each line of the Sales Order
-
Thanks for your response Mark. Unfortunately the 'default' address change is not logged in the system notes - only the creation of a new address so I end up with the same result. I can show changes on the search which would allow the recipient to see all address changes that have been made and deduce whether it is legit or…
-
I have been trying to do this too, but with the header - have you had any luck?
-
Or give us field-level security like salesforce.com Or field-level security similar to custom fields
-
Thanks JT This is a brand new PDF that I have made and am creating the fields in adobe acrobat rather than Netsuite (which I should have said in the first place - sorry). I see what you are saying regarding the braces, but the odd thing is that some of the fields work with the 'NL______' format, but others dont... edit:…
-
I'd just like to add my voice to this request as it is something we could use too. At the moment we have a separate T&C document that we are looking at attaching to a message containing the estimate/sales order/invoice as a PDF. If it was all part of the same document it would certainly be easier... Peter
-
Hi Ottoatm I suppose that what I want is for an image that is selected in an image field to show on a PDF when merged with the record. I'll have a look into nlapiXMLToPDF - I have not played with that at all Many thanks
-
When I 'add to cart' I only get the single item I clicked the button for, which is what I would expect. Have you fixed it already?
-
Hi Andy This is something I was looking for too, but looking in the help, it appears that sublists are always at the bottom of the page.... Peter
-
Hi Carlo Thanks for your quick reply - I have changed my script for the following: for ( var i = 0; results != null && i < results.length; i++ ) { var row = new Object(); row.trandate = results[i].getValue('trandate'); row.tranid = results[i].getValue('tranid'); row.entity = results[i].getText('entity');…
-
Hi Carlo Thanks for getting back to me. I did try that last week, but it threw an unexpected error - my syntax was slightly different though, but i think it does the same thing: var results = nlapiSearchRecord('opportunity', null, returnFilter, returncols); for ( var i = 0; results != null && i < results.length; i++ ) {…
-
Hi Lorne That worked - thank you Is there any particular reason thet the .setCurrentLineItemValue didnt work?
-
Well spotted - intCount + 1 appears to be the line number I hadnt noticed that - thanks Eagle Eyes ;)
-
hmmm, thats not how it appears in the documentation - the .insertLineItem bit appears to do the select part as well (in a similar way to how it works in the UI)
-
It is a suitescript function which allows you to log details/variables of what the script is doing. Its very useful for debugging scripts
-
Yeah - you can use a workflow, specifically the 'Set Field Display Type' action.
-
@Matt: Yes, this is the exact thing which is causing my error. I also tried to use nlapiSetLineItemValue and select the line from within the function, but this doesn't fire at all!
-
Hi Matt I just wanted to add that I am having exactly the same error when I use nlapiSelectLineItem in a group on a Purchase Order. Have been going through it in depth with Support but have yet to find a resolution. Peter
-
Hi Evan Thanks for that, just what I needed. It allows the script to fire when the 'end of group' line kicks in which is great. I do have one problem, and that is writing back to the line item using nlapiSetLineItemValue - it doesnt seem to work... Any ideas?
-
Hi Peter, Since I believe you are using a client side script you should be using nlapiSelectLineItem, nlapiSetCurrentLineItemValue, nlapiCommitLineItem Thanks Javier I seem to be opening a whole can of worms now with this script... When I set the value for 'Rate' on the line item, it does not automatically update the…
-
I think I have sorted it now - that error was because it was trying to apply my script to the 'group' line of the group as well as the items within the group. I told it to ignore group lines and now it seems to be working fine :D Thanks all!
-
I'm glad everything worked out for you Peter. Just to clarify, did you fix it by setting the function to run synchronously or did you have to calculate and set the amount? I set the function to run synchronously, and it recalculated everything else of its own accord. The other thing I changed was to make it ignore groups…
-
Thanks again :) Now I seem to be getting a JS_EXCEPTION Error Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus.
-
Thanks Yang That worked a treat! Out of curiosity, my code originally had var custId = nlapiGetFieldValue('entityid'); but when i tried to set an alert to show me the entityid it came back null. Why would this be the case? Thanks again Peter
-
Lastly, not all tran types are scriptable, so you must EXCLUDE any non-scriptable tran types in your saved search criteria. This is probably a question for Evan - I have run Nick's script to change the department on transactions on my account and it works on all of the transactions I needed apart from Item Fulfilments.…
-
I also thought our IT fees would reduce via a cloud system. I spend more on developer projects now (to add features and fixes that are slow to come to NS) than I did using multiple locally hosted systems. Out of curiosity, is that because development is now an actual possibility (ie you now have more control over the…
-
Well the field-level help says it is supposed to accept semicolons (and no spaces between addresses). So I would open a support ticket because it is not behaving as the field help says it should. You are in the U.K. Are we talking about he same semicolon? Which is ; Hi Nick Our field level help says "Enter your customer's…
-
You can put multiple addresses in the To Be Emailed field * You can enter multiple email addresses by separating them with a semicolon. It is important to separate the addresses with only a semicolon, and do not include any spaces. I was just trying this as not being able to send emails to multiple recipients (NOT CCs) has…