ABAP Keyword Documentation → ABAP − Short Reference
CALL METHOD - Short Reference
Other versions: 7.31 | 7.40 | 7.54
Syntax
CALL METHOD {(meth_name)
|oref->(meth_name)
| (class_name)=>(meth_name)
|class=>(meth_name)
|(class_name)=>meth}
[PARAMETER-TABLE ptab]
[EXCEPTION-TABLE etab].
Effect
Dynamic method call.
Additions
Specify the method
-
(meth_name)
- Method contained inmeth_name
. -
(class_name)
- Class contained inclass_name
.
Specify the parameter
-
PARAMETER-TABLE ptab
Assigns dynamic actual parameters to formal parameters using an internal tableptab
of type ABAP_ PARMBIND_TAB. -
EXCEPTION-TABLE etab
Assigns dynamic return values to non-class-based exceptions using an internal tableetab
of type ABAP_EXCPBIND_TAB.