cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X

Generate file or reports

Hariharasuthan
13-Aquamarine

Generate file or reports

dear all 

Generate any file type  or Reports, how to store from System Repository .

 

ACCEPTED SOLUTION

Accepted Solutions

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

View solution in original post

5 REPLIES 5

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

Hariharasuthan
13-Aquamarine
(To:jensc)

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

Hariharasuthan
13-Aquamarine
(To:jensc)

i would like to .csv ,pdf, excel  separate file in and separate user 

Announcements


Top Tags