‎2007 Aug 24 4:51 PM
The class I am creating in SE24 will reference several types, some of
which are elmentary and some of which are complex.
Can I create a complex type in SE24 class builder?
‎2007 Aug 24 5:03 PM
Yes, you can define complex types in se24.
have a look for example at class CL_GUI_ALV_GRID
Tabstrip Types.
The first one is
L_TYPE_S_SEARCH_CRITERIA
its definition is:
begin of l_type_s_search_criteria,
new type sap_bool,
value type lvc_value,
order type char01,
as_word type char1,
all type char1,
info type lvc_string,
end of l_type_s_search_criteria .
Regards,
Walter
‎2007 Aug 24 5:03 PM
Yes, you can define complex types in se24.
have a look for example at class CL_GUI_ALV_GRID
Tabstrip Types.
The first one is
L_TYPE_S_SEARCH_CRITERIA
its definition is:
begin of l_type_s_search_criteria,
new type sap_bool,
value type lvc_value,
order type char01,
as_word type char1,
all type char1,
info type lvc_string,
end of l_type_s_search_criteria .
Regards,
Walter
‎2007 Aug 24 5:32 PM