Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi all
i want to do connection between tjavarow to tjavarow only if something is happend how can i do it?
i try to use run if but i can't to connect him to the second tjavarow..
in the talend we have something that can help?
String value = input_row.SomeValue;
if(value.equals("hello")){
output_row.SomeText = "olleh";
}else if(value.equals("world")){
output_row.SomeText = "dlrow";
}