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.
Tienes que ir a la transaccin FILE. Alli te creas tu objeto logico por ejemplo 'ZRUTA'. Debes definir por cada sistema operativo que ruta tendra. En los programas tendras que utilizar la siguiente funcion que te devolvera la ruta:
CALL FUNCTION 'FILE_GET_NAME_USING_PATH'
EXPORTING
logical_path = 'ZFILE' "obeto logico
operating_system = sy-opsys "sistema operativo
file_name = 'fichero.txt' "nombre del fichero
IMPORTING
file_name_with_path = p_fhost. "devuelva la ruta + el nombre
"del fichero.
Comentario