Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SE24

Former Member
0 Likes
411

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?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
370

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

2 REPLIES 2
Read only

Former Member
0 Likes
371

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

Read only

Former Member
0 Likes
370

Absolutely yes.