Discussion Board for collaboration related to QlikView App Development.
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 ?
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
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
Thanks for your answers.
Finally, I've succeed my storage on a remote server by updating the right access