What am I missing here? Never seen "Access to data denied." before

I have a simple view action like this:

strFile:= “C:\export.xls”;

@Command( [FileExport];“Lotus 1-2-3”;strFile);

@Prompt([Ok];“Export”;"File was exported to " + strFile)

It is only visible for users with [Admin]-role and the role is also included in the Readers field of each document. Still, when an admin-user is pressing this button he gets a dialogbox stating that “Access to data denied.”

What am I missing here? The user HAS access to data since he is seeing all documents in the view…

Any ideas?

Thank You!

Subject: What am I missing here? Never seen “Access to data denied.” before…

I think it is a problem with access to the directory that the code is attempting to export to

Subject: RE: What am I missing here? Never seen “Access to data denied.” before…

Of course - it’s the only place I haven’t looked at! Well, seems that I have to use @Prompt([LocalBrowse]…) to let the user choose a correct place that they have access to…

Thank You!