We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d538ec commit 267d33cCopy full SHA for 267d33c
src/cl_ctmenu.clas.abap
@@ -1,7 +1,23 @@
1
CLASS cl_ctmenu DEFINITION PUBLIC.
2
PUBLIC SECTION.
3
+ METHODS hide_functions
4
+ IMPORTING
5
+ fcodes TYPE ui_functions.
6
+
7
+ METHODS add_function
8
9
+ fcode TYPE string
10
+ text TYPE string.
11
ENDCLASS.
12
13
CLASS cl_ctmenu IMPLEMENTATION.
14
15
+ METHOD add_function.
16
+ RETURN. " todo, implement method
17
+ ENDMETHOD.
18
19
+ METHOD hide_functions.
20
21
22
23
0 commit comments