8 lines
146 B
ABAP
8 lines
146 B
ABAP
|
|
report zcharcode
|
||
|
|
data: c value 'A', n type i.
|
||
|
|
field-symbols <n> type x.
|
||
|
|
|
||
|
|
assign c to <n> casting.
|
||
|
|
move <n> to n.
|
||
|
|
write: c, '=', n left-justified.
|