!--a11y-->
ACTIVITIES / ACTS 
Searching for activities based on given criteria and displaying information about found activities. There are two possibilities for displaying the output:
· Formatted: The formatted output, which is used by default, is easier to read, but it can truncate some long names.
· Unformatted: The unformatted output does not truncate any names, but can be less readable than the formatted output. It is specified by the –uf option.
You are in the command line editor.
...
To show all open activities of user X created in workspace //path/to/wsp1, execute:
acts –UX –w //path/to/wsp1 –o
The –U option specifies the user who created the activity, the –w option specifies the workspace the activities are associated to, and the –o option specified that we want only open activities.
...
To show all activities integrated into workspace //path/to/wsp1 after the 1st of April 2003 (for each activity, show its name, creator name, and integration date), execute:
acts –w //path/to/wsp1 -rind "@2003-04-01 00:00:00" –fAN –fCBy –fIND
The option -rind "@2003-04-01 00:00:00" specifies the “integrated after 1st of April 2003” constraint, the –f switches specify output fields as follows: –fAN specifies the activity name field, –fCBy specifies the field created by and –fIND specifies the field integration date.
...
To show all activities integrated into workspace //path/to/wsp1 between 1st of April 2003 and 1st of May 2003, execute (for each activity, show its name, integration date and the integration number; use unformatted output):
acts –w //path/to/wsp1 -rind "@2003-04-01 00:00:00" "@2003-05-01 00:00:00" –fAN –find –fIN –uf
The –fIN option specifies the field integration number. The –uf specifies the option unformatted output.