Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
According to the APIGuide the ServerSideExport command should generate a csv file. For me it only generates html files.
Also the append functionality does not work. Does anyone have an idea of why it is doing this? We are using qv10SR3 server.
This is my macro code:
sub exportdata
set tb = ActiveDocument.GetSheetObject("CH79") ' object id of a straight table
tb.ServerSideExport "C:\Deleteme"&date&".skv", ";",1200, true ' separator: ; codepage:Unicode 1200, Append: true
end sub
Use a 1 instead of 1200
tb.ServerSideExport "C:\Deleteme"&date&".skv", ";",1
Sub ServerExportEx
set st = ActiveDocument.GetSheetObject("CH05")
st.ServerSideExportEx "D:\QlikView\POC (alternative way)\Dump\text.csv" , ";" ,1 '0=HTML, 1=Text, 2=Bitmap, 3=XML, 4=QVD, 5=BIFF
msgbox("Export Complete")
End Sub