Note that you might need to update your code so that it defines the method parameters “by value”.
For example, the following construct is no longer correct and generates error COBCH0829:
method-id myMethod using x as myClassName. … invoke myMethod(self).
The correct way to define the method parameters is “by value”:
method-id myMethod using by value x as myClassName.