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

Accepted Solutions (0)

Answers (2)

Answers (2)

BjörnJüliger
Advisor
Advisor
0 Kudos

These messages are diagnostic messages that weren't really meant to be understood by end users - they don't mean that there's a problem in the code, but that the check stopped its analysis at these points for various reasons. But you're right that its confusing that they show up in the result.

Note 3447420 removes these messages so they are no longer shown.

ennowulff
Active Contributor
0 Kudos
Hey Björn! Thanks for the hint. I implemented the note and will check
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