Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
dear all
Generate any file type or Reports, how to store from System Repository .
Solved! Go to Solution.
Hello,
I would suggest using what @Sathishkumar_C said.
There are no supported ways of creating PDF or excel files on thingworx from what I can understand.
You can create a CSV file however using the CSVParserFunctions:
let params = {
path: undefined /* STRING */,
data: undefined /* INFOTABLE */,
fileRepository: undefined /* THINGNAME */,
withHeader: undefined /* BOOLEAN */
};
// no return
Resources["CSVParserFunctions"].WriteCSVFile(params);
Give it a shot and get back to us if you any further questions.
Regards,
Jens
Hello,
I'm not sure I understand your question?
Would you just like to store any file type in a system repository?
Or would you like to actually create any file type on thingworx?
Regards,
Jens
for example database(sql) in some table through convert report file .csv or excel store to System repository
Hello,
I would suggest using what @Sathishkumar_C said.
There are no supported ways of creating PDF or excel files on thingworx from what I can understand.
You can create a CSV file however using the CSVParserFunctions:
let params = {
path: undefined /* STRING */,
data: undefined /* INFOTABLE */,
fileRepository: undefined /* THINGNAME */,
withHeader: undefined /* BOOLEAN */
};
// no return
Resources["CSVParserFunctions"].WriteCSVFile(params);
Give it a shot and get back to us if you any further questions.
Regards,
Jens
i would like to .csv ,pdf, excel separate file in and separate user