Try OpenEdge Now
skip to main content
BPM Events User's Guide
Persistent structures : Infopads : Creating infopads : Discarding infopads from memory
 
Discarding infopads from memory
Discard an infopad from memory using the discard() function. The following statement in a finalize section deletes the infopad myMonthlyTable (along with its database image) when the application is uninstalled:
finalize {
discard(myMonthlyTable);
}
This statement could also be used in the action part of a rule.