Difference between revisions of "Error Messages/40877"
AManandhar (talk | contribs) (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: | ||
− | + | [[Category: Error messages]] | |
− | + | == 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> |
− | |||
− | </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> |
− | |||
− | </code> | ||
− | + | ==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
Enable comment auto-refresher