If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
En sí, no conozco ninguna función, pero lo más fácil, es hacer un report sencillito, si solo es para mostrarlo a título personal...
Código:
DATA: L_STRING type string,
L_LINEA type string.
OPEN DATA SET l_string FOR INPUT IN CHARACTER MODE.
if sy-subrc ne 0.
message error.
endif.
DO.
read data set l_string into l_linea.
if sy-subrc ne 0.
exit.
else.
write l_linea.
endif.
enddo.
Con esto, se supone que debería mostrarte los datos.. ya solo quedaría que en vez de L_STRRING pongas un parámetro de selección:
Comentario