My Stuff
Share Your SuiteWorld Experience & Earn a Special Badge!
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
Comments
-
Hi, Well thank you for looking into it, but no luck yet. When I create this filter I always get all customers. It seems this filter is testing if the relevant newsletter is defined, rather then testing what the value is for the relevant newsletter. I also tried to enter the newsletter's internal ID, but then I get an empty…
-
The Global Subscription status is concerned with those who have choosen the global opt-out. Contacts should not use the global opt-out because that would unsubscribe them from all newsletters. Clearly, the need is to set the subscription per newsletter. We would have several newsletters. How do I detect those that are…
-
Hello, I do not understand why you are telling me this. This is exactly the approach that I have outlined in my first post and I have written that it does not work. How do I detect those that are subscribed to a specific newsletter?
-
Hello, I guess I will answer my own question then. NetSuite support came up with this solution. On the criteria tab of the Saved Search create these two filters: 1. Filter = Formula (Text) > Formula = {subscriptionstatus} > is T 2. Filter = Formula (Text) > Formula = {subscription} > is newsletter01 Replace newsletter01…
-
I got the answer. Here it is. Set $CustomerId to the internal Id of the customer. [PHP]$CustomerId = 140664; $noteSearchAdvance = new nsComplexObject('NoteSearchAdvanced'); $noteSearch = new nsComplexObject('NoteSearch'); $customerSearchBasic = new nsComplexObject('CustomerSearchBasic'); $searchMultiSelectField = new…