Search Results ship_from_postal_code
Overview
AP_EXPENSE_FEED_LINES_V is a Payables (AP) view owned by the APPS schema that exposes the individual expense feed lines generated during corporate card and procurement card transaction processing in Oracle E-Business Suite. The view presents denormalized, reporting-friendly access to card transaction detail — merchant information, tax and freight components, currency amounts, employee references, and a full set of DFF attributes — without requiring consumers to join the underlying staging and reference tables directly.
The view is closely related to the Oracle Payments (IBY) card instrument model and the AP employee expense feed process. The columns MERCHANT_CITY, MERCHANT_NAME, MERCHANT_NUMBER, and the merchant address columns make this view a primary source for merchant-level spend analysis, audit reporting, and reconciliation of card feeds. Because it joins out to HR_EMPLOYEES_CURRENT_V and IBY payer instruments, the view also serves employee and corporate card context alongside transaction detail.
Underlying Base Objects
The documented view metadata identifies the following referenced base objects:
- AP_EXPENSE_FEED_LINES (synonym) — the primary base table holding the staged expense feed lines; virtually every column in the view originates here, aliased as EFL.
- AP_CARDS, AP_CARD_PROFILES, AP_CARD_PROGRAMS — card definition, profile, and program reference tables supplying card-level context.
- IBY_FNDCPT_PAYER_ALL_INSTRS_V — Oracle Payments view supplying
CARD_NUMBERand related instrument data. - HR_EMPLOYEES_CURRENT_V — the HR employee view used to resolve current employee records.
- FND_GLOBAL, FND_PROFILE, HR_GENERAL, HR_PERSON_NAME, and HR_SECURITY — packages and APIs used for session context, profile options, name formatting, and row-level security enforcement.
Note that HR_SECURITY participation means the view is subject to HR security profiles, so results are filtered by the querying user's authorized organization and employee access.
Key Columns
- ROWID — the base row identifier for the feed line.
- FEED_LINE_ID — the unique identifier of the expense feed line.
- EMPLOYEE_ID, CARD_ID, CARD_PROGRAM_ID, CARD_NUMBER — employee and card identification.
- REFERENCE_NUMBER, ALT_REFERENCE_NUMBER, CUSTOMER_CODE — transaction reference data.
- AMOUNT, ORIGINAL_CURRENCY_AMOUNT, ORIGINAL_CURRENCY_CODE, POSTED_CURRENCY_CODE, CURRENCY_CONVERSION_RATE, TRANSACTION_DATE, POSTED_DATE — monetary and date attributes.
- MERCHANT_NAME, MERCHANT_NUMBER, ALT_MERCHANT_NUMBER, MERCHANT_ADDRESS1–4, MERCHANT_CITY, MERCHANT_PROVINCE_STATE, MERCHANT_POSTAL_CODE, MERCHANT_COUNTRY, MERCHANT_PHONE, MERCHANT_TAX_ID — merchant identity and location detail.
MERCHANT_CITYis the column most directly associated with the "merchant_city" search. - TAX_AMOUNT, TAX_RATE, TAX_TYPE, TAX_PAID_FLAG and their ALT_ counterparts — tax detail.
- FREIGHT_AMOUNT, DUTY_AMOUNT — transport and duty charges.
- ITEM_DESCRIPTION, ITEM_QUANTITY, ITEM_UOM, EXTENDED_ITEM_AMOUNT, PRODUCT_CODE — line item detail.
- REJECT_CODE, DESCRIPTION — feed validation status information.
- ORG_ID, ATTRIBUTE_CATEGORY, ATTRIBUTE1–20, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — multi-org and audit/DFF columns.
Common Use Cases and Queries
Typical use cases include corporate card spend analysis, merchant aggregation, tax reconciliation, and identifying rejected or unreleased feed lines before expense report creation.
Merchant spend by city:
SELECT merchant_city,
merchant_name,
SUM(amount) total_amount,
COUNT(*) line_count
FROM apps.ap_expense_feed_lines_v
WHERE org_id = :p_org_id
AND transaction_date BETWEEN :p_start AND :p_end
GROUP BY merchant_city, merchant_name
ORDER BY total_amount DESC;
Rejected feeds for review:
SELECT feed_line_id, employee_id, card_number,
merchant_name, merchant_city, amount, reject_code
FROM apps.ap_expense_feed_lines_v
WHERE reject_code IS NOT NULL
AND org_id = :p_org_id;
Tax and freight detail by merchant country:
SELECT merchant_country, merchant_city,
SUM(tax_amount) tax, SUM(freight_amount) freight,
SUM(duty_amount) duty
FROM apps.ap_expense_feed_lines_v
WHERE tax_paid_flag = 'Y'
GROUP BY merchant_country, merchant_city;
Because the view invokes HR_SECURITY, restricted users may see reduced row sets; query as a user with appropriate HR security, and always constrain by ORG_ID in a multi-org environment.
-
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 ,
-
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 ,
-
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 ,
-
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 ,
-
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: AP_TAX_LINES_SUMMARY_V
12.1.1
product: AP - Payables , implementation_dba_data: Not implemented in this database ,
-
View: AP_TAX_LINES_SUMMARY_V
12.2.2
product: AP - Payables , implementation_dba_data: Not implemented in this database ,