My Stuff
Comments
-
Thank you for trying. My problem is not the item record. I have a set of users who should be able to edit the inventory number records i.e. lot numbers but not the item record itself. I will insert scripting to make the item record view-only for this role.
-
Have you tried to save the record after you select the employee? If your custom fields are based on saved searches, they will not see the data until the current record is saved.
-
Thank you jj and ironside. Will give your suggestions a try.
-
Thank you for sharing. I was unable to get editCurrentLineItemSubrecord working on before and after submit on both create and edit mode. The sublist worked.
-
Hi Yang, Thanks for your reply. We managed to solve it by putting in the following headers. <cfhttp url="https://forms.sandbox.netsuite.com/app/site/hosting/scriptlet.nl?script=86&compid=759993&deploy=1&h=9aa05166c084c1c34933" method="POST"> <cfhttpparam type="HEADER" name="User-Agent" value="Mozilla/5.0"> <cfhttpparam…
-
For anyone who is interested, NetSuite Support have confirmed that the issue is in the UI. The suggested workaround is to replace the < and > signs before escaping e.g. nlapiEscapeXML(record.getLineItemValue("item","description",i).replace('>', '>').replace('<', '<')).replace(/\n/g,'<br />')
-
We are working with support but the response is slow.
-
Thanks for your reply. Unfortunately, we are not using the advanced templates. It's a basic layout. Strangely enough Date(trandate) is a date field. Perhaps I should check with Support.
-
Thanks for your reply. That worked!
-
For anyone who might land here in the future, it certainly seems to work on After Submit though the context needs to remain un-selected.