[Home] [Help]
[Dependency Information]
Object Name: | AR_POSTAL_CODE_RANGES_V |
---|---|
Object Type: | VIEW |
Owner: | APPS |
FND Design Data: | ![]() |
Subobject Name: | |
Status: | VALID |
A supplementary view used to simplify forms coding.
Warning: Oracle does not recommend you query or alter datausing this view. It may change dramatically in subsequent minor or major
releases.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
LOCATION_RATE_ID | NUMBER | (15) | Yes | Internal ID sequence number |
FROM_POSTAL_CODE | VARCHAR2 | (360) | Yes | Lowest possible postal code that this tax rate is effective for. Character, not numeric, comparison. |
TO_POSTAL_CODE | VARCHAR2 | (360) | Yes | Highest possible postal code that this tax rate is effective for. Character, not numeric, comparison. |
LOCATION_SEGMENT_ID | NUMBER | (15) | Yes | Identifies parent location that owns this set of sales tax rates |
SALES_TAX_GEOCODE | VARCHAR2 | (30) | Descriptive Flexfield segment column | |
TAX_RATE | VARCHAR2 | (0) | Sales tax rate that is associated for this location within this postal code and effective date range. If null, then this is just a postal code range record. |
Cut, paste (and edit) the following text to query this object:
SELECT LOCATION_RATE_ID
, FROM_POSTAL_CODE
, TO_POSTAL_CODE
, LOCATION_SEGMENT_ID
, SALES_TAX_GEOCODE
, TAX_RATE
FROM APPS.AR_POSTAL_CODE_RANGES_V;
|
|
|