I have a requirement where I should disable the conditions tab's delete row to avoid user from deleting the condition in VA22. I've tried almost all the buttons available while debugging USEREXIT_FIELD_MODIFICATION in Include LV69AFZZ.
Is anyone able to help me with this?
Thanks.

First of all, you must determine the screen where the field is located.
/Hand Enter twice to start the debuggerThen you must find a position in the ABAP code which runs during the execution of the screen modules of "PROCESS BEFORE OUTPUT" where you can add this code:
If the screen is in the standard code and there's no dedicated user exit, you may use the Enhancement Framework to add code at the beginning or at the end of any subroutine, method, function module (but NOT screen modules for instance).
NB: another solution is to use Transaction and Screen Variants, but this tool is usually less preferred because it's more difficult to configure (like defining conditions).