We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5011ac commit 1e81692Copy full SHA for 1e81692
docs/checks/deprecated-key-word.md
@@ -8,7 +8,17 @@ This check points out old syntax which should be replaced with newer notations i
8
9
### How does the check work?
10
11
-This check searches for deprecated key words like: `MOVE` and `TRANSLATE` and suggests its replacement.
+This check searches for deprecated key words like: `MOVE` and `TRANSLATE` and suggests its replacement to news notations/functions.
12
+
13
+```ABAP
14
+" MOVE 'A' TO variable.
15
+DATA(variable) = 'A'.
16
17
+" TRANSLATE lowercase TO UPPER CASE.
18
+DATA(uppercase) = to_upper( lowercase ).
19
20
+```
21
22
REMARK: The check will be continuously enhanced with other deprecated ABAP Keywords.
23
24
### How to solve the issue?
0 commit comments