Search Results ap_web_signing_limits_v
Overview
AP_WEB_SIGNING_LIMITS_V is a valid, retrofitted APPS-owned view in the Oracle E-Business Suite Payables (AP) module. It presents employee-level signing limit records for the Oracle iExpenses / Payables Web-based approval hierarchy and is defined over the AP_WEB_SIGNING_LIMITS table joined to Oracle HRMS person views and the AP_LOOKUP_CODES view. The view was retrofitted specifically to accommodate both regular employees and contingent workers, resolving person names from two distinct HRMS sources and consolidating them through a UNION ALL.
The view is significant because it abstracts the underlying signing limit table and HRMS person lookups behind a single, security-aware interface. It exposes a human-readable EMPLOYEE_NAME alongside the raw EMPLOYEE_ID, making it directly consumable by reporting tools, Oracle Web ADI layouts, and custom approval-workflow extensions. The query searched by the user, "employee_name," corresponds to the HR.FULL_NAME alias that the view projects from both PER_EMPLOYEES_CURRENT_X and PER_CONT_WORKERS_CURRENT_X.
Underlying Base Objects
The view is defined over the following documented base objects:
- AP_WEB_SIGNING_LIMITS (SYNONYM) — the primary transactional source holding employee signing limits by document type and cost center.
- PER_EMPLOYEES_CURRENT_X (VIEW) — current employees, joined on SL.EMPLOYEE_ID = HR.EMPLOYEE_ID.
- PER_CONT_WORKERS_CURRENT_X (VIEW) — current contingent workers, joined on SL.EMPLOYEE_ID = HR.PERSON_ID in the second UNION ALL branch.
- AP_LOOKUP_CODES (VIEW) — resolves DOCUMENT_TYPE to a DISPLAYED_FIELD value where LOOKUP_TYPE = 'DOCUMENT TYPE'.
- AP_WEB_DB_HR_INT_PKG (PACKAGE) — its ISPERSONCWK function filters regular employees from contingent workers so each branch returns the appropriate population.
- FND_GLOBAL, HR_GENERAL, HR_PERSON_NAME, HR_SECURITY (PACKAGES) — referenced indirectly through the HRMS person views to support name formatting and row-level security.
The UNION ALL structure ensures that an employee appears once and only once, depending on whether ISPERSONCWK classifies them as a contingent worker.
Key Columns
- ROW_ID — the ROWID of the AP_WEB_SIGNING_LIMITS row, used for update navigation.
- EMPLOYEE_NAME — the HR FULL_NAME of the employee or contingent worker (the column users search for).
- EMPLOYEE_ID — the person identifier linking to HRMS and approval hierarchy.
- DISPLAYED_DOCUMENT_TYPE — the user-facing document type label from AP_LOOKUP_CODES.
- DOCUMENT_TYPE — the lookup code value stored on the signing limit record.
- COST_CENTER — the cost center to which the signing limit is scoped.
- SIGNING_LIMIT — the monetary approval limit for the employee/document type combination.
- ORG_ID — the operating unit, enabling multi-org security filtering.
- Audit columns — LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATION_DATE, CREATED_BY.
Common Use Cases and Queries
Typical uses include validating approval authority, auditing signing limits by cost center, and feeding external reporting. A simple lookup by the searched attribute is:
SELECT EMPLOYEE_NAME, EMPLOYEE_ID, DISPLAYED_DOCUMENT_TYPE, COST_CENTER, SIGNING_LIMIT FROM APPS.AP_WEB_SIGNING_LIMITS_V WHERE EMPLOYEE_NAME LIKE :p_name;SELECT EMPLOYEE_ID, DISPLAYED_DOCUMENT_TYPE, SIGNING_LIMIT FROM APPS.AP_WEB_SIGNING_LIMITS_V WHERE ORG_ID = :p_org_id AND COST_CENTER = :p_cost_center;
Because the view already resolves document type labels and person names, it is preferred over querying AP_WEB_SIGNING_LIMITS directly for any reporting that requires descriptive fields.
-
View: AP_WEB_SIGNING_LIMITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_WEB_SIGNING_LIMITS_V, object_name:AP_WEB_SIGNING_LIMITS_V, status:VALID, product: AP - Payables , description: Retrofitted , implementation_dba_data: APPS.AP_WEB_SIGNING_LIMITS_V ,
-
View: AP_WEB_SIGNING_LIMITS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_WEB_SIGNING_LIMITS_V, object_name:AP_WEB_SIGNING_LIMITS_V, status:VALID, product: AP - Payables , description: Retrofitted , implementation_dba_data: APPS.AP_WEB_SIGNING_LIMITS_V ,
-
VIEW: APPS.AP_WEB_SIGNING_LIMITS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_WEB_SIGNING_LIMITS_V, object_name:AP_WEB_SIGNING_LIMITS_V, status:VALID,
-
VIEW: APPS.AP_WEB_SIGNING_LIMITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_WEB_SIGNING_LIMITS_V, object_name:AP_WEB_SIGNING_LIMITS_V, status:VALID,
-
SYNONYM: APPS.AP_WEB_SIGNING_LIMITS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_WEB_SIGNING_LIMITS, status:VALID,
-
SYNONYM: APPS.AP_WEB_SIGNING_LIMITS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_WEB_SIGNING_LIMITS, status:VALID,
-
PACKAGE: APPS.AP_WEB_DB_HR_INT_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:AP_WEB_DB_HR_INT_PKG, status:VALID,
-
PACKAGE: APPS.AP_WEB_DB_HR_INT_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:AP_WEB_DB_HR_INT_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.PER_EMPLOYEES_CURRENT_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_EMPLOYEES_CURRENT_X, object_name:PER_EMPLOYEES_CURRENT_X, status:VALID,
-
VIEW: APPS.PER_CONT_WORKERS_CURRENT_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONT_WORKERS_CURRENT_X, object_name:PER_CONT_WORKERS_CURRENT_X, status:VALID,
-
VIEW: APPS.PER_EMPLOYEES_CURRENT_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_EMPLOYEES_CURRENT_X, object_name:PER_EMPLOYEES_CURRENT_X, status:VALID,
-
VIEW: APPS.PER_CONT_WORKERS_CURRENT_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_CONT_WORKERS_CURRENT_X, object_name:PER_CONT_WORKERS_CURRENT_X, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
VIEW: APPS.AP_LOOKUP_CODES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_LOOKUP_CODES, object_name:AP_LOOKUP_CODES, status:VALID,
-
VIEW: APPS.AP_LOOKUP_CODES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_LOOKUP_CODES, object_name:AP_LOOKUP_CODES, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PER Tables and Views
12.2.2
description: Table to store NQF Training info for a person ,
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
eTRM - PER Tables and Views
12.2.2
description: Table to store NQF Training info for a person ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,