ABAP - Keyword Documentation →  ABAP - Programming Language →  SAP GUI User Dialogs →  General Dynpros →  dynpro - Processing Screens →  dynpro - Field Help, Input Help, and Dropdown List Boxes →  dynpro - Input Help → 
Mail Feedback

dynpro - Input Help in Dialog Modules

To define input helps in dialog modules, dialog modules can be called at POV time:

PROCESS ON VALUE-REQUEST.
  ...
  FIELD field MODULE mod.
  ...

After PROCESS ON VALUE-REQUEST, the MODULE statement can only be used in combination with the FIELD statement. When F4 is selected, the dialog module mod of the FIELD statement on whose field field the cursor is positioned. If multiple FIELD statements are specified for the same field field, only the first statement is executed. The dialog module mod does not provide the content of the dynpro field field, since this content is not transported by the FIELD statement during event POH. If the recommended search helps and search help exits do not meet requirements, proposal lists for the input help can be programmed in this dialog module.

Function modules are available here that support search helps as well as all other types of input help, and which also transport data between the dynpro and the ABAP program. These function modules are prefixed with F4IF_. The most important are:

The additional function modules DYNP_VALUES_READ and DYNP_VALUES_UPDATE read and return dynpro fields at POV time. For further information, see the relevant function module documentation.

Executable Example

Input Helps in Dialog Modules