SAP DDICDDL DEFINE STRUCT VALUHELP



Get Example source ABAP code based on a different SAP table
  


• WITH VALUE HELP ABAP_DDIC_DEFINE_STRUC
• WITH VALUE HELP ABAP_DDIC_DEFINE_TABLE

ABAP_DDIC_DDL - DEFINE STRUCTURE, value_help

ABAP_SYNTAX
... WITH VALUE HELP value_help
WHERE parameter1 = structure.component1
$[AND parameter2 = structure.component2 ...$] ...

What does it do?
Assigns a search help to a structure component whose data type is defined by a data element with an elementary data type in the definition of a structure using the statement DEFINE STRUCTURE in Dictionary DDL. Here, value_help is an existing search help in the ABAP Dictionary. All parameters of the search help must be linked with structure components after WHERE .



Latest notes:

The addition WITH VALUE HELP can be used, with the same meaning, in the definition of a database using DEFINE TABLE.
NON_V5_HINTS
ABAP_HINT_END

ABAP_EXAMPLE_VX5
Definition of elementary components with reference to data elements and binds a search help to the second component. ...
define structure struct {
comp1 : s_carr_id;
comp2 : s_conn_id
with value help demo_f4_field
where carrid = struct.comp1
and connid = struct.comp2;
...
}
ABAP_EXAMPLE_END