Page History
When you are calculating an ERUF value, some sections of code will require you to estimate. For example, if the entry logic in a transaction had the following RDML commands:SELECT FIELDS
SELECT FIELDS(.....)
...
FROM_FILE(.....)
...
WITH_KEY(....)
...
ADD_
...
ENTRY TO_LIST(.....)
...
ENDSELECT
then you will have to realistically estimate how many records the select loop will find and add to the list. If you estimate 20, then this will add 2.0 to your entry logic ERUF value, which will probably keep the transaction in the simple range.
...