Hi,
If I understand you want to change the input parameter so I the "Changing" parameters:
Using Java:
try {
final JCoFunction function = repository.getFunction("Y_R_EITAN_TESTS_05");
{
final JCoTable table = function.getChangingParameterList().getTable("IT_SCARR");
table.appendRow();
table.setValue("CARRID", "AA");
function.execute(destination);
MyDumper.dumpFunction(function);
}
} catch (final Exception exception) {
exception.printStackTrace();
}
Regards.