Skip to Content
0
Former Member
May 09, 2008 at 03:24 AM

Open Dataset fails with "Invalid Argument"

863 Views

From an ABAP program I can't write to a share folder on a windows 2000 box. The share permissions are set to Everyone Full control. I can write to a share on a windows 2003 box, but not windows 2000. Here is my code:

data: filename type string.

data: open_message type string.

filename = '
servername\edi\test.txt'.

open dataset filename for output

message open_message

in text mode.

  • encoding non-unicode.

write: /1 open_message.

I noticed that the kernel has the following info:

ICU Version 2.6.1 Unicode Version 4.0

I was thinking there was a problem writing to a win 2000 box with an SAP Unicode Kernel.

Anyone have a clue?

Thank you,