FRM-41332: List element index out of range.
Cause: Built-ins referring to a list-item ( ADD_LIST_ELEMENT, GET_LIST_ELEMENT_LABEL, GET_LIST_ELEMENT_VALUE) are passed a list-index that isn't valid for the list because it is either a negative number or it is greater than the number of items in the list.
Action: Check for the value of the list element before attempting to set it, as you cannot set the value to 0 or to a number greater than the number of items for that list.
Level: 99
Type: Error