rspec/rules/S1491/abap/rule.adoc

24 lines
394 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
This statement deletes all rows of an internal table itab. This ``++REFRESH++`` statement is deprecated and usage should be avoided.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
REFRESH itab.
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
CLEAR itab.
----
ifdef::env-github,rspecator-view[]
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]