[Home] [Help]
[Dependency Information]
Object Name: | CST_PER_CLOSE_DTLS_V |
---|---|
Object Type: | VIEW |
Owner: | APPS |
FND Design Data: | ![]() |
Subobject Name: | |
Status: | VALID |
A public view which may be useful for custom reporting or other data
requirements.
Prior to 11.5.10 (Patchset J), period end summarization for actual costing organizations were stored by item in MTL_PER_CLOSE_DTLS. In 11.5.10, the period end summarization process populates CST_PERIOD_CLOSE_SUMMARY with item level information.
This view combines the old and new data to provide uniform backward compatible access of the summary information.
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
ACCT_PERIOD_ID | NUMBER | Accounting period identifier | ||
ORGANIZATION_ID | NUMBER | Organization identifier | ||
COST_GROUP_ID | NUMBER | Cost group identifier | ||
SECONDARY_INVENTORY | VARCHAR2 | (10) | Subinventory identifier | |
INVENTORY_ITEM_ID | NUMBER | Item identifier | ||
PERIOD_END_QUANTITY | NUMBER | Quantity at period end | ||
PERIOD_END_UNIT_COST | NUMBER | Unit cost at period end |
Cut, paste (and edit) the following text to query this object:
SELECT ACCT_PERIOD_ID
, ORGANIZATION_ID
, COST_GROUP_ID
, SECONDARY_INVENTORY
, INVENTORY_ITEM_ID
, PERIOD_END_QUANTITY
, PERIOD_END_UNIT_COST
FROM APPS.CST_PER_CLOSE_DTLS_V;
|
|
|