Difference between revisions of "DeleteGlobalPicklist"

From AgileApps Support Wiki
imported>Aeric
 
(No difference)

Latest revision as of 20:11, 23 December 2010

Delete a Global Picklist.

Syntax
  void deleteGlobalPicklist(String id) throws exception
Parameters
  • id - The picklist identifier
Returns
void
Throws
Exception
Example
This example deletes a picklist with a known ID.
try {
  String id = "9610428a58bc4af3ab66032dae4fd0ae";
  Functions.deleteGlobalPicklist(id);
}
catch (Exception e) {
  ...
}