Skip to main content

QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Skip the ticket, Chat with Qlik Support instead for instant assistance.
cancel
Showing results for 
Search instead for 
Did you mean: 
Fanch
Partner - Creator
Partner - Creator

Message Error: Cannot open file: when store a table by Qlikview Management Console

Hi everybody 😎,

I have an issue when i store a table into a sharing folder on a remote server by Qlikview Management Console.

I use a nest script

Let My_Variable='\\My_Server\My_Sharing_Folder\My_Storing_File.txt';

store * from My_QV_Table into $(My_Variable)(delimiter is ';');

When i just upload the document Qliview,  it's ok and i see my file My_Storing_File.txt on my \\My_Server\My_Sharing_Folder 😊

When i upload the document Qliview with using Qlikview Management Console, it's ko with a message Error: Cannot open file: \\My_Server\My_Sharing_Folder\My_Storing_File.txt ☹️

Anybody has a idea ?

 

1 Solution

Accepted Solutions
marcus_sommer
MVP & Luminary
MVP & Luminary

The user from the server-services may not have the proper access right. Therefore login with it's credentials and try to access the folder. Further your store-statement should look like:

store [table] into [server\path\file.txt] (txt, delimiter is ';');

- Marcus

View solution in original post

2 Replies
marcus_sommer
MVP & Luminary
MVP & Luminary

The user from the server-services may not have the proper access right. Therefore login with it's credentials and try to access the folder. Further your store-statement should look like:

store [table] into [server\path\file.txt] (txt, delimiter is ';');

- Marcus

Fanch
Partner - Creator
Partner - Creator
Author

Thanks for your answers.

Finally, I've succeed my storage on a remote server by updating the right access