cancel
Showing results for 
Search instead for 
Did you mean: 

S/4HANA Readiness check: Analyze aborted in CL_CI_TEST_NO_ORDER_BY

ennowulff
Active Contributor
0 Kudos

Hey! 

We get the following error on many objects:

Analyze aborted from check CL_CI_TEST_NO_ORDER_BY

ennowulff_0-1710787249905.png

If we have a look at the mentioned development object it seems to have nothing to do with the check itself.

like: 

 

 

  METHOD log.
    DATA: text_tab TYPE STANDARD TABLE OF string.

    IF log_message-key IS NOT INITIAL.
      appl_log->add_free_text_info( log_message-key ).
    ENDIF.

    IF strlen( log_message-value ) > 200.
      CALL FUNCTION 'SOTR_SERV_STRING_TO_TABLE'
        EXPORTING
          flag_no_line_breaks = 'X'
          line_length         = 200
          text                = log_message-value
        TABLES
          text_tab            = text_tab.
    ELSE.
      APPEND log_message-value TO text_tab.
    ENDIF.

    LOOP AT text_tab INTO DATA(line).
      appl_log->add_free_text_info( line ).
    ENDLOOP.
  ENDMETHOD.

 

 

So in my opinion it looks like the check had some errors and reports "analyze aborted".

There is no SAP-note the is relevant for our system:

SAP_BASIS 758
SAP_ABA 75I

Any idea what to check?

Thanks
 ~Enno

View Entire Topic
raymond_giuseppi
Active Contributor
0 Kudos

Did you already check 3317911 - Corrections cl_ci_test_no_order_by ?

Check your installation for correct implementation (should already have been corrected) if no error found in SPAU and the like, create a case to OSS.

raymond_giuseppi
Active Contributor
0 Kudos
Seems, SAP just released a note, thank you Björn ?
ennowulff
Active Contributor
0 Kudos
Thanks Raymond! The note is not relevant for our system release. I just implemented the note mentioned by Björn