cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

ABAP DUMP UC_OBJECTS_NOT_CHARLIKE

Abapper0114
Explorer
0 Kudos
772

Hello experts,

I need your help with this. I'm getting a dump in line 20 with UC_OBJECTS_NOT_CHARLIKE

Accepted Solutions (0)

Answers (2)

Answers (2)

Abapper0114
Explorer
0 Kudos

@Sandra_Rossi  I already tried removing 'S1L' and tried replacing TYPE P with TYPE STRING and TYPE C but its still returning the same dump.

Sandra_Rossi
Active Contributor
0 Kudos
Please don't post an answer, which is reserved to propose a solution. Instead click on "Show replies" and then "Comment".
Ryan-Crosby
Active Contributor
0 Kudos

You would need something like the following because it is telling you the structure has data fields that are not character types.  Either that or read it into a string or a designated character type with sufficient length.

DATA: BEGIN OF I_STATEMENT,
      FILE(8),
      DEALER(6),
      DATE(6),
      BILLING_NO(12),
      SALES_ORD(12),
      AMOUNT(9),
      PLANT(4),
END OF I_STATEMENT.

 

Regards,

Ryan Crosby