I am having some syntax error in my case statement where I am checking below condition:
((RAP10B.CLMSRC = \'2\', RAP01.EFFDT - 3 years <= RAP10.LOSSDT < RA
Try below -
CASE WHEN RAP10B.CLMSRC = '2' and rap10.lossdt_t BETWEEN Add_months(rap01.teffdt_t, - 36) AND rap01.teffdt_t then yourval WHEN RAP10B.CLMSRC <> '2' and rap10.lossdt_t BETWEEN Add_months(rap01.teffdt_t, - 36) AND (rap01.teffdt_t - 60) yourval1 END