DBA Data[Home] [Help]

APPS.AP_WEB_DB_AP_INT_PKG dependencies on AP_WEB_SIGNING_LIMITS

Line 526: ap_web_signing_limits s

522: IF (l_alphanumeric_allowed_flag = 'N') THEN
523: OPEN SigningCurrencyCodes FOR
524: select s.signing_limit, p.base_currency_code, p.default_exchange_rate_type
525: from ap_system_parameters p,
526: ap_web_signing_limits s
527: where employee_id = p_approver_id
528: and to_number(cost_center) = to_number(l_doc_cost_center)
529: and document_type = p_item_type;
530: ELSE

Line 534: ap_web_signing_limits s

530: ELSE
531: OPEN SigningCurrencyCodes FOR
532: select s.signing_limit, p.base_currency_code, p.default_exchange_rate_type
533: from ap_system_parameters p,
534: ap_web_signing_limits s
535: where employee_id = p_approver_id
536: and cost_center = l_doc_cost_center
537: and document_type = p_item_type;
538: END IF;