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.
Dynamically Pull Saved Search Results using Reflection
Hello, we are looking to find a way to add new fields to saved searches without having to go in and change the source code. Let me describe what we are thinking.
Let's say we have a routine that gets saved search fields and inserts them into a database for EDI transmission, or export to a data warehouse. So traditionally this will get coded like this:
CustomerClass cust = new CustomerClass();
cust.NsCompanyName = customer.basic.altName[0].searchValue;
cust.CustomerNsInternalID = customer.basic.internalId[0].searchValue.internalId;
cust.NsCustomerCode = "X"; // just a constant
What we are thinking is to store the property names and values in a database table and maintain the fields to look for there (again, do not have to alter the source code). The property names would go in like this: