below is the code please look into that..and i have mention the error also..tell me any possible ways
DATA: BEGIN OF U OCCURS 100, "Text elements
TXT(138) TYPE C,
END OF U.
READ TEXTPOOL R-NAME INTO U LANGUAGE R-LANGUAGE.
DESCRIBE TABLE U LINES I.
CASE I.
WHEN 0.
WHEN OTHERS.
MOVE '????TEXT' TO S-TXT.
APPEND S.
LOOP AT U .
MOVE U-TXT TO S-TXT.
APPEND S.
DELETE U.
ENDLOOP.
ENDCASE.
/***********************
.......The error is as follows**....
Program ZABAPUPL
The line type of "U" must be compatible with one of the types
"TEXTPOOL".