‎2009 Jan 15 11:59 AM
HI Experts,
What are the Situations in which
1. I am creating a file usingOpen DataSet.
2. Writing the data into the file but not giving any error.
The file which is created has 0 Bytes after the data is successfully wrote on to it.
‎2009 Jan 15 12:00 PM
hi...
debug and check-out the sy-subrc of * transfer*
regards
vivek
‎2009 Jan 15 12:00 PM
hi...
debug and check-out the sy-subrc of * transfer*
regards
vivek
‎2009 Jan 15 12:01 PM
Check the data source...may your work area or the table does not contain any data.
‎2009 Jan 15 12:01 PM
Hi,
Please add a sy-subrc check after OPEN dataset & before writing data to the file.
OPEN DATASET...
if sy-subrc eq 0.
write to file....
else.
message...
endif.Best regards,
Prashant
‎2009 Jan 15 12:02 PM
Hi,
Check file name exists or not. Check the syntax of open data set.
Regards,
sunil
‎2009 Jan 15 12:03 PM
‎2009 Jan 15 12:05 PM
HI Experts,
Try to keep Wait statement after u complete ur write statement or Keep wait after open data set.
IF u r using it in background mode hope it doesnt get the processes.