Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Print all columns of a row in tJavaRow

Hi,

 

I need to print all the columns of a row in tjavarow component in comma delimited (similar to tLogRow). Instead of manually printing each columns like (row.id, row.value).

 

Please let me know how to achieve it

Labels (3)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

unless you are using the Dynamic schema type, there is no easy way to print all the columns in a row with a tJavaRow component without writing out System.out.println(input_row.column_name+",
"+ ...

The simplest way to achieve this is to use a tLogRow prior or after your tJavaRow

View solution in original post

1 Reply
Anonymous
Not applicable
Author

unless you are using the Dynamic schema type, there is no easy way to print all the columns in a row with a tJavaRow component without writing out System.out.println(input_row.column_name+",
"+ ...

The simplest way to achieve this is to use a tLogRow prior or after your tJavaRow