Hi All, I can't seem to find an answer to my external method and acquisition syntax question so here goes: I have three objects: python script(alpha) -> external method(beta) -> zsql(delta) The python script "alpha" is in subfolder "/proj/py_script". The external method "beta" is in subfolder "/proj/ex_python". the zsql object "delta" is in subfolder "/proj/db". The python script "alpha" is invoked and calls: context.ex_python.beta() External method "beta" is fired up and calls: self.db.delta() Which results in a runtime error of: Error Type: AttributeError Error Value: db I've tried moving zsql object "delta" into the "/proj/ex_python" subfolder and changed the code in external method "beta" to read self.delta() Which resulted in a runtime error of: Error Type: AttributeError Error Value: delta Any ideas? Thanks, Jelle --