Skip to content

Commit b902d55

Browse files
author
Maximilian Scholz
committed
Update from S5S
Update from S5S
1 parent 7647c26 commit b902d55

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

src/00/03/z2ui5_cl_util.clas.abap

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,11 @@ CLASS z2ui5_cl_util IMPLEMENTATION.
933933

934934
METHOD rtti_get_t_attri_by_include.
935935

936-
DATA(sdescr) = CAST cl_abap_structdescr( cl_abap_typedescr=>describe_by_name( type->absolute_name ) ).
936+
cl_abap_typedescr=>describe_by_name( EXPORTING p_name = type->absolute_name
937+
RECEIVING p_descr_ref = DATA(type_desc)
938+
EXCEPTIONS type_not_found = 1 ).
939+
940+
DATA(sdescr) = CAST cl_abap_structdescr( type_desc ).
937941
DATA(comps) = sdescr->get_components( ).
938942

939943
LOOP AT comps REFERENCE INTO DATA(lr_comp).

src/01/00/02/package.devc.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<abapGit version="v1.0.0" serializer="LCL_OBJECT_DEVC" serializer_version="v1.0.0">
3+
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
4+
<asx:values>
5+
<DEVC>
6+
<CTEXT>abap api - https://github.com/oblomov-dev/abap-api</CTEXT>
7+
</DEVC>
8+
</asx:values>
9+
</asx:abap>
10+
</abapGit>

src/01/00/package.devc.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<abapGit version="v1.0.0" serializer="LCL_OBJECT_DEVC" serializer_version="v1.0.0">
3+
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0">
4+
<asx:values>
5+
<DEVC>
6+
<CTEXT>abap2UI5 - libs (external)</CTEXT>
7+
</DEVC>
8+
</asx:values>
9+
</asx:abap>
10+
</abapGit>

0 commit comments

Comments
 (0)