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 -
ABAP_SYNTAX
WHERE parameter1 = structure.component1
$[AND parameter2 = structure.component2 ...$] ...>
What does it do?
Assigns a
Latest notes:
The addition
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