Modify Field Labels

You may modify the field labels displayed in Responder Explorer using the DatabaseSchemaConfig.xml file. This modification affects the field label in the grid (as shown in the images below) and on any forms which the field appears.

In the example below, the Status field in the RX_INCIDENTS table was modified from "Status" to "Incident Status.” To do this, simply modify the Caption attribute on the column with the name of "Status." In this case we edited the Status field on the RX_Incidents table.

Status Tab

XML for Status Tab:

<Table Name="RX_INCIDENTS" Caption="Incidents" RowCaption="Incident [ID]" Adapter="Miner.Responder.Framework.BusinessObjects.Incident, Miner.Responder.Framework" Represents="Incidents">
     <Columns>
          <Column Name="ID" Caption="ID" Represents="ID" IsPrimaryKey="true" Sequence="RX_INCIDENTS_ID_SEQ" MobileField="enabled"/>
          <Column Name="STATUS" Caption="Status" DefaultValue="0" Domain="INCIDENT_STATUS" Represents="Status" MobileField="enabled"/>

Incident Status Tab

XML for Incident Status Tab:

<Table Name="RX_INCIDENTS" Caption="Incidents" RowCaption="Incident [ID]" Adapter="Miner.Responder.Framework.BusinessObjects.Incident, Miner.Responder.Framework" Represents="Incidents">
     <Columns>
          <Column Name="ID" Caption="ID" Represents="ID" IsPrimaryKey="true" Sequence="RX_INCIDENTS_ID_SEQ" MobileField="enabled"/>
          <Column Name="STATUS" Caption="Incident Status" DefaultValue="0" Domain="INCIDENT_STATUS" Represents="Status" MobileField="enabled"/>
QR Code is a registered trademark of DENSO WAVE INCORPORATED in Japan and other countries.

Was this helpful?