Fortunately, YYYYMMDD ends up following a natural order. So rather than parsing the records, why not just "format" the date from a year ago, and make a comparison with that?
It's unclear exactly where you're calling this from, and whether you could provide the logic there, but if not, and this is within a stored procedure, you can always put the logic there. Basically you want to have something like (pseudo-code):
CUTOFF = CURRENT_DATE - 1 YEAR
CUTOFF_NUMERIC = CUTOFF.YEAR * 10000 + CUTOFF.MONTH * 100 + CUTOFF.DAY
SELECT ... FROM A WHERE A.CPADDT > CUTOFF_NUMERIC
Apologies for not being able to give you the actual code - I'm not familiar with this dialect of SQL, and I'm far from a SQL expert anyway. Hopefully that's enough of a suggestion to get you going though. Note that this should help in terms of the performance, too - if you have an index on CPADDT then this query can use it easily, whereas your original attempt probably couldn't. Even if you don't have an index, a simple numeric comparison is likely to be cheaper than all of that formatting and parsing.