1

What is the meaning of S Z%%=Z(,"Z") this statement?

Gabe
  • 84,912
  • 12
  • 139
  • 238
Rachana
  • 59
  • 3

1 Answers1

5

This statement is not Standard MUMPS. The variable name Z%% is not a valid local variable name. The local array Z must be subscripted by actual values. There is no expression between the open parenthesis and the comma, which must be defined in valid MUMPS syntax.

David Whitten
  • 484
  • 3
  • 12