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

ABAP DUMP UC_OBJECTS_NOT_CHARLIKE

Abapper0114
Explorer
0 Likes
1,410

Hello experts,

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

View Entire Topic
Ryan-Crosby
Active Contributor
0 Likes

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