How to use the outer join and or operator together with the conditions mentioned below
Table 1: PERSON
ID_NO NAME
512 RAM
513 RAVI
514 RAMU
Table 2: FORM_DETAILS
APPL_DATE STATUS ID NO
12/09/2009 A 512
12/08/2010 A 513
12/07/2009 C 514
12/06/2006 S 513
The query
SELECT A.ID_NO,A.NAME B.APPL_DATE FROM PERSON A, FORM_DETAILS B
WHERE A.ID_NO=B.ID_NO(+) AND
B.APPL_DATE>='12/07/2009' AND
B.APPL_DATE<='12/09/2009' AND
B.STATUS='A' OR
B.STATUS='C'
ORDER BY APPL_DATE
Produces
Error: outer join operation(+) is not allowed in operand of or
Any suggestion is appreciated.