Perhaps you could try concatenating the field in the 'JOIN' section prior to using 'ON'
e.g.
Select * from TABLE_A as TA
INNER JOIN (select 'a' || 'b' as "XCONCAT" from TABLE_B) AS TB
ON TA.FIELDX = TB.XCONCAT
If TABLE_B is Huge then don't expect performance to be great.