SearchGlobalPicklists
From LongJump Support Wiki
Revision as of 20:15, 23 December 2010 by imported>Aeric
Search for Global Picklists that match specified criteria.
- Syntax
List searchGlobalPicklists(SearchContext searchContext) throws Exception
- Parameters
-
- searchContext - The object that specifies search criteria.
- Returns
-
- A List of search results.
- Throws
- Exception
- Example
- This example ....
try { SearchContext context = new SearchContext(); // ...set criteria... List results = Functions.searchGlobalPicklists(context); } catch (Exception e) { ... }