Hi,
You could use a UNION operation. For example:
SELECT ID, RInv as Invoice, RAmount as Amount, RDate as , RAmtPaid as AmtPaid
FROM View1
UNION
SELECT CInv, CAmount, CDate, CAmtPaid
FROM View2
I added the "as" in order to display the fields in the view as you indicated...
Best...