cancel
Showing results for 
Search instead for 
Did you mean: 

DDIC_TYPELENG_INCONSISTENT

Former Member
0 Kudos


Hi experts,

            When I run SM66 in my IDS system , the system issued an error DDIC_TYPELENG_INCONSISTENT. The error information is :

Short text

    Inconsistency in length of DDIC data type "SWNCGLAGGTASKTYPE".

What happened?
    Runtime error

    The current ABAP program "SAPLSTUW" had to be terminated because one
    of the statements could not be executed at runtime.

Error analysis
    An inconsistency was detected when the description of the data type
     "SWNCGLAGGTASKTYPE"
    was accessed. According to ABAP Load, the data type must be 774 bytes
    long; according to the information in the Dictionary at runtime, however
    , it is 772 bytes long.
    This situation can occur if the data type is changed at program runtime.

Trigger Location of Runtime Error

    Program                                 SAPLSTUW

    Include                                 LSTUWU06

    Row                                     100

Source Code Extract

Line  SourceCde

   70           ls_summary-tasktype = 'DIALOG'.
   71         WHEN '02'.
   72           ls_summary-tasktype = 'UPDATE'.
   73         WHEN '03'.
   74           ls_summary-tasktype = 'SPOOL'.
   75         WHEN '04'.
   76           ls_summary-tasktype = 'BCKGRD'.
   77         WHEN '06'.
   78           ls_summary-tasktype = 'BUF.SYN'.
   79         WHEN '07'.
   80           ls_summary-tasktype = 'AUTOABA'.
   81         WHEN '08'.
   82           ls_summary-tasktype = 'UPDATE2'.
   83         WHEN 'FE'.
   84           ls_summary-tasktype = 'RFC'.
   85         WHEN OTHERS.
   86           lf_task_raw = ls_summary-tasktype.
   87           SET LANGUAGE 'E'.
   88           CALL METHOD cl_swnc_constants=>translate_tasktype
   89             EXPORTING
   90               i_tasktype = lf_task_raw
   91             RECEIVING
   92               return     = lf_tasktype.

    93           ls_summary-tasktype = lf_tasktype.
    94
    95       ENDCASE.
    96       APPEND ls_summary TO summary.
    97     ENDCATCH.
    98   ENDLOOP.
    99
>>>>> ENDFUNCTION.

Can any expert help me? Thanks a lot.

Accepted Solutions (1)

Accepted Solutions (1)

divyanshu_srivastava3
Active Contributor
0 Kudos

Hi Zhang,

Refer 1610716 - Correcting runtime objects with the wrong alignment and update your Kernel.

Divyanshu

divyanshu_srivastava3
Active Contributor
Former Member
0 Kudos

Hi Divyanshu,

                    I implement the note 1222907 and note 1610716 in my system. Then I run the report RUT_NOTE_1610716 to PCHECK the error and found 39 errors. I run the report to  repair the errors . Now it is ok. Thanks for your help.

Answers (1)

Answers (1)

Reagan
Product and Topic Expert
Product and Topic Expert
0 Kudos

There is an SAP note addressing this dump specifically.

1229062 - DDIC_TYPELENG_INCONSISTENT in package SWNC

Regards

RB