MSIR.0518 Cancelling request because of $SIRPARM LISTFC setting (limit exceeded): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (1 revision)
(Automatically generated page update)
Line 1: Line 1:
A request is being cancelled because a $function tried to store more data on a $list than is possible. Try to find an alternate to placing so much data on a single $list or, if the $list has frequent insertions and removals via $LISTINS and $LISTREM, try periodically compressing the $list with a $LIST_COPY_ITEMS. If it is desirable to handle the condition programmatically, in-line, set 'LISTFC' to 0 with $SIRPARM and write the code to handle the error condition.
A request is being cancelled because a $function tried to store more data on a $list than is possible. Try to find an alternate to placing so much data on a single $list or, if the $list has frequent insertions and removals via $LISTINS and $LISTREM, try periodically compressing the $list with a $LIST_COPY_ITEMS. If it is desirable to handle the condition programmatically, in-line, set 'LISTFC' to 0 with $SIRPARM and write the code to handle the error condition.


[[Category:Sirius Mods Messages]]
[[Category:Sirius Mods messages]]

Revision as of 17:45, 19 April 2013

A request is being cancelled because a $function tried to store more data on a $list than is possible. Try to find an alternate to placing so much data on a single $list or, if the $list has frequent insertions and removals via $LISTINS and $LISTREM, try periodically compressing the $list with a $LIST_COPY_ITEMS. If it is desirable to handle the condition programmatically, in-line, set 'LISTFC' to 0 with $SIRPARM and write the code to handle the error condition.