rspec/rules/S1507/abap/rule.adoc
2021-04-28 18:08:03 +02:00

19 lines
445 B
Plaintext

According to the SAP documentation:
____
System functions are only intended for internal usage. Incompatible changes and further development is possible at any time and without warning or notice.
____
So calling system C functions using a ``++CALL++`` statement should be avoided.
== Noncompliant Code Example
----
CALL 'MULTIPLY' ID 'P1' FIELD '9999'
ID 'P2' FIELD '9999'
ID 'RES' FIELD RESULT.
----