+

Search Tips   |   Advanced Search

Purging specific activities or entries from the trash

Use an administrative command to permanently delete a specific activity or entry by removing it from the Trash view.

We do not need to check the configuration file in and out nor restart the server when using administrative commands.

  1. Start the Activities Jython script interpreter.

    1. Access the Activities configuration file:

        execfile("activitiesAdmin.py")

  2. Fetch a list of the activities and entries currently in the Trash view ...

      TrashCollectionService.fetchTrash()

  3. Identify the activity or entry to delete from the returned list. See Narrowing down results for more information.

  4. Enter the following command to delete the activity or entry:

      TrashCollectionService.purgeTrash( java.util.Vector trashVector)

    where we specify the activity or entry to delete as the trashVector parameter.


Parent topic:
Manage trash


Related:

Start the wsadmin client