I_PhysInvtryStockType
Physical Inventory Stock Type
I_PhysInvtryStockType is a Basic CDS View (Dimension) that provides data about "Physical Inventory Stock Type" in SAP S/4HANA. It reads from 1 data source (t064a) and exposes 2 fields with key field PhysicalInventoryStockType. It has 1 association to related views. It is exposed through 1 OData service (UI_RFM_STORE_COUNTSTOCKADHOC).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t064a | t064a | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PhysInvtryStockTypeText | _Text | $projection.PhysicalInventoryStockType = _Text.PhysicalInventoryStockType |
Annotations (21)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPISTOCKTYPE | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| EndUserText.label | Physical Inventory Stock Type | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | PhysicalInventoryStockType | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.sapObjectNodeType.name | PhysicalInventoryStockType | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_RFM_STORE_COUNTSTOCKADHOC | UI_RFM_STORE_COUNTSTKADHOC | V2 | C1 | NOT_RELEASED |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PhysicalInventoryStockType | bstar | ||
| _Text | _Text |
@AbapCatalog: {
sqlViewName: 'IPISTOCKTYPE',
preserveKey: true,
compiler.compareFilter: true,
buffering : { status : #ACTIVE, type: #FULL }
}
@EndUserText.label: 'Physical Inventory Stock Type'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
usageType:{
sizeCategory: #S,
serviceQuality: #A,
dataClass: #CUSTOMIZING
},
representativeKey: 'PhysicalInventoryStockType',
dataCategory: #VALUE_HELP,
sapObjectNodeType: {
name: 'PhysicalInventoryStockType'
},
modelingPattern: #ANALYTICAL_DIMENSION,
supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #VALUE_HELP_PROVIDER]
}
@Analytics.dataCategory: #DIMENSION
@VDM:{
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@Search.searchable: true
@Consumption.ranked: true
@Metadata: {
ignorePropagatedAnnotations: true
}
define view I_PhysInvtryStockType
as select from t064a
association [0..*] to I_PhysInvtryStockTypeText as _Text on $projection.PhysicalInventoryStockType = _Text.PhysicalInventoryStockType
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@ObjectModel.text.association: '_Text'
key bstar as PhysicalInventoryStockType,
_Text
}
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