Difference between revisions of "Error Messages/40877"

(Created page with '= Error Message Examples = Expected a number, indicating the position along index IndexA. = Cause = You did not pass the value indicating the position of the index being chan…')
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
= Error Message Examples =
+
[[Category: Error messages]]
  
Expected a number, indicating the position along index IndexA.
+
== Error message examples ==
  
= Cause =
+
:<code>''Expected a number, indicating the position along index IndexA.''</code>
 +
 
 +
== Cause ==
  
 
You did not pass the value indicating the position of the index being changed to [[MakeChangesInTable]].
 
You did not pass the value indicating the position of the index being changed to [[MakeChangesInTable]].
Line 9: Line 11:
 
The following call would trigger this error:
 
The following call would trigger this error:
  
<code>
+
:<code>MakeChangesInTable HugeTable Table(IndexA) (1);</code>
[[MakeChangesInTable]] HugeTable Table(IndexA) (1);
 
</code>
 
  
= Remedies =
+
== Remedies ==
  
 
Specify the position of the index being modified using [[MakeChangesInTable]].
 
Specify the position of the index being modified using [[MakeChangesInTable]].
  
 
Example of resolving the above call:
 
Example of resolving the above call:
<code>
+
:<code>MakeChangesInTable HugeTable Table(IndexA) 2(1);</code>
[[MakeChangesInTable]] HugeTable Table(IndexA) 2(1);
 
</code>
 
  
<br><comments />
+
==See Also==
 +
* [[Table]]
 +
* [[MakeChangesInTable]]
 +
* [[Arrays and Indexes]]
 +
* [[Objects and Values]]

Latest revision as of 00:43, 18 March 2016


Error message examples

Expected a number, indicating the position along index IndexA.

Cause

You did not pass the value indicating the position of the index being changed to MakeChangesInTable.

The following call would trigger this error:

MakeChangesInTable HugeTable Table(IndexA) (1);

Remedies

Specify the position of the index being modified using MakeChangesInTable.

Example of resolving the above call:

MakeChangesInTable HugeTable Table(IndexA) 2(1);

See Also

Comments


You are not allowed to post comments.