Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi!
the BUG in code of component tFileOutputRaw.
For FIX it, you need in file
{path to ESB}\Studio\plugins\org.talend.designer.components.localprovider_{your version of studio}\components\tFileOutputRaw\tFileOutputRaw_main.javajet
change the code
String cid = node.getUniqueName(); String encoding = ElementParameterParser.getValue(node, "__ENCODING__");
String cid = node.getUniqueName(); String filename = ElementParameterParser.getValue(node, "__FILENAME__"); %> fileName_<%=cid%> = <%=filename %>; <% String encoding = ElementParameterParser.getValue(node, "__ENCODING__");
CHANGES IN CODE
after these changes, I can dynamically change the path to the file at runtime.