rspec/rules/S109/abap/rule.adoc

19 lines
221 B
Plaintext
Raw Normal View History

2020-06-30 10:16:44 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
IF sy-subrc EQ 42.
screen-request = 45.
ENDIF.
----
== Compliant Solution
----
answer = 42.
IF sy-subrc EQ answer.
screen-request = 45.
ENDIF.
----