Search Results tax_status_code
Overview
GL_TAX_CODES_V is a General Ledger (GL) view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It presents a unified listing of tax codes available for use in subledger and General Ledger transactions, exposing both the technical identifiers and the translated, user-facing descriptions associated with each tax rate and tax regime configuration. The view is part of the E-Business Tax (ZX) reporting surface exposed through the GL product, and it is frequently referenced by Oracle Forms, concurrent programs, and custom reports that require a flat, query-friendly representation of tax codes without navigating the underlying normalized E-Business Tax tables.
Users searching for the column tax_type_code typically encounter this view because it is one of the few objects that derives a single-character classification of a tax rate as Input, Output, or a generic Tax type. This makes GL_TAX_CODES_V particularly useful for reconciliation, tax reporting, and integration extracts where a compact type indicator is needed.
Underlying Base Objects
The view is defined over four documented base objects:
- ZX_RATES_VL (VIEW) — Supplies the tax rate definition, effective dates, percentage rate, tax regime, tax, tax status, tax rate code, and tax class. It is the primary driving source of the rows returned by GL_TAX_CODES_V.
- ZX_ACCOUNTS (SYNONYM) — Supplies the tax account combination (
TAX_ACCOUNT_CCID) and organization/ledger context through an outer join onTAX_ACCOUNT_ENTITY_ID = TAX_RATE_IDandTAX_ACCOUNT_ENTITY_CODE = 'RATES'. - ZX_TAXES_B (SYNONYM) — Joined on
TAX_REGIME_CODEandTAX, and filtered toSOURCE_TAX_FLAG = 'Y'withOFFSET_TAX_FLAGnot equal to'Y', ensuring only source (non-offset) taxes are returned. - GL_LOOKUPS (VIEW) — Provides the translated
MEANINGfor the derivedTAX_TYPE_CODEvia lookup typeTAX_TYPE, joining on codes T, O, and I.
Additional inline constraints restrict results to percentage-type rates (RATE_TYPE_CODE = 'PERCENTAGE'), exclude the STD_AR_INPUT tax status when a tax class exists, and require TAX_JURISDICTION_CODE IS NULL.
Key Columns
- ORG_ID / LEDGER_ID — Organizational and ledger context derived from ZX_ACCOUNTS.
- TAX_TYPE_CODE — Derived single-character code: 'T' for a null tax class, 'O' for OUTPUT, and 'I' for INPUT.
- TAX_TYPE — The translated meaning of TAX_TYPE_CODE from GL_LOOKUPS.
- TAX_CODE_ID — The tax rate identifier, set to
SOURCE_IDor, if null,TAX_RATE_ID. - TAX_RATE — The percentage rate value from ZX_RATES_VL.
- TAX_CODE_COMBINATION_ID — The accounting flexfield combination for the tax account.
- DESCRIPTION — Populated from
TAX_RATE_NAME. - START_DATE / END_DATE — Effective date range of the rate.
- VALID_FLAG / ENABLED_FLAG — Derived from
ACTIVE_FLAG, defaulting to 'Y'. - TAX_CLASS, TAX_REGIME_CODE, TAX, TAX_STATUS_CODE, TAX_CODE — Context attributes from the underlying rate and regime definitions.
- DISPLAYED_FLAG — Always 'Y'.
Common Use Cases and Queries
Typical uses include populating tax code lists of values, extracting input and output tax configurations for reporting, and joining tax codes to GL or AP/AR transaction data. A representative query filtering on the derived tax type is:
SELECT TAX_TYPE_CODE, TAX_TYPE, TAX_CODE, TAX_RATE, TAX_REGIME_CODE, TAX FROM GL_TAX_CODES_V WHERE TAX_TYPE_CODE = 'I' AND VALID_FLAG = 'Y';SELECT TAX_CODE, DESCRIPTION, TAX_RATE, START_DATE, END_DATE FROM GL_TAX_CODES_V WHERE LEDGER_ID = :p_ledger_id ORDER BY TAX_CODE;SELECT TAX_TYPE_CODE, COUNT(*) FROM GL_TAX_CODES_V GROUP BY TAX_TYPE_CODE;
Because the view is read-only and aggregates several E-Business Tax entities, it should be used for query and reporting rather than for DML.
-
View: GL_TAX_CODES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_TAX_CODES_V, object_name:GL_TAX_CODES_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_TAX_CODES_V ,
-
View: GL_TAX_CODES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_TAX_CODES_V, object_name:GL_TAX_CODES_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_TAX_CODES_V ,
-
View: GL_JE_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_HEADERS_V, object_name:GL_JE_HEADERS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_HEADERS_V ,
-
View: GL_JE_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_HEADERS_V, object_name:GL_JE_HEADERS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_HEADERS_V ,
-
View: GL_JE_BATCHES_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_BATCHES_HEADERS_V, object_name:GL_JE_BATCHES_HEADERS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_BATCHES_HEADERS_V ,
-
View: GL_JE_BATCHES_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_BATCHES_HEADERS_V, object_name:GL_JE_BATCHES_HEADERS_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_BATCHES_HEADERS_V ,
-
View: GL_JE_HEADERS_REVERSE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_HEADERS_REVERSE_V, object_name:GL_JE_HEADERS_REVERSE_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_HEADERS_REVERSE_V ,
-
View: GL_JE_HEADERS_REVERSE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GL_JE_HEADERS_REVERSE_V, object_name:GL_JE_HEADERS_REVERSE_V, status:VALID, product: GL - General Ledger , implementation_dba_data: APPS.GL_JE_HEADERS_REVERSE_V ,