After Execute Hook

This hook is executed after each fetch and also after the last execute, when nothing is fetched.

After Execute List Show
Input for top-level component i.anythingFetched, i.errorOccurred,

All attribute arguments:

i.orderNumber, i.orno1, i.orno2, i.Customer_name, i.orderNumber.isSet, i.orno1.isSet, i.orno2.isSet, i.Customer_name.isSet

Input for child component i.anythingFetched, i.errorOccurred,

All attribute arguments:

i.orno1, i.orno2, i.lineNumber, i.item, i.orno1.isSet, i.orno2.isSet, i.lineNumber.isSet, i.item.isSet

Output None

The i.anythingFetched will indicate whether the last (on) execute returned any data. Compare the o.anythingFetched parameter of the on execute hook. The i.errorOccurred will indicate whether the last (on) execute resulted in an error. If so, i.anythingFetched will be false. The after execute hook is invoked in case of error to enable any cleaning up of state that was set in the before or on execute hook.