Run a persistent procedure (OpenProcObject) on an OpenAppObject
- Last Updated: February 11, 2026
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
Once you create your com.progress.open4gl.javaproxy.OpenAppObject instance, you can run any persistent
procedure on the connected application server using the following method on the OpenAppObject:
Syntax
|
- procName
- Specifies the name of the procedure to run, including any path relative to
the
PROPATHsetting for the application server. - paramArray
- Specifies a
com.progress.open4gl.javaproxy.ParamArraythat holds the parameters for the procedure. For more information, see Create a parameter array. A procedure with no parameters can also be run as persistent using an alternative syntax (see Run a single-run or singleton procedure (OpenProcObject) on an OpenAppObject), or the null value can be passed through paramArray.This method returns a
com.progress.open4gl.javaproxy.OpenProcObject, which you can use to run internal procedures and user-defined functions provided by the persistent procedure.