2024 Jul 12 5:51 PM - edited 2024 Jul 16 3:38 PM
Hello experts,
I need your help with this. I'm getting a dump in line 20 with UC_OBJECTS_NOT_CHARLIKE
@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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
66 | |
8 | |
8 | |
6 | |
6 | |
6 | |
6 | |
6 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.