Discussions
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Date Search
Does anyone (Wolverine10 ) have a snipplet for searching based on a date criteria. Below is a sample of what I'm trying to do (in VB). It seems to me that this would be simple, but the way things are going lately - nothing is simple.
Dim searchCriteria As SearchDateField = Nothing
searchCriteria = New SearchDateField
searchCriteria.operator = SearchDateFieldOperator.within
searchCriteria.operatorSpecified = True
searchCriteria.searchValue = "07/09/2006"
searchCriteria.searchValue2 = "07/15/2006"
FOFGphonecallSearchBasic = New PhoneCallSearchBasic()
FOFGphonecallSearchBasic.createdDate = searchCriteria
FOFGphonecallSearch.basic = FOFGphonecallSearchBasic
response = Service.search(FOFGphonecallSearch)