I_PhysInvtryGroupType
Physical Inventory Group Type
I_PhysInvtryGroupType is a Basic CDS View (Dimension) that provides data about "Physical Inventory Group Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field PhysicalInventoryGroupType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PhysInvtryGroupTypeText | _Text | $projection.PhysicalInventoryGroupType = _Text.PhysicalInventoryGroupType |
Annotations (19)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPIGRPTYPE | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Physical Inventory Group 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.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | PhysicalInventoryGroupType | view | |
| ObjectModel.sapObjectNodeType.name | PhysicalInventoryGroupType | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Consumption.ranked | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PhysicalInventoryGroupType | |||
| DomainValue | dd07l | domvalue_l | ||
| _Text | _Text |
@AbapCatalog: {
sqlViewName: 'IPIGRPTYPE',
preserveKey: true,
compiler.compareFilter: true
}
@EndUserText.label: 'Physical Inventory Group Type'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
usageType: {
sizeCategory: #S,
serviceQuality: #A,
dataClass:#CUSTOMIZING
},
dataCategory: #VALUE_HELP,
representativeKey: 'PhysicalInventoryGroupType',
sapObjectNodeType: {
name: 'PhysicalInventoryGroupType'
},
modelingPattern: #ANALYTICAL_DIMENSION,
supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE]
}
@Search.searchable: true
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@Analytics.dataCategory: #DIMENSION
@Metadata: {
ignorePropagatedAnnotations: true
}
@Consumption.ranked: true
define view I_PhysInvtryGroupType as select from dd07l
association [0..*] to I_PhysInvtryGroupTypeText as _Text on $projection.PhysicalInventoryGroupType = _Text.PhysicalInventoryGroupType
{
@ObjectModel.text.association: '_Text'
key cast ( substring( domvalue_l, 1, 2 ) as keord preserving type) as PhysicalInventoryGroupType,
@Analytics.hidden: true
@Consumption.hidden: true
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
dd07l.domvalue_l as DomainValue,
_Text
} where domname = 'KEORD' and as4local = 'A'
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