ABAP Dictionary Search Help 
In Web Dynpro ABAP, you can reuse existing search helps from the ABAP Dictionary. However, there are not search helps for all data types in the system. For instance, there is no F4 help for data type TIMS or T (time).
For more information on the classic ABAP search helps, see Search Helps.
When reusing ABAP Dictionary search helps, there may be situations in which you want a search help exit in the Web Dynpro environment to behave differently to one in the classical dynpro environment. For example, in the Web Dynpro environment it is not possible to process a separate dialog using CALL SCREEN (see below).
An application can find out whether it is running in the Web Dynpro environment by querying the IS_ACTIVE attribute of the CL_WEB_DYNRPO class:
Syntax
IF CL_WEB_DYNPRO=>is_active = abap_true. ... ELSE. ... ENDIF.
In your view you can create input help (F4 help) for fields, which makes it easier for users to input data. A symbol at the end of an InputField means that search help is available for that field.
Note
The search help symbol is always the same regardless of whether the search help comes from the ABAP Dictionary, is an OVS search help, or a search help created by an application programmer or user.
Example
(Example input help for the InputField element for an airline):
There are two types of search help:
Elementary search helps
More information: Structure of an Elementary Search Help
Collective search help
More information: Structure of a Collective Search Help
For information about the individual steps, input options, and actions refer to Using ABAP Dictionary Search Helps.
Note
Note for programmers of search helps:
To ensure optimal user guidance, you are not allowed to close the value help popup by modifying the time point of the search help (callcontrol step) in a search help exit. An opened dialog box can only be closed by the user by
selecting a value from the value list
or
triggering the Cancel button or X
The user expects a relevant value list even if it is empty, and does not expect the value help dialog box to close.
The standard value for the first day of the week is Monday. You can define a different day with BAdI CALENDAR_DEFINITION, whereby the display of the week days and calculation of the week number changes:
The value help for date fields (function module F4_DATE from function group SHLC) calls the BAdI above. The display is changed in the F4 help so that the first day of the week is the one from the BAdI implementation. If a week number is used that deviates from the ISO rule, F4 help hides this since the front end control used does not enable deviant week counts.
For further information, see SAP note 1063178.
ABAP Dictionary search helps are integrated into a Web Dynpro application by means of the Value Help Mode property of the context attributes. More information: Create and Maintain Context Attributes.
Note
If an input help structure is stored in a field in the ABAP Dictionary, and if you want to use the field mapping of search help parameters stored in the ABAP Dictionary as the field name for the structure for your Web Dynpro input help, then map your context nodes to this structure. This ensures that all components of the structure are available dynamically at runtime as attributes of the node.
If the context node is not mapped to the structure, the data element's input help can be used if there is one.
Only the Automatic and Dictionary Search Help options are relevant for ABAP Dictionary search help:
Automatic
The search help assigned to the data type of the context attribute in the ABAP Dictionary is used. The search help is displayed under Determined Search Help and cannot be changed.
Example
Search help SCITAIRP is assigned to the SPFLI-AIRPFROM field in the ABAP Dictionary. If the type of context attribute is SPFLI-AIRPFROM, the SCITAIRP search help is used.
SCITAIRP now appears as the search help ascertained.
If no search help can be determined for the attribute type, no search help symbol is displayed and no search help can be performed.
Dictionary Search Help
One search help from the Dictionary can be assigned to the context attribute. Beneath the Input Help Mode field, the Dictionary Search Help field appears, in which you can enter the search help you want. The search help must be defined in the ABAP Dictionary. If you do not enter a search help, at runtime the system attempts to determine a search help using the type of context attribute.
The hot key for collective search helps is not supported.
Search help exits containing dynpro-specific functions, for example, CALL SCREEN, are not supported.
There is no automatic F4 help for data element TIMS.
The date value help in Web Dynpro ABAP does not support all ABAP date formats, see also SAP note 1056623.
In certain cases, no personal values list is available. This can occur if the personal value help function was explicitly deactivated using the search help exit. To provide a uniform display, the tab page for personal value help is still shown in the UI, but the user cannot select it. The same is true for the button for copying values to personal value help.
You can find an example of ABAP Dictionary search help in the system in the WDR_TEST_DDIC_SHLP component.