My Stuff
Comments
-
That is a good workaround, thanks for sharing. However... does it seem like this should even be something that we MUST do?
-
You'd like to show a specific CONTACT form based on the status of the entity that the contact will be attached to? Do I have that correct? Click 'add contact' from lead = show contact form A Click 'add contact' from prospect = show contact form B Click 'add contact' from customer = show contact form C Is that correct?…
-
Found out today that what I want to do isn't possible. There is no way to source a field from another field on a custom record using the parent relationship. This really breaks my design (again). :( I will post teh ER# when I get it.
-
It's better than nothing... function OnPageInit() { try { var element = GetTitleElement(); if(element == null) { alert('failed finding element'); } else { element.innerHTML = 'I'm a new title!' } } catch(err) { HandleClientScriptException(err); } } function GetTitleElement() { // get all the <td> elements and search…
-
I am still interested to hear from others who use WS to update Customer Contact demographics and how they lock users to View only rights to these records but still allow Edit rights to Lead/Prospect Contacts. I'm not clear if your users are in the NetSuite UI or a custom desktop or web application using Web Services? You…
-
Ugh... Exactly! I should have updated this thread with the better solution that you suggested elsewhere. I've switched to using the BeforeLoad to set the title and also redirect to specific forms based on the entity type. If anyone is interested you can find the thread here:…
-
Yes, they are listed in the Entry Forms list. Setup->Customization->Entry Forms
-
Hi Evan, There isn't a formula checkbox for inline-html fields, at least not in my configuration, I suppose there could be an option somewhere? I did a couple more tests; 1) Emptied the default value field for the field = no error, but nothing displayed either (obviously) 2) pasted the html back in = error 3) simply…
-
Thanks Evan, I've got the packing slip option taken care of 90%. I need to display a SN column on the RMA slip, currently it displays "item", "quantity" and "reason for returning" - is it possible to add the "Serial Number" column? I don't see RMA slip in the list of customizable forms. As for #2, I will experiment some…
-
I didn't find a solution, no. I gave up trying though and moved on to other things. Good luck, if I find anything out I will update this thread.
-
Thanks for the reply. I have checked that option and it makes no difference.
-
Thanks Evan, I see it now. Don't know how I missed it before! ;)
-
That is fantastic, I really hope it is possible. Thanks for the update!
-
Phased across Q1/Q2 next year. Thanks, -e Do you know if we will be able to create package line items? It would be good to know, otherwise I may be forced to take fulfillment out of NetSuite and handle in a separate app... I don't want to do that.
-
yeah, but there are lots of things you can do that aren't supported. If I waited for everything to be supported I wouldn't be able to accomplish a considerable amount of my use cases.
-
I've got a similar problem. I have pairs of fields that need to be located close to one another (IE: [ ]Customer has insurance) then I need to have the textarea field positioned just below it. I have tried different combinations of checkboxes for column break and the only reliable thing I can get out of it is that checking…
-
Deploy a UE script with a BeforeLoad handler and then call form.removeButton(). Now yo will need to determine the button ID but this is not difficult by looking at the source. For example, the (useless) "Print BOM" button on the Work Order Transaction is: "printbom". Be warned that you can get undefined behavior. For…
-
You didn't ask, but I think the supported method is a better choice. I really only supplied the button comment in case someone else comes across this thread while searching. In your case checking during validation seems like a totally fine solution and you can call support if you have problems! :p
-
That read a bit snarky! It wasn't intended to be at all, I can see how it could come across that way though. I meant that by using a "supported" method you can actually call support if there is a problem and they will help you as where an UNsupported method will invoke a "Sorry, but that isn't supported so we can't help…
-
We are working on getting custom image fields to show up on printed forms. I suspect we will get this working in the September maintenance release. Thanks, -e and on 7/20 Thanks for the update Evan that would be very helpful. Is there a strong likleyhood that this will be in the September release? Trevor yes Thanks, -e…
-
*bump* anyone know hw to get NS to use a particular packing slip from the fulfillment form? Do I need to create a custom sales order with the same name and it will automatically pull the correct packing slip? Thanks, Steve
-
Which request? I was asking Evan if the functionality he mentioned was implemented and if so what are the details.
-
I don't think you can merge images into printed forms. You could create a special form for each customer and then automate the selection of the proper form when the customer was selected. I presume that this is for drop ship. Most companies just rename BillTo as From and hide the logo. The result is a packing slip that is…
-
Evan, In an effort to test my earlier suggestion I created a trans sales body field. I checked the "Print on Statement" and set a default value. I then generated a statement and the field wasn't displayed. Is there something else that should be done? I have never thought of doing this but I engaged the question because I…
-
Actually I just tested this and I can't get a custom field to show up on a Statement so either my suggested method is garbage or NetSuite has a bug. :confused:
-
OK, thanks for the confirmation. :o
-
Actually for testing I just set it to 'testtesttesttest' (or something like that...)
-
Melinda, We have the same problem! Did you find a way to add payment methods on the statement? Thanks! Lisa Try creating a new custom transaction body field that will default to the payment method of the Invoice. Set this custom field to "Print on Statement"
-
I know the last post was a while ago but I would love to know how to do this. I am trying to add a custom message about payment methods to the statement as is currently on our invoices. I cant get it anywhere but in the columns. How come I can create a custom field on an invoice but not a statement? For our business the…
-
They want to see the total as a field on the custom record? If yes, then you can either: [LIST=1] [*]implement an on-demand solution with a User Event before load script that sets the value of the field. [*]The other option is to have a scheduled script that routinely runs and updates the field value. [/LIST] Me? I'd go…