<task xmlns="http://midpoint.evolveum.com/xml/ns/public/common/common-3">
<!-- ... -->
<activity>
<!-- ... -->
<reporting>
<simulationResult/>
</reporting>
</activity>
</task>
Simulation Result
This item defines whether we want to create a simulation result object for this particular activity run, and how it should look like.
Some examples:
This causes the creation of a simulation result using the default definition.
<task xmlns="http://midpoint.evolveum.com/xml/ns/public/common/common-3">
<activity>
<reporting>
<simulationResult>
<definition>
<super>standard-result</super>
</definition>
</simulationResult>
</reporting>
</activity>
</task>
This uses a global definition named standard-result.
It can be customized by providing further properties within the definition item, if needed.
<task xmlns="http://midpoint.evolveum.com/xml/ns/public/common/common-3">
<activity>
<reporting>
<simulationResult>
<definition>
<metrics> <!-- ... --> </metrics>
<useOwnPartitionForProcessedObjects>true</useOwnPartitionForProcessedObjects>
</definition>
</simulationResult>
</reporting>
</activity>
</task>
This creates a custom definition of the simulation result that will be used.
See also Simulation Result Definition for more information.