Difference between revisions of "Error Messages/40243"

(Created page with '= Error Message Examples = You may not use the "ascending" or "descending" qualifier for a parameter specified as atomic. = Cause = The UDF decla…')
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
= Error Message Examples  =
+
[[Category: Error messages]]
  
  You may not use the "ascending" or "descending" qualifier for a parameter specified as atomic.
+
== Error message examples ==
  
= Cause  =
+
:<code>''You may not use the "ascending" or "descending" qualifier for a parameter specified as atomic.''</code>
  
The [[User-Defined Functions|UDF]] declaration uses the "ascending" or "descending" parameter qualifier for a multidimensional variable which is not allowed. The following function parameter declaration would trigger this error:
+
== Cause  ==
  
<Code>
+
The [[User-Defined Functions|UDF]] declaration uses the "ascending" or "descending" parameter qualifier for a parameter defined as atomic which is not allowed. The following function parameter declaration would trigger this error:
Parameter = (X: number ascending [I, J]; Index: I, J)<br>
+
 
</code>
+
:<code>Parameter = (X: atomic descending)</code>
  
 
Please visit the following link for more information on [[Function Parameter Qualifiers#Parameter_qualifiers|function parameter qualifiers.]]  
 
Please visit the following link for more information on [[Function Parameter Qualifiers#Parameter_qualifiers|function parameter qualifiers.]]  
  
= Remedies  =
+
== Remedies  ==
  
Remove the "ascending" or "descending" parameter qualifier from the function parameter declaration for multidimensional parameters.
+
Remove the "ascending" or "descending" parameter qualifier or the "atomic" parameter qualifier from the function parameter declaration.
  
<br><comments />
+
==See Also==
 +
* [[User-Defined Functions]]
 +
* [[Function calls and parameters]]
 +
* [[Function Parameter Qualifiers]]

Latest revision as of 19:01, 24 March 2016


Error message examples

You may not use the "ascending" or "descending" qualifier for a parameter specified as atomic.

Cause

The UDF declaration uses the "ascending" or "descending" parameter qualifier for a parameter defined as atomic which is not allowed. The following function parameter declaration would trigger this error:

Parameter = (X: atomic descending)

Please visit the following link for more information on function parameter qualifiers.

Remedies

Remove the "ascending" or "descending" parameter qualifier or the "atomic" parameter qualifier from the function parameter declaration.

See Also

Comments


You are not allowed to post comments.