Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0.0-incubating
-
None
Description
Using console:
- Create a new report
- Execute the report
- The execution succeeded
- Open the report, the list of executions is empty.
Access Syncope via Restful API:
there is a report execution id=100 for report id=100
http://...../syncope/rest/report/execution/list.xml
<list>
....
....
<org.syncope.client.to.ReportExecTO>
<id>100</id>
<status>SUCCESS</status>
<message/>
<startDate>2012-03-17 07:49:37.491 UTC</startDate>
<endDate>2012-03-17 07:49:39.56 UTC</endDate>
<report>100</report>
</org.syncope.client.to.ReportExecTO>
</list>
but report details for report id=100 has executions tag empty!!
http://...../syncope/rest/report/list.xml
<list>
....
....
<org.syncope.client.to.ReportTO>
<id>100</id>
<name>test2</name>
<reportletConfs>
<org.syncope.client.report.UserReportletConf>
<name>testUser</name>
<attrs>
<string>userId</string>
<string>email</string>
</attrs>
<derAttrs/>
<virAttrs/>
<features>
<org.syncope.client.report.UserReportletConf_-Feature>id</org.syncope.client.report.UserReportletConf_-Feature>
<org.syncope.client.report.UserReportletConf_-Feature>username</org.syncope.client.report.UserReportletConf_-Feature>
</features>
</org.syncope.client.report.UserReportletConf>
</reportletConfs>
<executions/> <!-EMPTY->
<latestExecStatus>SUCCESS</latestExecStatus>
</org.syncope.client.to.ReportTO>
</list>