CLASS lcl_test DEFINITION.
PUBLIC SECTION.
CLASS-METHODS:
func_meth
IMPORTING
i_param TYPE i
RETURNING
VALUE(r_res) TYPE char1.
ENDCLASS.
l_res = lcl_test=>func_meth( 1 ).
* you could also call it like this
l_res = lcl_test=>func_meth( i_param = 1 ).
* also this variant is possible
l_res = lcl_test=>func_meth( EXPORTING i_param = 1 ).
* the traditional CALL METHOD syntax would be like this
CALL METHOD lcl_test=>func_meth
EXPORTING
i_param = 1
RECEIVING
r_res = l_res.
'SW > ABAP' 카테고리의 다른 글
YSOURCEDOWN (0) | 2024.03.28 |
---|---|
YFILESHARING (0) | 2024.03.27 |
SAP HANA Studio 설치, ADT 설치(ABAP Development tools) 설치 (0) | 2023.06.23 |
picture 조회 안되는 현상 조치 (0) | 2017.06.05 |