IF you need a fixed order of the "OperationCode" a.k.a:
Repl < R&I < Ovrh < Refn
SELECT *
FROM YourTable
ORDER By
OperationCode = 'Repl' DESC,
OperationCode = 'R&I' DESC,
OperationCode = 'Ovrh' DESC,
OperationCode = 'Refn' DESC
"OperationCode = 'Repl'" will return a 0/1 and if you order it with DESC this will put,
'Repl' values first end everything else after that.