Pass INPUT parameters
- Last Updated: February 11, 2026
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
INPUT parameter requires several steps to provide a value
as input to an application service procedure or user-defined function. To pass an INPUT parameter:
- Create and initialize a variable for the parameter of the correct Java data type (see Create variables for parameters).
-
Add the parameter to a
ParamArrayobject (see Create a parameter array>). - Run the procedure or user-defined function (see Run procedures and user-defined functions).
This example passes an INPUT integer parameter that does
not support the Unknown value (?).
Example: Passing an INPUT parameter using the Java OpenAPI
|
This examples passes an INPUT integer parameter that supports the
Unknown value (?).
Example: Passing an INPUT parameter as the Unknown value (?) using the Java OpenAPI
|