deleteGlobalPicklist

From AgileApps Support Wiki

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) {
  ...
}