Embedding reports in the user interface
In order to display a report in a One Identity Manager administration tool, such as Manager, you need to link in the report as a custom interface form.
In the Manager's info system, you can display reports that you create in the Report Editor as statistics. To do this, you must alter the Manager's user interface. The report opens when you double-click on the statistic's header.
To create a user interface form
-
In the Designer, select the User interface > Forms > User interface forms category.
-
Select the Edit form task.
-
Select the Form > Insert menu item.
-
Edit the interface form's main data.
Take the following cases into account:
-
Use the VI_Report form definition.
This form definition is configured for displaying in the graphical user interface and in web applications. You only need to set up one interface form for this. Which form template will be used to display the interface form is decided dynamically, depending on usage.
-
In the form’s configuration data, enter the name of the report to be run and the report parameters in the Properties section.
Syntax:
<DialogSheetDefinition FormatVersion="1.0">
<Properties>
<Property Name="ReportName">ReportName from the DialogReport</Property> table
<Property Name="ReportParameter.Parameter1">value1</Property>
<Property Name="ReportParameter.Parameter1">value</Property>
</Properties>
</DialogSheetDefinition>
Example:
<DialogSheetDefinition FormatVersion="1.0">
<Properties>
<Property Name="ReportName">CCC_Employee_by_Department</Property>
<Property Name="ReportParameter.UIDDepartment">%UID_Department%</Property>
</Properties>
</DialogSheetDefinition>
-
Assign the user interface form to the applications and permissions groups.
-
(Optional) Assign the user interface form to the object definitions.
-
(Optional) Assign the user interface form to the menu items.
Related topics
Generating and exporting reports on a cyclical basis
You can create customer-specific processes to control the creation of reports and perform the export on a cyclical or event-controlled basis.
You can use the ReportComponent process component to create reports and export them to different file formats. The following formats are supported: HTML, PDF, RTF, TEXT, XLS, TIFF, XML, CSV, XPS, DOCX,and XLSX.
To exports reports in CSV format, you can also use the ScriptComponent process component with the CSVExport or CSVExportSingle process tasks.
NOTE: Use the default report server as executing server in the processes.
Related topics
Adding custom tables or columns to the One Identity Manager schema
The object technology implemented in One Identity Manager makes it possible to add customer-specific columns and tables to the existing application data model at the database level. These are, therefore, available at the object level with all corresponding tasks. A custom extension to the system data model is not recommended.
Basic knowledge of the database system's SQL Server in use is a prerequisite for making schema extensions. It is assumed that you understand the concept and the architecture of One Identity Manager.
To implement a custom extension of the One Identity Manager schema, use the Schema Extension program. You can make the following extensions using the Schema Extension:
The Schema Extension program creates the schema extensions in the database and ensures that the necessary extensions are made in the One Identity Manager schema. The basic table definitions and column definitions of the custom tables are entered in the DialogTable, DialogColumn, QBMRelation and DialogValidDynamicRef tables. You must then adjust the properties in the Designer to the desired requirements.
The Designer contains a variety of consistency checks. Run these consistency checks and apply the repair methods after carrying out a schema extension and after making changes to table and column definitions. For more information about checking data consistency, see the One Identity Manager Operational Guide.
You cannot create custom functions, triggers, or database procedures with the Schema Extension program. If you need custom functions, triggers, or database procedures, add these to the database in a suitable program for running SQL queries. Keep to the following conventions for name database components.
-
Name begin with the CCC_ string.
-
All names are a maximum of 30 characters long.
-
One Identity recommends using UpperCamelCase as notation for the names.
Detailed information about this topic
Related topics
Creating new tables
Use this task to create a simple table in the One Identity Manager schema.
Technical details
To create a simple table in the Schema Extension
-
Start the Launchpad and log in to the One Identity Manager database.
-
Open the Launchpad and select the One Identity Manager Schema Extension entry. This starts the Schema Extension program.
-
Click Next on the start page.
-
On the Database connection page, check the connection data for the One Identity Manager database.
-
On the Select method page, select New table.
-
On the Create new table page, enter the following information.
Table 165: Table properties
Table |
A technical name for the table. |
Display name |
Displays table name The display name is used, for example, to identify the table in a database search or for error output. |
Description |
Comments on using the table. |
-
On the Configure columns of table page, create the new columns. For more information, see Defining columns.
Related topics