Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there no other way to give a complete row as recordset from the fatherjob to the childjob?
Any idea how to prevent the assignment of "null" to a context variable of type string when assigning a NULL value to it?
if(context.name.equals("null")){
System.out.println(context.name);
context.name=StringHandling.UPCASE(context.name);
System.out.println(context.name);
}
public static String nvl(String p_string) {
if ((p_string == null) || (p_string.equals("")) || (p_string.equals("null")) || (p_string.trim().equals(""))) {
return null;
} else {
return p_string;
}
}