COBCH2335 A parameterized section cannot cause a GOBACK/EXIT PROGRAM

A GOBACK/EXIT statement has been included in a parameterised section.

Such statements are not permitted within a parameterized section, and must be removed. In the following example, the goback statement must be removed from the section to resolve the error.

       perform s1(3)
       goback.																			
       s1 section (i1 as binary-long).
       display i1
       goback.    *> Remove this command