Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
lbunnell
Creator
Creator

Store to Sharepoint Folder

How could I store a qlikview file in csv format to a Sharepoint folder? 

1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

Another solution is store the file into a temp directory and call "ftp" from comand line in order to transfer your file to the server

View solution in original post

19 Replies
Siva_Sankar
Master II
Master II

Hi,

You want to store .QVD file into .Csv file? Can you explain your requirement

Regards.

Siva

lbunnell
Creator
Creator
Author

Yes, the results of a qvd file into .csv or .txt file, but really need to understand how to save it to Sharepoint site. Trying the path like this didn't seem to work

I tried

STORE $(_qvd_name) INTO [http://teamsites.sitename.com/sites/xx/Shared%20Documents/Forms/AllItems.aspx?RootFolder=%2fsites%2f...$(_qvd_name).txt] (txt);

And decoded…

STORE $(_qvd_name) INTO http://teamsites.sitename.com/sites/xx/Shared Documents/Forms/AllItems.aspx?RootFolder=/sites/xx/Shared Documents/FOLDERNAME&Folder/$(_qvd_name).txt] (txt);

and also tried

STORE $(_qvd_name) into [\\teamsites.sitename.com\sites\xx\Shared Documents\FOLDERNAME\$(_qvd_name).txt] (txt);

john_novello
Contributor II
Contributor II

Are there any security restrictions or user profile restrictions on the SharePoint site?

lbunnell
Creator
Creator
Author

Yes, I've added the Qlikview process IDs with Full Control to the Sharepoint site.

Clever_Anjos
Employee
Employee

Not using http protocol, but using network access should work fine with right permissions set

This statement should work, it returns any errors?

STORE $(_qvd_name) into [\\teamsites.sitename.com\sites\xx\Shared Documents\FOLDERNAME\$(_qvd_name).txt] (txt);

lbunnell
Creator
Creator
Author

Just says 'Execution of script failed. Reload old data?'

Clever_Anjos
Employee
Employee

1) Debug your script and get the content of _qvd_name variable

2) Check if QlikView has writing rights into \\teamsites.sitename.com\sites\xx\Shared Documents\FOLDERNAME

lbunnell
Creator
Creator
Author

Those appear to be correct in debug mode

STORE filename into '[
teamsites.sitename.com\sites\xx\Shared Documents\xx\filename_QA.txt]' (txt)

But I still get the error message at the end

Clever_Anjos
Employee
Employee

"\\" shouldn´t be there?