>Does anyone know of a way that I can force the background job to reread the subroutine?
Hello, Scott. There is no method to do this without making changes to the subroutine caller. If you use the CALL form of: Foo = "Foo" . . Call @Foo(stuff) Reassigning Foo = "Foo" abandons a previously cached image of Foo and loads the latest version of Foo. One can do this reassignment preceding every call (careful, this could negatively impact performance) or periodically test a lock or read a specific field from a file record to control the reassignment. Best regards, Gyle ------- u2-users mailing list [email protected] To unsubscribe please visit http://listserver.u2ug.org/
