you would think it would be obvious, but when searching through documents, SAP forums, Googling, etc. I was impressively unsuccessful. I am creating a file in ABAP on the Solaris file system using the following code:
OPEN DATASET p_file FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
the resulting file belongs and is grouped according to the predefined administrator user, which is good, but the sticky gate is that the permissions are set to 660 / rw-rw ----, which means that I can not examine the results. is there a way (maybe using this undefined TYPE definition?) Can I specify the resulting permissions for the new file?
thanks!
source
share