Configure the widgets - HxGN SDx - Update 64 - Administration & Configuration

Administration and Configuration of HxGN SDx

Language
English
Product
HxGN SDx
Search by Category
Administration & Configuration
SmartPlant Foundation / SDx Version
10

Several example widgets are provided with the system, we will use three of these on our dashboard. This section describes how to add these widgets to your dashboard and explains the features of each in detail.

What example widgets are provided?

SHARED Tip To see how each widget is created, in the Dashboards feature set, select Widgets, and click on the name of the widget to see its properties.

Name

Type

Description

Compatibility

HEX_Todo_List

ToDo list

Lists all tasks, assigned to me, unassigned, and unclaimed across all accessible scopes.

Home screens only

HEX_Tag_Asset_Details

Form

Lists the asset related to the selected tag. Shows the following asset properties: Name, Description, Serial Number, Model, Manufacturer.

Dashboards only

HEX_Tag_Details

Form

Shows the selected tag details. The properties shown are: Name, Description, Safety Critical, Criticality Rating.

Dashboards only

HEX_Tag_Open_Change_Requests

Count

Lists change requests (with the status of IN PROGRESS, OPEN, or APPROVED) which are related to the selected tag. Shows the following change request properties: Name, Description, Priority, Status.

Dashboards only

HEX_Unit_Details

Form

Shows the selected unit details. The properties shown are: Name, Description, Area.

Dashboards only

HEX_Unit_Tags

Grid

Lists tags related to the selected unit. Shows the following tag properties: Name, Type, Status.

Dashboards only

The following widgets are provided for 3D Project As-Built databases only:

Name

Type

Description

Compatibility

HEX_3D_Quick_Access

3D Quick Access

Shows a list of filters that can be used to access 3D models.

Dashboards and Home screens

HEX_MOC_Actions_Progess

Count

Lists all change actions which are in progress or approved. The properties shown are: Name, Description, Project, Priority, Type, Status, Config.

Dashboards and Home screens

HEX_MOC_Actions_Pending

Count

Lists all open change actions. The properties shown are: Name, Description, Project, Priority, Type, Status, Config.

Dashboards and Home screens

Watch a video showing how to configure the widgets

  1. For each of the three widgets, click to open the Configure Widget wizard, and select Choose an existing widget.

  2. Select the following widgets:

    • HEX_Tag_Details

    This shows the name, description, safety critical status, and criticality rating of the tag. The title of this widget is Details.

    • HEX_Tag_Asset_Details

    This shows details of the asset related to the tag. It displays the name, description, serial number, model, and manufacturer of the asset. The title of this widget is Assets.

    • HEX_Tag_Open_Change_Requests

    This shows change requests related to the tag. Only change requests in the In Progress, Open, or Approved state are included. It displays the name, description, priority, and status of each change request. The title of this widget is Open Change Requests.

  3. Click to open the Configure Widget wizard for each widget to see how it was created. The widgets are identical except for the Type and the Base URL.

    • HEX_Tag_Details

      • Type: Form

      • Base URL: Tags('{{CURRENT_OBJECT_ID}}')?$select=Name,Description,Safety_Critical,Criticality_Rating

    The base URL identifies the tag with Tags('{{CURRENT_OBJECT_ID}}'). It then selects the name, description, safety critical status, and criticality rating for that tag using the $select expression.

    • HEX_Tag_Asset_Details

      • Type: Form

      • Base URL: Tags('{{CURRENT_OBJECT_ID}}')/FDWTagAsset?$select=Name,Description,Serial_Number,Model,Manufacturer

    The base URL identifies the tag with Tags('{{CURRENT_OBJECT_ID}}'). It then finds related assets with /FDWTagAsset, and selects the name, description, serial number, model, and manufacturer for that asset using the $select expression.

    • HEX_Tag_Open_Change_Requests

      • Type: Count

      • Base URL: Tags('{{CURRENT_OBJECT_ID}}')/SDATagsChangeRequest?$filter=Status eq 'IN PROGRESS' or Status eq 'OPEN' or Status eq 'APPROVED'&$select=Name,Description,Priority,Status

    The base URL identifies the tag with Tags('{{CURRENT_OBJECT_ID}}'). It then finds related change requests with /SDATagsChangeRequest, filters the change requests based on status using $filter=Status eq 'IN PROGRESS' or Status eq 'OPEN' or Status eq 'APPROVED', and selects the name, description, priority, and status for each change request using the $select expression.