Message type: E = Error
Message class: 00 -
Message number: 098
Message text: Program error with LOOP AT int. tab: FROM greater than TO
The limits within which an internal table should be displayed are
incorrect. The specification of FROM is larger than TO.
The system issues an error message and will not allow you to continue with this transaction until the error is resolved.
Correct the specifications for FROM and TO.
Error message extract from SAP system. Copyright SAP SE.
00098
- Program error with LOOP AT int. tab: FROM greater than TO ?The SAP error message "00098 Program error with LOOP AT int. tab: FROM greater than TO" typically occurs when there is an issue with the internal table being processed in a LOOP statement. This error indicates that the range specified for the LOOP AT statement is invalid, specifically that the starting index (FROM) is greater than the ending index (TO).
Cause: Invalid Indexing: The error arises when the internal table is being looped over, and the specified range for the loop is incorrect. This can happen if: The internal table is empty, and an attempt is made to loop over it with a specified range. The FROM index is set to a value greater than the TO index. There is a logical error in the code that calculates the indices. Data Manipulation: If the internal table is modified (e.g., rows are deleted) before the LOOP statement, it may lead to an invalid range.
Solution: Check Index Values: Review
Get instant SAP help. Sign up for our Free Essentials Plan.
00097
Internal table & does not exist or is empty
What causes this issue? Access to internal tables with index = 0.System Response The system issues an error message and will not allow you to contin...
00096
No field was held
Self-Explanatory Message Since SAP believes that this specific error message is 'self-explanatory,' no more information has been given.The majority of...
00099
Field after FROM, TO or CURSOR has incorrect data type
What causes this issue? Fields that can be specified for the LOOP AT internal table (FROM, TO, CURSOR), have an incorrect data type. &RSYSTEM_RES...
00100
Program error in LOOP AT internal table; FROM is greater than table end
What causes this issue? Incorrect specification of FROM.System Response The system issues an error message and will not allow you to continue with t...
Click on this link to search all SAP messages.