This commit is contained in:
danrega
2024-01-10 17:02:33 +01:00
parent 01e87ce987
commit e4d3095824
8 changed files with 74 additions and 36 deletions

View File

@@ -295,6 +295,7 @@ ASSIGN s-tab_std TO <data>.
ASSIGN s-xstr TO <any>.
ASSIGN s-pl4d2 TO <any>.
ASSIGN s-date TO <any>.
ASSIGN s TO <any>.
"----- Character-like types -----
ASSIGN s-c3 TO <c>.
@@ -370,9 +371,6 @@ ASSIGN s-xl1 TO <simple>.
ASSIGN s-oref TO <object>.
s-oref = NEW zcl_demo_abap_objects( ).
ASSIGN s-oref TO <object>.
s-oref = cl_abap_random_int=>create( ).
ASSIGN s-oref TO <object>.
```
<p align="right"><a href="#top">⬆️ back to top</a></p>
@@ -1560,6 +1558,8 @@ CALL METHOD (class)=>meth.
"Class and method dynamically specified
CALL METHOD (class)=>(meth).
"The following examples assume that there are parameters defined
"for the method.
"Assigning actual parameters to the formal parameters statically
CALL METHOD class=>(meth) EXPORTING p1 = a1 p2 = a2 ...
IMPORTING p1 = a1 p2 = a2 ...