Comparison with procedure-based programming invoking internal procedures
- Last Updated: February 15, 2019
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
Comparison with procedure-based programming invoking internal procedures
When you invoke an internal procedure from within an
external procedure where it is defined, you use a RUN statement
that simply names the procedure. When you invoke a user-defined
function within an external procedure where it is defined, you name
the function in an expression, similar to invoking a method within
a class. However, you have to forward reference the definition for
the user-defined function if it occurs after the point of invocation.
When you invoke an internal procedure defined in another external
procedure, you use the RUN statement with an IN option
to specify the location of the internal procedure definition. When
you invoke a user-defined function defined in another external procedure,
you must specify the prototype and reference the location of the
function definition, then invoke the function by naming it in an
expression. Method invocation within its defining class or on an another
object instance is far more consistent than for internal procedures
and user-defined functions.