My Stuff
Comments
-
Hi all Sorry to tag onto this thread. I have put ${item.inventorydetail} in my advanced layout picking ticket but it does not print out the inventory bins - any ideas? Cheers Sam
-
I've never heard of a field having a numeric internal ID. Internal IDs for standard fields can be found here - http://www.netsuite.com/help/helpcenter/en_US/srbrowser/Browser2016_1/script/record/account.html
-
The fix has been released to Defect 492686 - download the new client and sync data to confirm. Please update your Support case if you continue to experience any issues with the new client. just downloaded the latest version and still having the same issue! Please can this be fixed
-
Just tested my code in the console (not sure why I didn't think of it before) and an error message has been returned: nlobjError {id: undefined, code: "YOUR_SEARCH_CONTAINS_A_REFERENCE_TO_JOIN_FOR_WHICH_YOU_DO_NOT_HAVE_A_PERMISSION", details: "Your search contains a reference to join for which you do not have a permission:…
-
Depends if the script is running with its own permission or using the logged in user's. In either case, whatever Role the script is configured to use must have access to all the records you're hitting. So, probably View on all transactions and Edit to the custom record, perhaps more depending on the details of your script.…
-
Hi Kirk Many thanks for the reply. [LEFT]custbody_copy_last_sent_date is date field and the variable todayDate returns 29/06/2018. This code works for credit memos so cannot work out why it doesn't also work for invoices. Thanks Sam[/LEFT]
-
Hi Brandon I've done something similar recently: function addButton(type, form) { //add a custom button on the form and specify the function name of the client script form.addButton('custpage_Add', 'Copy to Quote',"copyToQuote();"); //this is the internal id of the client script that this script calls…
-
Thankyou very much for the reply. I have tried this but for some reason cannot get it to work. If I use nlapiGetFieldValues I get [Ljava.lang.String;@43d6ef2c and if I use nlapiLookupField I get 231,232. I did try using .split("'") but this didn't work. Thanks Sam
-
Hi Just tried again with .spit(",") and the script is working! Many thanks for the help!
-
Hi Veda Thanks again for replying. I can add/remove column fields but I cannot seem to remove any body fields from the form the customer sees. For example we have a custom field which is not ticked under print fields but is still viewable to the customer on the customer center? Thanks Sam
-
Hi Veda Many thanks. I was actually when the customer is viewing a transaction - there are a few fields which we don't want them to see. Is there an easy way to customize which fields they see when viewing a sales order?
-
Hi John Thanks for the reply. I guess thats our issue - we don't have the line id
-
Hi both Thanks very much for replying. Oliver - we aren't invoicing from the fulfilment, but this has given us an idea to try changing the shipping cost, then changing it back to it's previous value (see suiteanswers ID 40896) David - we do use OzLink, but we cannot see any scripts which could be causing this. Thanks Sam
-
Hi! Thanks so much for responding. We use invoice.fxamountremaining earlier in the template and it does return a value, but for whatever reason it does not work when we are trying to add up the rows in the table. Cheers Sam
-
Hi Thanks again, here is the code: </#if></#if></#list><#assign total = 0><#list record.item as item><#assign total = total + invoice.fxamountremaining></#list> <tr> <td> </td> <td> </td> <td> </td> <td> </td> <td> </td> <td align="center">${total}</td> </tr> </tbody> </table> Cheers Sam
-
Hi Robert Many thanks for the reply on this. I did use the recordbrowser but just realised I was looking in the transaction section, not the invoice section! Thanks Sam
-
Hi Mike No still not managed to get this sorted. I think until NetSuite remove the need to send a verification code to the postmaster address then we won't be able to use a third party SMTP server. Thanks Sam
-
Glad you got it sorted. A tell tale sign is if the emails are coming from system@sent-via-netsuite.com instead of the sender's name
-
I would double check the DKIM selector is still active. This happened to us recently and we discovered that NetSuite had turned off our DKIM selector - we just remade it active and the problem was resolved.
-
Have you double checked the 'Active' tickbox for the DKIM selector is ticked? We too had this issue recently and the cause was the box was not ticked.
-
we moved to the eu2 data center and the issue died down but we have got massive amounts of undelivered emails during the last couple of days. is anyone else experiencing issues with emails bouncing?
-
We haven't moved data centers yet and I believe our migration date is the end of the month. We do see the 'blocked by mail filter' error, aswell as 'this address has recently bounced' error - this is caused by the NetSuite mail server being flagged as spam so the emails keep being bounced back.
-
We've just moved to the EU2 data center and still issue appears to not be happening anymore, although we are still keeping an eye on it! Thanks Sam
-
I've got a monitor set-up on MxToolbox for the NS email server and its been blocked a lot over the past few days: Status Name Description TimeStamp blacklist:167.216.129.208Removed from Spamhaus ZEN9/8/2017 3:58:29 PM blacklist:167.216.129.208Removed from CBL9/8/2017 3:58:29 PM blacklist:167.216.129.208Added to Spamhaus…
-
Hi everyone We've been in touch with NetSuite about the possiblity of setting up our own third party SMTP server and they came back with the following: As we have advised you, we do not have a list of recommended 3rd Party SMTP Servers that we prefer. As long as you have access to the postmaster address wherein the token…
-
we do this by using ?string(",##0.00") ie the line of code would be ${linetotal?string(",##0.00")} Hope this helps
-
Hi I'm not sure if its a specific field that is causing the issue, my thinking was that the issue is that it isn't listing all of the 'apply' section. Hope that makes sense! Cheers Sam
-
Hi! Thanks very much for replying. Here is my code: <table class="itemtable" style="width: 100%; margin-top: 10px; margin-left: 25px; margin-right: 25px;"> <#list record.apply as apply> <#if apply_index==0> <thead> <tr> <th align="center" colspan="4">Date</th> <th align="center" colspan="4">Type</th> <th align="center"…