Search Results invoice_type_lookup_code
Overview
APPS.JL_BR_AP_SICI_INVOICES_V is a Brazilian localizations (JL_BR) reporting view that consolidates Accounts Payable invoice data from two distinct sources into a single, query-friendly structure. Its purpose is to present a unified list of invoices relevant to the SICI (Sistema de Informações de Contribuintes / tax reporting) process — namely consolidated invoices and standard payables invoices — through one consistent column layout. The view is owned by the APPS schema and is typically consumed by Brazilian localization reports, concurrent programs, and integration extracts that need to enumerate both consolidated (CI) and standard (SI) invoices together.
The name encodes the source distinction: CI denotes Consolidated Invoice, and SI denotes Standard Invoice. A discriminator column, SICI, is generated in the SELECT list to identify which source each row originated from. Because the view is defined as a UNION rather than a UNION ALL, duplicate rows across the two branches are eliminated, though in practice the INVOICE_ID namespaces and source semantics differ enough that few collisions occur.
Underlying Base Objects
Per the documented ETRM metadata, the view is defined over two referenced base objects, both exposed to APPS as synonyms:
- JL_BR_AP_CONSOLID_INVOICES — the Brazilian localization table storing consolidated AP invoices. It contributes the 'CI' branch of the UNION.
- AP_INVOICES — the core Oracle Payables invoice table. It contributes the 'SI' branch, filtered to standard invoices only.
The second branch applies two filters: GLOBAL_ATTRIBUTE10 IS NULL, which excludes records already tagged by the Brazilian localization (for example, invoices linked to a consolidated structure), and INVOICE_TYPE_LOOKUP_CODE = 'STANDARD', which restricts the result set to standard invoice types. This design prevents double-counting of invoices that appear in both the consolidated localization tables and the base payables table.
Key Columns
- SICI — Literal discriminator ('CI' or 'SI') identifying the source leg of the UNION.
- INVOICE_ID — Maps to CONSOLIDATED_INVOICE_ID for the CI leg and to INVOICE_ID for the SI leg.
- VENDOR_ID, VENDOR_SITE_ID — Supplier and supplier site identifiers.
- INVOICE_NUM, INVOICE_DATE, INVOICE_AMOUNT, INVOICE_CURRENCY_CODE — Core invoice attributes.
- INVOICE_TYPE_LOOKUP_CODE — Resolves from AP_INVOICES for the SI leg and returns NULL for the CI leg, since consolidated invoices do not carry this attribute in the same way.
- ORG_ID — Operating unit identifier, essential for multi-org security filtering.
- Audit columns — LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
A frequent requirement is to list only standard invoices for a vendor, which the INVOICE_TYPE_LOOKUP_CODE search term implies:
- Filtering by SICI ('SI') to isolate standard invoices.
- Filtering by ORG_ID to respect operating unit boundaries.
- Joining to AP_SUPPLIERS on VENDOR_ID for supplier names.
Example:
SELECT SICI, INVOICE_ID, VENDOR_ID, INVOICE_NUM, INVOICE_DATE, INVOICE_AMOUNT
FROM APPS.JL_BR_AP_SICI_INVOICES_V
WHERE SICI = 'SI'
AND INVOICE_TYPE_LOOKUP_CODE = 'STANDARD'
AND ORG_ID = :p_org_id;
Because the CI leg always returns NULL for INVOICE_TYPE_LOOKUP_CODE, any predicate on that column automatically restricts results to standard invoices. This behavior should be accounted for when building union-aware reports.
-
VIEW: APPS.JL_BR_AP_SICI_INVOICES_V
12.1.1
-
VIEW: APPS.JL_BR_AP_SICI_INVOICES_TN_V
12.1.1
-
VIEW: APPS.JL_BR_AP_SICI_INVOICES_TN_V
12.2.2
-
VIEW: FV.FV_PROMPT_PAY_TEMP#
12.2.2
-
VIEW: APPS.JL_BR_AP_SICI_INVOICES_V
12.2.2
-
View: JL_BR_AP_SICI_INVOICES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AP_SICI_INVOICES_V, object_name:JL_BR_AP_SICI_INVOICES_V, status:VALID, product: JL - Latin America Localizations , implementation_dba_data: APPS.JL_BR_AP_SICI_INVOICES_V ,
-
View: JL_BR_AP_SICI_INVOICES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AP_SICI_INVOICES_V, object_name:JL_BR_AP_SICI_INVOICES_V, status:VALID, product: JL - Latin America Localizations , implementation_dba_data: APPS.JL_BR_AP_SICI_INVOICES_V ,
-
View: JL_BR_AP_SICI_INVOICES_TN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AP_SICI_INVOICES_TN_V, object_name:JL_BR_AP_SICI_INVOICES_TN_V, status:VALID, product: JL - Latin America Localizations , implementation_dba_data: APPS.JL_BR_AP_SICI_INVOICES_TN_V ,
-
View: JL_BR_AP_SICI_INVOICES_TN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AP_SICI_INVOICES_TN_V, object_name:JL_BR_AP_SICI_INVOICES_TN_V, status:VALID, product: JL - Latin America Localizations , implementation_dba_data: APPS.JL_BR_AP_SICI_INVOICES_TN_V ,
-
VIEW: AP.AP_BATCHES_ALL#
12.2.2
-
VIEW: APPS.EDW_INV_TYPE_MPV
12.1.1
-
VIEW: APPS.FIIBV_AP_IVTY_INV_LCV
12.1.1
-
VIEW: FV.FV_PROMPT_PAY_TEMP#
12.2.2
owner:FV, object_type:VIEW, object_name:FV_PROMPT_PAY_TEMP#, status:VALID,
-
VIEW: APPS.JL_BR_AP_SICI_INVOICES_TN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AP_SICI_INVOICES_TN_V, object_name:JL_BR_AP_SICI_INVOICES_TN_V, status:VALID,
-
View: AP_INVOICES_DERIVED_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_INVOICES_DERIVED_V, object_name:AP_INVOICES_DERIVED_V, status:VALID, product: AP - Payables , description: (Release 10SC Only) , implementation_dba_data: APPS.AP_INVOICES_DERIVED_V ,
-
View: AP_INVOICES_DERIVED_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_INVOICES_DERIVED_V, object_name:AP_INVOICES_DERIVED_V, status:VALID, product: AP - Payables , description: (Release 10SC Only) , implementation_dba_data: APPS.AP_INVOICES_DERIVED_V ,
-
VIEW: APPS.AP_SLA_INVOICES_TRANSACTION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_SLA_INVOICES_TRANSACTION_V, object_name:AP_SLA_INVOICES_TRANSACTION_V, status:VALID,
-
TABLE: FV.FV_PROMPT_PAY_TEMP
12.2.2
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_PROMPT_PAY_TEMP, object_name:FV_PROMPT_PAY_TEMP, status:VALID,
-
VIEW: APPS.JL_BR_AP_SICI_INVOICES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AP_SICI_INVOICES_V, object_name:JL_BR_AP_SICI_INVOICES_V, status:VALID,
-
VIEW: APPS.JL_BR_AP_SICI_INVOICES_TN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AP_SICI_INVOICES_TN_V, object_name:JL_BR_AP_SICI_INVOICES_TN_V, status:VALID,
-
VIEW: APPS.AP_SLA_INVOICES_TRANSACTION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_SLA_INVOICES_TRANSACTION_V, object_name:AP_SLA_INVOICES_TRANSACTION_V, status:VALID,
-
VIEW: APPS.JL_BR_AP_SICI_INVOICES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JL.JL_BR_AP_SICI_INVOICES_V, object_name:JL_BR_AP_SICI_INVOICES_V, status:VALID,
-
View: AP_BATCHES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_BATCHES_V, object_name:AP_BATCHES_V, status:VALID, product: AP - Payables , description: (Release 10SC only) , implementation_dba_data: APPS.AP_BATCHES_V ,
-
TABLE: FV.FV_PROMPT_PAY_TEMP
12.1.1
owner:FV, object_type:TABLE, fnd_design_data:FV.FV_PROMPT_PAY_TEMP, object_name:FV_PROMPT_PAY_TEMP, status:VALID,
-
VIEW: APPS.FV_INVOICE_MASTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_INVOICE_MASTER_V, object_name:FV_INVOICE_MASTER_V, status:VALID,
-
VIEW: APPS.FV_INVOICE_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_INVOICE_DTL_V, object_name:FV_INVOICE_DTL_V, status:VALID,
-
VIEW: APPS.FV_INVOICE_MASTER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_INVOICE_MASTER_V, object_name:FV_INVOICE_MASTER_V, status:VALID,
-
VIEW: APPS.AP_INVOICES_DERIVED_V
12.1.1
-
VIEW: APPS.OKL_BPD_AP_INVOICE_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_AP_INVOICE_UV, object_name:OKL_BPD_AP_INVOICE_UV, status:VALID,
-
VIEW: APPS.IGI_EXP_AP_INV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_AP_INV_V, object_name:IGI_EXP_AP_INV_V, status:VALID,
-
VIEW: APPS.FV_INVOICE_DTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FV.FV_INVOICE_DTL_V, object_name:FV_INVOICE_DTL_V, status:VALID,
-
View: AP_BATCHES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_BATCHES_V, object_name:AP_BATCHES_V, status:VALID, product: AP - Payables , description: (Release 10SC only) , implementation_dba_data: APPS.AP_BATCHES_V ,
-
VIEW: APPS.IGI_EXP_AP_INV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGI.IGI_EXP_AP_INV_V, object_name:IGI_EXP_AP_INV_V, status:VALID,
-
VIEW: APPS.OKL_BPD_AP_INVOICE_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_BPD_AP_INVOICE_UV, object_name:OKL_BPD_AP_INVOICE_UV, status:VALID,
-
VIEW: AP.AP_BATCHES_ALL#
12.2.2
owner:AP, object_type:VIEW, object_name:AP_BATCHES_ALL#, status:VALID,
-
VIEW: APPS.AP_INVOICES_DERIVED_V
12.2.2
-
VIEW: APPS.AP_INVOICES_DERIVED_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_INVOICES_DERIVED_V, object_name:AP_INVOICES_DERIVED_V, status:VALID,
-
APPS.JAI_POPULATE_ATTRIBUTE SQL Statements
12.2.2
-
VIEW: APPS.AP_INVOICES_DERIVED_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_INVOICES_DERIVED_V, object_name:AP_INVOICES_DERIVED_V, status:VALID,
-
VIEW: AP.AP_INVOICES_INTERFACE#
12.2.2
-
APPS.PA_AP_VAL_PKG SQL Statements
12.2.2
-
APPS.JAI_AP_PSA_TRIGGER_PKG SQL Statements
12.1.1
-
VIEW: APPS.AP_BATCHES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_BATCHES_V, object_name:AP_BATCHES_V, status:VALID,
-
View: EDW_INV_TYPE_MPV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FII.EDW_INV_TYPE_MPV, object_name:EDW_INV_TYPE_MPV, status:VALID, product: FII - Financial Intelligence , description: EDW_INV_TYPE_MPV is the view for data validity on source side. , implementation_dba_data: APPS.EDW_INV_TYPE_MPV ,
-
APPS.JAI_AP_HA_TRIGGER_PKG SQL Statements
12.2.2
-
View: EDW_INV_TYPE_MPV
12.2.2
product: FII - Financial Intelligence (Obsolete) , description: EDW_INV_TYPE_MPV is the view for data validity on source side. , implementation_dba_data: Not implemented in this database ,
-
View: AP_INVOICES_ALL_MRC_V
12.1.1
product: AP - Payables , description: MULTI-ORG MRC view , implementation_dba_data: Not implemented in this database ,
-
View: AP_INVOICES_ALL_MRC_V
12.2.2
product: AP - Payables , description: MULTI-ORG MRC view , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.AP_BATCHES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_BATCHES_V, object_name:AP_BATCHES_V, status:VALID,
-
VIEW: APPS.AP_BATCHES_V
12.2.2