27 lines
385 B
Plaintext
27 lines
385 B
Plaintext
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.
|
|
----
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|