‎2006 Dec 13 6:45 AM
Hi,
I am trying to create a file in application server with the following code
OPEN DATASET F_NAME FOR OUTPUT IN TEXT MODE MESSAGE MESS.
IF SY-SUBRC <> 0.
WRITE MESS.
ELSE.
LOOP AT I_EKKO.
TRANSFER I_EKKO TO F_NAME.
ENDLOOP.
CLOSE DATASET F_NAME.
IT is giving an error message like no such file or directory.
if the file is not there then it has to create but why it is giving that message.
Thanks in Advance
‎2006 Dec 13 6:50 AM
Please make sure you are using the right Path of the directory.
Also check for CASE-SENSITIVE characters.
Kind Regards
Eswar
‎2006 Dec 13 6:50 AM
Please make sure you are using the right Path of the directory.
Also check for CASE-SENSITIVE characters.
Kind Regards
Eswar