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…')
 
Line 17: Line 17:
 
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:<br>
 
<code>
 
<code>
 
[[MakeChangesInTable]] HugeTable Table(IndexA) 2(1);
 
[[MakeChangesInTable]] HugeTable Table(IndexA) 2(1);

Revision as of 17:30, 8 February 2010

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);



You are not allowed to post comments.

Comments
<comments />