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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
VictorFaure
Contributor II
Contributor II

tJavaFlex and Data Auto Propagate

Hello, I have some data I need to unpivot and I'm using tJavaFlex to do so, I have the following code:

Start:

for (java.lang.reflect.Field f : row1.getClass().getDeclaredFields()) {

Main:

if (f.getType() == String.class) {
	row2.MATRICULE = row1.MATRICULE;
	row2.fieldName = f.getName();
	row2.fieldValue = f.get(row1).toString();
}

End:

}

 

The problem is some technical byteArray field gets transferred even though I unchecked Data Auto Propagate...

I then have several questions, firstly, how to fix my problem (technical rows that get through) ? And what does Data Auto Propagate even do ? 

Labels (4)
0 Replies