Skip to content

Automatic Update #38

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/zoblomov_cl_util.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,11 @@ CLASS zoblomov_cl_util IMPLEMENTATION.

METHOD rtti_get_t_attri_by_include.

DATA(sdescr) = CAST cl_abap_structdescr( cl_abap_typedescr=>describe_by_name( type->absolute_name ) ).
cl_abap_typedescr=>describe_by_name( EXPORTING p_name = type->absolute_name
RECEIVING p_descr_ref = DATA(type_desc)
EXCEPTIONS type_not_found = 1 ).

DATA(sdescr) = CAST cl_abap_structdescr( type_desc ).
DATA(comps) = sdescr->get_components( ).

LOOP AT comps REFERENCE INTO DATA(lr_comp).
Expand Down
Loading