Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Please note that on Saturday, April 11, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 30 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
Netsuite Suitetalk: How to get all the customers whose account balance has changed
Customer lastModifiedDate is not updated if you create cash sale/invoice of a particular customer in Netsuite. customer balance is changed but customer lastModifiedDate is not changing. how can I get all those customers their balance is updated as per lastModifiedDate.
Please have a look at the code below.
CustomerSearch customerSearch = new CustomerSearch(); CustomerSearchBasic customerBasic = new CustomerSearchBasic(); customerBasic.lastModifiedDate = new SearchDateField() { @operator = SearchDateFieldOperator.onOrAfter, operatorSpecified = true, searchValue = new DateTime(2018, 10, 20, 13, 50, 00, DateTimeKind.Utc), searchValueSpecified = true, }; customerSearch.basic = customerBasic; SearchResult result = ACGApplication.Client.Service.search(customerSearch); var customerList = result.recordList.Cast<com.netsuite.webservices.Customer>();
Tagged:
0