or use <https://chrome.google.com/webstore/detail/...
# suitescript
d
@battk @PNJ
Copy code
["custrecord_membership_next_bill_date","onorbefore","today"], 
   "AND", 
   ["custrecord_membership_end_date","notbefore","today"], 
   "AND", 
   ["custrecord_membership_status","noneof","4"], 
   "AND", 
   ["isinactive","is","F"], 
   "AND", 
   ["custrecord_bill_date_val_fail","is","F"], 
   "AND", 
   ["custrecord_membership_processed_on","noton","today"], 
   "AND", 
   ["custrecord_membership_customer.ccnumber","is","T"]
Copy code
new nlobjSearchFilter('custrecord_membership_next_bill_date', null,
                'onorbefore', 'today'),
        new nlobjSearchFilter('custrecord_membership_end_date', null,
                'notbefore', 'today'),
        new nlobjSearchFilter('custrecord_membership_status', null,
                'noneof', '4'), // Cancelled
        new nlobjSearchFilter('isinactive', null, 'is', 'F'),
        new nlobjSearchFilter('custrecord_bill_date_val_fail', null, 'is', 'F'),
        new nlobjSearchFilter('custrecord_membership_processed_on', null, //do not pick up records that have already been processed today
                'noton', 'today'),
        new nlobjSearchFilter('custrecord_membership_customer.ccnumber', null,'is', 'T')];
this is what I have written in script not working
p
did you create the saved search in the UI & then export it, as we suggested?
d
Yes
First one is what I exported
@PNJ
Thanks for the help i got it working.