is IFRQ_Number already defined as a workflow process variable? If so drop the String declaration in your code snippet.
If you want to set the value back to the Change Task you need to have an attribute for it. You would use the sequence of:
obj.load("IFRQ_Number"); // assumes that this is what the attribute is called in your Change Object
obj.set("IFRQ_Number", myProcessVariable); //assumes that myProcessVariable is defined in your workflow and is the same data type as IFRQ_Number
obj.apply();
// then you need to update the Change Object
wt.fc.PersistenceHelper.manager.modify(thisNotice);