rspec/rules/S2803/rule.adoc
2021-01-27 13:42:22 +01:00

21 lines
512 B
Plaintext

While the ``++OCCURS++`` keyword still works, it is slower than its more modern replacement: ``++DIM++``, which should be used instead.
== Noncompliant Code Example
----
D cussls ds Occurs(200)
D CustNo 7p 0
D MonthlySls 11P 2
----
== Compliant Solution
----
D cussls ds dim(200)
D CustNo 7p 0
D MonthlySls 11P 2
----