I_FldLogsValuationTypeVH
Material Valuation Type in Field Logistics
I_FldLogsValuationTypeVH is a Basic CDS View that provides data about "Material Valuation Type in Field Logistics" in SAP S/4HANA. It reads from 1 data source (P_ProductValuationBasic) and exposes 4 fields with key fields Material, ValuationArea, InventoryValuationType. It is exposed through 1 OData service (UI_SUPPLIERITEM). It is used in 1 Fiori application: Manage Logistics - Supplier Items. Part of development package FLOG_RETURN_PROCG_BASE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_ProductValuationBasic | P_ProductValuationBasic | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFLDLOGSVTVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Material Valuation Type in Field Logistics | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_SUPPLIERITEM | UI_SUPPLIERITEM | V2 | C1 | NOT_TO_BE_RELEASED_STABLE |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F5082 | Manage Logistics - Supplier Items | Transactional | An application to manage logistics of supplier owned , rental and non-stock items from base plant to remote plant.The non-stock items can be moved to stock after specific number of days which is configurable once received in base plant without sending to remote plant. The move to stock is also supported at the remote as well as when recieved back at base. Ad-hoc items are free flowing items which is created without the purchase order or maintenance order. |
Manage Logistics - Supplier Items
Business Role: Receiving Specialist (Oil & Gas)
This feature enables you to perform the Move to Stock process for multiple movement types, such as 501, 501K, 561,552, and so on.
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Material | Product | ||
| KEY | ValuationArea | ValuationArea | ||
| KEY | InventoryValuationType | ValuationType | ||
| InventoryValuationCategory | ValuationCategory |
@AbapCatalog.sqlViewName: 'IFLDLOGSVTVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Material Valuation Type in Field Logistics'
@ObjectModel: {
usageType: {
sizeCategory: #L,
serviceQuality: #C,
dataClass:#MASTER
},
dataCategory:#VALUE_HELP
}
@VDM.viewType: #BASIC
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_FldLogsValuationTypeVH
as select from P_ProductValuationBasic
{
key Product as Material,
key ValuationArea,
key ValuationType as InventoryValuationType,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
ValuationCategory as InventoryValuationCategory
}
where
ValuationType is not initial
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA