DBA Data[Home] [Help]

APPS.AP_WEB_CC_VALIDATION_WF_PKG dependencies on AP_CARD_DETAILS

Line 297: from ap_card_details det, ap_cards_all card

293: l_stmt varchar2(200);
294:
295: cursor ccard is
296: select det.card_id, card.card_program_id -- , det.name, det.employee_number, det.national_identifier
297: from ap_card_details det, ap_cards_all card
298: where det.card_id = card.card_id
299: and card.request_id = l_request_id;
300: begin
301: if ( funcmode = 'RUN' ) then

Line 354: from ap_cards_all ca, ap_card_details c, ap_card_emp_candidates emp

350: l_card_program_id number;
351:
352: cursor cemp is
353: select c.card_id, max(emp.employee_id) as employee_id
354: from ap_cards_all ca, ap_card_details c, ap_card_emp_candidates emp
355: where c.card_id = emp.card_id
356: and ca.card_id = c.card_id
357: and ca.request_id = l_request_id
358: group by c.card_id