[Home] [Help]
[Dependency Information]
Object Name: | MTL_ORGANIZATIONS |
---|---|
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 |
---|---|---|---|---|
ORGANIZATION_ID | NUMBER | (15) | Yes | Organization identifier |
ORGANIZATION_CODE | VARCHAR2 | (3) | Abbreviation for this organization | |
ORGANIZATION_NAME | VARCHAR2 | (240) | Yes | Name of this organization |
ADDRESS1 | VARCHAR2 | (240) | 1st line of locations address | |
ADDRESS2 | VARCHAR2 | (240) | 2nd line of locations address | |
ADDRESS3 | VARCHAR2 | (240) | 3rd line of locations address | |
CITY | VARCHAR2 | (30) | City | |
STATE | VARCHAR2 | (120) | State | |
COUNTRY | VARCHAR2 | (60) | Country | |
ZIP_CODE | VARCHAR2 | (30) | Postal code | |
SET_OF_BOOKS_ID | NUMBER | (15) | Yes | Identifier of the set of books that this organization uses |
SET_OF_BOOKS_NAME | VARCHAR2 | (30) | Yes | Accounting books name |
SYMBOL | VARCHAR2 | (12) | The symbol denoting the currency | |
ORG_INFO | VARCHAR2 | (1286) | Organization information | |
VALUE | NUMBER | On hand inventory value |
Cut, paste (and edit) the following text to query this object:
SELECT ORGANIZATION_ID
, ORGANIZATION_CODE
, ORGANIZATION_NAME
, ADDRESS1
, ADDRESS2
, ADDRESS3
, CITY
, STATE
, COUNTRY
, ZIP_CODE
, SET_OF_BOOKS_ID
, SET_OF_BOOKS_NAME
, SYMBOL
, ORG_INFO
, VALUE
FROM APPS.MTL_ORGANIZATIONS;
|
|
|