Search Results ap_card_profiles
Overview
APPS.AP_CARDS_V is a reporting and integration view in Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 that presents corporate payment card data maintained by Oracle Payables. It denormalizes records from the AP_CARDS base table and joins them to card profile, card program, and person information so that consumers can query a single, human-readable result set without performing multi-table joins themselves. The view is commonly consumed by payment card administration screens, self-service cardholder pages, and outbound extracts used by card-issuing banks and expense management integrations. Because it resolves employee identity through PER_PEOPLE_X and applies HR security packages, it also respects the data access rules applied to person records within the EBS security model.
Underlying Base Objects
The view is defined over several documented objects:
- AP_CARDS (SYNONYM) — the primary source, aliased AC, supplying all card-level attributes including card number, cardholder, limits, flags, and descriptive flexfield columns.
- AP_CARD_PROFILES (SYNONYM) — aliased ACP, joined on PROFILE_ID to provide PROFILE_NAME. This is an outer join, so cards without an assigned profile remain visible.
- AP_CARD_PROGRAMS (SYNONYM) — aliased ACPR, joined on CARD_PROGRAM_ID to supply CARD_PROGRAM_NAME.
- PER_PEOPLE_X (VIEW) — aliased P, joined on EMPLOYEE_ID to the PERSON_ID of the person record. This is an outer join, providing FULL_NAME, EMPLOYEE_NUMBER, NATIONAL_IDENTIFIER, and DATE_OF_BIRTH.
- HR_GENERAL, HR_PERSON_NAME, HR_SECURITY (PACKAGES) — referenced by PER_PEOPLE_X and its dependent logic to resolve person names and enforce HR security.
The JOIN relationships are: AC.PROFILE_ID = ACP.PROFILE_ID(+), ACPR.CARD_PROGRAM_ID = AC.CARD_PROGRAM_ID, and AC.EMPLOYEE_ID = P.PERSON_ID(+).
Key Columns
- CARD_ID, CARD_NUMBER, CARD_REFERENCE_ID, PAYCARD_REFERENCE_ID — unique identifiers and the printed card number; reference IDs support links to external payment card systems.
- EMPLOYEE_ID, FULL_NAME, EMPLOYEE_NUMBER — the cardholder's person identifier and HR-sourced name and employee number.
- CARDMEMBER_NAME, MOTHERS_MAIDEN_NAME, DEPARTMENT_NAME — descriptive cardholder attributes, including the maiden name element often required for card verification.
- PROFILE_ID, PROFILE_NAME, CARD_PROGRAM_ID, CARD_PROGRAM_NAME — the spending profile and program under which the card was issued.
- LIMIT_OVERRIDE_AMOUNT, TRX_LIMIT_OVERRIDE_AMOUNT — card-level and transaction-level limit overrides that supersede profile defaults.
- PHYSICAL_CARD_FLAG, PAPER_STATEMENT_REQ_FLAG — flags indicating whether a physical card is issued and whether paper statements are requested.
- INACTIVE_DATE, CARD_EXPIRATION_DATE — lifecycle dates used to determine active versus expired cards.
- ORG_ID — the operating unit, enabling multi-org reporting.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE30 — the descriptive flexfield columns available for site-specific extensions.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — standard audit columns supporting reconciliation and incremental extracts.
Common Use Cases and Queries
Typical uses include cardholder rosters, active card listings, limit audits, and extracts for card issuers. A simple active-card query, which exploits the outer joins so that unassigned cards are not lost:
SELECT card_number, full_name, employee_number, card_program_name, profile_name, card_expiration_date FROM apps.ap_cards_v WHERE inactive_date IS NULL;SELECT employee_number, full_name, card_number FROM apps.ap_cards_v WHERE card_program_id = :p_program_id ORDER BY full_name;
When querying this view, note that rows are filtered implicitly by HR security through PER_PEOPLE_X, so a report may return fewer rows when run under a restricted responsibility than when run by a user with unrestricted person access. Because the joins to AP_CARD_PROFILES and PER_PEOPLE_X are outer, CARD_NUMBER always reflects the card record even when profile or person data is missing.
-
VIEW: APPS.AP_CARDS_V
12.1.1
-
APPS.AP_WEB_PCARD_WORKFLOW_PKG SQL Statements
12.1.1
-
APPS.AP_WEB_PCARD_WORKFLOW_PKG SQL Statements
12.2.2
-
VIEW: APPS.AP_CARDS_V
12.2.2
-
VIEW: APPS.AP_EXPENSE_FEED_LINES_V
12.1.1
-
VIEW: APPS.AP_EXPENSE_FEED_LINES_V
12.2.2
-
PACKAGE: APPS.AP_CARD_DATABASE_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:AP_CARD_DATABASE_PKG, status:VALID,
-
SYNONYM: APPS.AP_CARD_PROFILES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_CARD_PROFILES, status:VALID,
-
PACKAGE: APPS.AP_WEB_DB_CCARD_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:AP_WEB_DB_CCARD_PKG, status:VALID,
-
SYNONYM: APPS.AP_CARD_PROFILES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_CARD_PROFILES, status:VALID,
-
APPS.AP_CARD_VALIDATE_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AP_WEB_PCARD_WORKFLOW_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AP_WEB_PCARD_WORKFLOW_PKG, status:VALID,
-
PACKAGE BODY: APPS.AP_CARD_VALIDATE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AP_CARD_VALIDATE_PKG, status:VALID,
-
PACKAGE: APPS.AP_CARD_DATABASE_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:AP_CARD_DATABASE_PKG, status:VALID,
-
PACKAGE BODY: APPS.AP_WEB_PCARD_WORKFLOW_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AP_WEB_PCARD_WORKFLOW_PKG, status:VALID,
-
APPS.AP_CARD_VALIDATE_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.AP_WEB_DB_CCARD_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:AP_WEB_DB_CCARD_PKG, status:VALID,
-
PACKAGE BODY: APPS.AP_CARD_VALIDATE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AP_CARD_VALIDATE_PKG, status:VALID,
-
View: AP_CARDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_CARDS_V, object_name:AP_CARDS_V, status:VALID, product: AP - Payables , description: - Retrofitted , implementation_dba_data: APPS.AP_CARDS_V ,
-
VIEW: APPS.AP_EXPENSE_FEED_DISTS_V
12.2.2
-
VIEW: APPS.AP_EXPENSE_FEED_DISTS_V
12.1.1
-
VIEW: APPS.AP_EXPENSE_FEED_DISTS_OPEN_V
12.1.1
-
VIEW: AP.AP_CARD_PROFILES_ALL#
12.2.2
owner:AP, object_type:VIEW, object_name:AP_CARD_PROFILES_ALL#, status:VALID,
-
View: AP_CARDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_CARDS_V, object_name:AP_CARDS_V, status:VALID, product: AP - Payables , description: - Retrofitted , implementation_dba_data: APPS.AP_CARDS_V ,
-
VIEW: APPS.AP_EXPENSE_FEED_DISTS_OPEN_V
12.2.2
-
View: AP_EXPENSE_FEED_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_EXPENSE_FEED_LINES_V, object_name:AP_EXPENSE_FEED_LINES_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_EXPENSE_FEED_LINES_V ,
-
PACKAGE BODY: APPS.AP_CARD_VALIDATE_PKG
12.2.2
-
View: AP_EXPENSE_FEED_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_EXPENSE_FEED_LINES_V, object_name:AP_EXPENSE_FEED_LINES_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_EXPENSE_FEED_LINES_V ,
-
PACKAGE BODY: APPS.AP_CARD_VALIDATE_PKG
12.1.1
-
View: AP_EXPENSE_FEED_DISTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_EXPENSE_FEED_DISTS_V, object_name:AP_EXPENSE_FEED_DISTS_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_EXPENSE_FEED_DISTS_V ,
-
View: AP_EXPENSE_FEED_DISTS_OPEN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_EXPENSE_FEED_DISTS_OPEN_V, object_name:AP_EXPENSE_FEED_DISTS_OPEN_V, status:VALID, product: AP - Payables , description: Verify Open Transactions in Self-Service Expenses is based on this view , implementation_dba_data: APPS.AP_EXPENSE_FEED_DISTS_OPEN_V ,
-
12.2.2 DBA Data
12.2.2
-
View: AP_EXPENSE_FEED_DISTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_EXPENSE_FEED_DISTS_V, object_name:AP_EXPENSE_FEED_DISTS_V, status:VALID, product: AP - Payables , description: View Transaction History in Self-Service Expenses is based on this view , implementation_dba_data: APPS.AP_EXPENSE_FEED_DISTS_V ,
-
12.1.1 DBA Data
12.1.1
-
TABLE: AP.AP_CARD_PROFILES_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_CARD_PROFILES_ALL, object_name:AP_CARD_PROFILES_ALL, status:VALID,
-
VIEW: APPS.AP_CARDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_CARDS_V, object_name:AP_CARDS_V, status:VALID,
-
View: AP_EXPENSE_FEED_DISTS_OPEN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_EXPENSE_FEED_DISTS_OPEN_V, object_name:AP_EXPENSE_FEED_DISTS_OPEN_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_EXPENSE_FEED_DISTS_OPEN_V ,
-
VIEW: APPS.AP_CARDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_CARDS_V, object_name:AP_CARDS_V, status:VALID,
-
VIEW: APPS.ECE_POO_HEADERS_V
12.1.1
-
VIEW: APPS.AP_EXPENSE_FEED_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_EXPENSE_FEED_LINES_V, object_name:AP_EXPENSE_FEED_LINES_V, status:VALID,
-
VIEW: APPS.ECE_POCO_HEADERS_V
12.1.1
-
VIEW: APPS.AP_EXPENSE_FEED_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_EXPENSE_FEED_LINES_V, object_name:AP_EXPENSE_FEED_LINES_V, status:VALID,
-
VIEW: APPS.ECE_POCO_HEADERS_V
12.2.2
-
VIEW: APPS.ECE_POO_HEADERS_V
12.2.2
-
PACKAGE BODY: APPS.AP_WEB_PCARD_WORKFLOW_PKG
12.2.2
-
View: ECE_POCO_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POCO_HEADERS_V, object_name:ECE_POCO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Purchase Order Change (860/ORDCHG) transaction.@rep:scope private@rep:product PO@rep:lifecycle active@rep:displayname Purchase Order Change Header View@rep:category BUSINESS_ENTITY PO_PU , implementation_dba_data: APPS.ECE_POCO_HEADERS_V ,
-
View: ECE_POO_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POO_HEADERS_V, object_name:ECE_POO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: /*#* This view extracts header information* for the outbound Purchase Order (850/ORDERS) transaction.* @rep:scope private* @rep:product PO * @rep:lifecycle active* @rep:displayname Purchase Order Header View* @rep:category BUSINESS_ENTI , implementation_dba_data: APPS.ECE_POO_HEADERS_V ,
-
View: ECE_POO_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POO_HEADERS_V, object_name:ECE_POO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: /*#* This view extracts header information* for the outbound Purchase Order (850/ORDERS) transaction.* @rep:scope private* @rep:product PO * @rep:lifecycle active* @rep:displayname Purchase Order Header View* @rep:category BUSINESS_ENTI , implementation_dba_data: APPS.ECE_POO_HEADERS_V ,
-
PACKAGE BODY: APPS.AP_WEB_PCARD_WORKFLOW_PKG
12.1.1
-
View: ECE_POCO_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POCO_HEADERS_V, object_name:ECE_POCO_HEADERS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts header informationfor the outbound Purchase Order Change (860/ORDCHG) transaction.@rep:scope private@rep:product PO@rep:lifecycle active@rep:displayname Purchase Order Change Header View@rep:category BUSINESS_ENTITY PO_PU , implementation_dba_data: APPS.ECE_POCO_HEADERS_V ,