Skip to content

Commit

Permalink
Issue #11 - Update Codebase to ABAP 7.40 SP 02
Browse files Browse the repository at this point in the history
Fixed some issues (Commit 9 / n)
  • Loading branch information
NeumannJoerg committed Jul 9, 2024
1 parent 1beed1a commit 664dce1
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,8 @@ CLASS lcl_table_descriptor IMPLEMENTATION.

METHOD remove_non_elementary_fields.
DATA: data_description TYPE REF TO cl_abap_datadescr,
exception TYPE REF TO cx_sy_struct_creation,
exception_text TYPE string,
target_components TYPE abap_component_tab.

LOOP AT i_line_type_description->components REFERENCE INTO DATA(source_component).

Check failure on line 414 in src/#usi#bal_data_containers/#usi#cl_bal_dc_itab.clas.locals_imp.abap

View workflow job for this annotation

GitHub Actions / results

Don't declare inline in optional branches

no_inline_in_optional_branches
Expand All @@ -424,8 +426,8 @@ CLASS lcl_table_descriptor IMPLEMENTATION.
ELSE.
TRY.
r_result = cl_abap_structdescr=>get( target_components ).
CATCH cx_sy_struct_creation INTO DATA(exception).
DATA(exception_text) = exception->get_text( ).
CATCH cx_sy_struct_creation INTO exception.
exception_text = exception->get_text( ).
ASSERT ID /usi/bal_log_writer
FIELDS exception_text
CONDITION 1 = 0.
Expand Down

0 comments on commit 664dce1

Please sign in to comment.