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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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