...
- Aptify strongly recommends that you use the base views in the entity definition database (typically, Aptify) as the source for Crystal Reports rather than the base tables.
Aptify reports are list-driven. When you run a report, the system first creates a List that contains the records from the specified view. The system then uses this List as the source for the Crystal Report. Therefore, to display the correct records in the report, you must add the vwListDetail base view as a data source for the report and link the vwListDetail.RecordID field to the ID field of the report's service.
Info If you create a Crystal Report that does not include vwListDetail as a data source, the report will display all records in the service rather than only those displayed in the selected view.
- Do not define any Record Selection filters within Crystal Reports, or attempt to create a report from a specific set of records from the selected view. Any filtering of the records should be done in the selected view.
- Aptify provides many sample reports with the baseline Aptify product. You can use any of these reports as a starting point for your custom reports.
- You can find a report's Crystal Reports (*.rpt) file in the C:\Program Files\Aptify 5.5 folder on a client computer that has recently run the report.
Alternatively, you can download the report file to your client computer's C:\Program Files\Aptify 5.5 folder by right-clicking the report's Object Repository Objects record in the Object Repository Administration dashboard and selecting Download Object from the pop-up menu.
Info title Concerning Aptify Web For Aptify Web, you must put that the Crystal Reports (*.rpt) file in the C:\Program Files\Aptify 5.0 on a client web server environment to make sure that the Cyrstal Reports works as expected.
With the below setting in the 'Web.config' file, the web Aptify Web application fetches the Crystal Reports (*.rpt) file from the C:\Program Files\Aptify 5.0 location:
Code Block <add key="Aptify.Framework.ObjectRepository.AptifyObjectRepository.DefaultObjectCachePath" value="C:\Program Files\Aptify 5.0" />
- If the entity in which the report is to be associated with has field level security enabled, the Verify on First Refresh option must be cleared under the Crystal Report Options.
...