[Home] [Help]
[Dependency Information]
Object Name: | OKX_CONFIG_PRICING_V |
---|---|
Object Type: | VIEW |
Owner: | APPS |
FND Design Data: | ![]() |
Subobject Name: | |
Status: | VALID |
Oracle Corporation does not support access to Oracle
applications data using this object, except from standard Oracle Applications programs.
Internal
Name | Datatype | Length | Mandatory | Comments |
---|---|---|---|---|
CONFIGURATOR_SESSION_KEY | VARCHAR2 | (50) | Yes | Configurator Session Key is used to group all of the pricing request records associated with a single session in the Configurator. |
PS_NODE_ID | NUMBER | (15) | Associates this record with a Model structure node ('psnode') | |
ITEM_KEY | VARCHAR2 | (2000) | Yes | String carrying an identifier for an item for which pricing is to be determined. |
ITEM_KEY_TYPE | NUMBER | (9) | Yes | Code indicating the format for the ITEM_KEY field.1 - 'orig_sys_ref' format CC:EX:ORG:ITEM, CC is component code, EX is explosion type, ORG is organization ID, ITEM is inventory item ID; 2 - ps_node_id |
QUANTITY | NUMBER | Quantity of this item for which pricing is requested | ||
UOM_CODE | VARCHAR2 | (3) | Code indicating the unit of measure for Quantity. Usually "Ea" indicating 'each'. | |
LIST_PRICE | NUMBER | Contains the list price applicable to the item in this record | ||
SELLING_PRICE | NUMBER | Reports the calculated selling price for the requested item and quantity | ||
MSG_DATA | VARCHAR2 | (2000) | Information returned from the pricing engine to the Configurator. GENERALLY UNUSED. | |
SEQ_NBR | NUMBER | Yes | Provide ordering capability for pricing records; PRIMARY KEY FIELD |
Cut, paste (and edit) the following text to query this object:
SELECT CONFIGURATOR_SESSION_KEY
, PS_NODE_ID
, ITEM_KEY
, ITEM_KEY_TYPE
, QUANTITY
, UOM_CODE
, LIST_PRICE
, SELLING_PRICE
, MSG_DATA
, SEQ_NBR
FROM APPS.OKX_CONFIG_PRICING_V;
|
|
|