[Home] [Help]
[Dependency Information]
Object Name: | PO_ITEM_HISTORY_V |
---|---|
Object Type: | VIEW |
Owner: | APPS |
FND Design Data: | ![]() |
Subobject Name: | |
Status: | VALID |
A multi-org view which will retrive data for your current operating unit and ignore data in other operating units.
{{"bodytext"}}
PO_ITEM_HISTORY_V shows the latest price for a particular item,
quantity and vendor combination. For example, if you purchased
3 widgets from ACME Corp. on 2 seperate occasions, this view shows
the most recent of the two prices you paid. If you then
purchase 10 widgets from ACME Corp, the view shows an additional
row for the new quantity. If you also purchase 10 widgets from XYZ
Inc., the view shows another row because this time the vendor is
different.
{{"bodytext"}}
Oracle Purchasing uses this information to help you
determine the best prices and quantities for specific items. You can
review the item purchase history by using the View Purchase History by
Item form.
.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
ITEM_ID | NUMBER | Item unique identifier | ||
VENDOR_ID | NUMBER | Yes | Vendor unique identifier | |
QUANTITY | NUMBER | Quantity ordered | ||
LAST_UPDATE_DATE | DATE | Yes | Standard Who column - date when a user last updated this row. | |
LAST_UPDATED_BY | NUMBER | Yes | Standard who column - user who last updated this row (foreign key to FND_USER.USER_ID). | |
LAST_UPDATE_LOGIN | NUMBER | Standard who column - operating system login of user who last updated this row (foreign key to FND_LOGINS.LOGIN_ID). | ||
CREATION_DATE | DATE | Standard who column - date when this row was created. | ||
CREATED_BY | NUMBER | Standard who column - user who created this row (foreign key to FND_USER.USER_ID). | ||
ITEM_REVISION | VARCHAR2 | (3) | Revision of the item | |
UNIT_MEAS_LOOKUP_CODE | VARCHAR2 | (25) | Unit of measure for the quantity | |
PRICE | NUMBER | Price paid for the item | ||
LATEST_DATE | DATE | Date the item was ordered | ||
PO_HEADER_ID | NUMBER | Yes | Document header unique identifier | |
PROGRAM_APPLICATION_ID | NUMBER | Concurrent Program who column - application id of the program that last updated this row (foreign key to FND_APPLICATION.APPLICATION_ID). | ||
PROGRAM_ID | NUMBER | Concurrent Program who column - program id of the program that last updated this row (foreign key to FND_CONCURRENT_PROGRAM.CONCURRENT_PROGRAM_ID). | ||
PROGRAM_UPDATE_DATE | DATE | Concurrent Program who column - date when a program last updated this row). | ||
REQUEST_ID | NUMBER | Concurrent Program who column - concurrent request id of the program that last updated this row (foreign key to FND_CONCURRENT_REQUESTS.REQUEST_ID). | ||
ORG_ID | NUMBER | Organization identifier |
Cut, paste (and edit) the following text to query this object:
SELECT ITEM_ID
, VENDOR_ID
, QUANTITY
, LAST_UPDATE_DATE
, LAST_UPDATED_BY
, LAST_UPDATE_LOGIN
, CREATION_DATE
, CREATED_BY
, ITEM_REVISION
, UNIT_MEAS_LOOKUP_CODE
, PRICE
, LATEST_DATE
, PO_HEADER_ID
, PROGRAM_APPLICATION_ID
, PROGRAM_ID
, PROGRAM_UPDATE_DATE
, REQUEST_ID
, ORG_ID
FROM APPS.PO_ITEM_HISTORY_V;
APPS.PO_ITEM_HISTORY_V is not referenced by any database object
|
|
|