Actually this should work....
are you sure that it is the same path and can be reached from the application server (are there more than one application server involved?
For analysis purposes I think there is an option of the open dataset which gives the reason back why a file could not be created (messages if I remember right)
You could add this and see if and why it fails...
You can also restart the job via sm37 in debug mode (by clicking on the job and put JDBG in the ok_code field) if this does not cause to much load on your system.
Christian
Hi,
->pls control sy-subrc
OPEN DATASET dsn FOR output MESSAGE msg.
IF sy-subrc <> 0.
WRITE / msg.
STOP.
ENDIF.
I'll guess it's an auth.-problem
regards Andreas
Add a comment