rspec/rules/S1139/abap/rule.adoc
Fred Tingaud 6f24cc0632
Clean rule at root
In some cases, the `rule.adoc` at root of a rule is never included
anywhere and thus is dead code.
It's a maintenance cost by itself, but also it misses opportunities to
inline code that seems used by two documents when in fact only one
document is actually rendered. And this missed opportunity, in turn,
stops us from applying the correct language tag on the code samples.
2023-10-16 16:34:38 +02:00

30 lines
627 B
Plaintext

== Why is this an issue?
``++DELETE FROM dbtab++`` without a ``++WHERE++`` condition deletes all the entries of the table. Check whether dataset to be deleted can be limited by a suitable WHERE condition.
=== Noncompliant code example
[source,abap]
----
DELETE FROM COUNTRIES.
----
=== Compliant solution
[source,abap]
----
DELETE FROM COUNTRIES WHERE CODE = country_code.
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
=== Message
Add a "WHERE" clause to this "DELETE" statement to prevent deleting all rows in table "XXX".
endif::env-github,rspecator-view[]