!--a11y-->
Messages with Field Reference 
You can create a reference between an error message and the corresponding input field by using the parameter FIELD for an error message and defining the path in the input field.
As soon as you have created a reference between the error message and the input field, the following attributes are possible:
· You can navigate to the corresponding input field by double clicking on the error message. This sets the cursor/focus on the respective field.
Note that it is only possible to navigate on the BSP page being displayed.
· Messages with field reference can be highlighted in the request form (see Formatting Incorrect Fields).
The following sample source text comes from sample request SAP_DEMO01 view S01_2
clear ls_message.
ls_message-type = 'I'.
ls_message-id = 'CRM_SRV_WEBREQ_EXMPL'.
ls_message-number = '003'.
ls_message-field = '//request/valid_from'.
append ls_message to et_message.