deleteGlobalPicklist
From AgileApps Support Wiki
Delete a Global Picklist.
- Syntax
- <syntaxhighlight lang="java" enclose="div">
void deleteGlobalPicklist(String id) throws exception
</syntaxhighlight>
- Parameters
-
- id - The picklist identifier
- Returns
- void
- Throws
- Exception
- Example
- This example deletes a picklist with a known ID.
- <syntaxhighlight lang="java" enclose="div">
try {
String id = "9610428a58bc4af3ab66032dae4fd0ae"; Functions.deleteGlobalPicklist(id);
} catch (Exception e) {
...
} </syntaxhighlight>