‎2010 Feb 02 11:54 AM
Hi , Used generic type is clike
Abap code : data lv_clike TYPE CLIKE .
Syntax Error
"CLIKE" is a generic type. A type reference is possible only for field
symbols and formal parameters . . . . . . . . . .
Burhan KARADERE
‎2010 Feb 02 12:03 PM
Hello,
CLIKE can be used only with field symbols. For example.
field-SYMBOLS <fs> type clike.
data tab(10).
assign tab to <fs>.
<fs> = 'TABLE'.
write <fs>.
Regards,
Sachin
‎2010 Feb 02 12:08 PM
‎2010 Feb 02 12:14 PM
‎2010 Feb 02 12:34 PM
If you do not know the length for the c var you need to store use strings instead.
‎2010 Feb 02 12:46 PM
> If you do not know the length for the c var you need to store use strings instead.
field-SYMBOLS " is unknown.