Logo

    Home

    Documentation

    Use Cases

    Training

    Applications

    Release Notes

    Add an other possibility to change data sets (Maintenance Screen)

    Add an other possibility to change data sets (Maintenance Screen)

    1 Context

    🧠
    In this step, we will look at two options for manipulating data in a grid. We create a starting function to open an editing screen from an existing screen. To do this, we need to configure some attributes on the instance level of a grid.

    2 Result

    image
    image

    3 Step by step guide

    1. Please open your screen “OrderOverview_<yourName>” in the Screen Designer
    2. Select the “CustomerGrid_<yourName>” and open the object designer by clicking the gear wheel icon in the panel “Object Structure” and then “Open Object Master”. The object designer for the “CustomerGrid” will open up
    3. icon

      An overview with all fields of the grid will appear. Here you are able to set configurations for every attribute which is available in the grid

    4. Please select the “CustomerEntity.Name” and select it
    5. Search for the following three attributes in the panel “Attributes” and fill it with
      • VisualizationType -> LINK
      • icon

        With this we display the content of this column in form of a clickable link

      • SUBTYPE -> LAUNCH
      • icon

        (By clicking the link a new window will be launched)

      • UpdateRecordContainer -> CustomerMaintenanceScreen
      • icon

        (This screen will be launched and update the connected DSO)

    4 Explanation

    icon
    By changing the three attributes, we can modify the behaviour of the cell content.
    1. In the first step, we change the display of the cell content so that it's shown as a link.
    2. In the second step, we give instructions to the link to start something.
    3. In the third step, we indicate to the link what exactly needs to be started. In our case, a pre-defined different screen should be opened, which is used for manipulating data records and writing them back to the table.

    5 Helpcenter Article

    Click on a entry in a grid to open a detail screen

    You can modify the content of a grid record to open a detail screen or any other type of screen. This record will then be displayed in blue (as a link to a screen).

    helpcenter.build.one

    Logo