hi there
when i am running this query no issue
SELECT nvl(po.person_id,ap.employee_id) person_id,
po.cost_centre po_cost_centre,
ap.cost_center ap_cost_centre, ap.signing_limit ap_signing_limit
FROM vzn_po_subordinate_cst_ctr_gtt po FULL OUTER JOIN
ap_web_signing_limits ap
--,gl_sets_of_books sob
ON (po.person_id = ap.employee_id AND po.cost_centre = ap.cost_center)
WHERE nvl(ap.document_type,'APEXP') = 'APEXP'
-- and po.SET_OF_BOOKS_ID = sob.SET_OF_BOOKS_ID
when i run this one i get error missing keyword
SELECT nvl(po.person_id,ap.employee_id) person_id,
po.cost_centre po_cost_centre,
ap.cost_center ap_cost_centre, ap.signing_limit ap_signing_limit
FROM vzn_po_subordinate_cst_ctr_gtt po FULL OUTER JOIN
ap_web_signing_limits ap
,gl_sets_of_books sob
ON (po.person_id = ap.employee_id AND po.cost_centre = ap.cost_center)
WHERE nvl(ap.document_type,'APEXP') = 'APEXP'
and po.SET_OF_BOOKS_ID = sob.SET_OF_BOOKS_ID
Does:
SELECT nvl(po.person_id,ap.employ
po.cost_centre po_cost_centre,
ap.cost_center ap_cost_centre, ap.signing_limit ap_signing_limit
FROM vzn_po_subordinate_cst_ctr
ap_web_signing_limits ap
ON (po.person_id = ap.employee_id AND po.cost_centre = ap.cost_center)
,gl_sets_of_books sob
WHERE nvl(ap.document_type,'APEX
and po.SET_OF_BOOKS_ID = sob.SET_OF_BOOKS_ID
Work, or even
SELECT nvl(po.person_id,ap.employ
po.cost_centre po_cost_centre,
ap.cost_center ap_cost_centre, ap.signing_limit ap_signing_limit
FROM vzn_po_subordinate_cst_ctr
, gl_sets_of_books sob ,
ap_web_signing_limits ap
ON (po.person_id = ap.employee_id AND po.cost_centre = ap.cost_center)
WHERE nvl(ap.document_type,'APEX
and po.SET_OF_BOOKS_ID = sob.SET_OF_BOOKS_ID