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

Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. X

Generate file or reports

Hariharasuthan
12-Amethyst

Generate file or reports

dear all 

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

 

1 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

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 

Top Tags