I_ProductionVersionStdVH
Production Version
I_ProductionVersionStdVH is a Composite CDS View that provides data about "Production Version" in SAP S/4HANA. It reads from 1 data source (I_ProductionVersion) and exposes 8 fields with key fields Material, Plant, ProductionVersion. Part of development package VDM_PP_MD_PRV.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ProductionVersion | I_ProductionVersion | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Analytics.technicalName | IPV__VH | view | |
| ObjectModel.representativeKey | ProductionVersion | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Production Version | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Material | Material | ||
| KEY | Plant | Plant | ||
| KEY | ProductionVersion | ProductionVersion | ||
| ProductionVersionText | ProductionVersionText | |||
| ValidityEndDate | ValidityEndDate | |||
| ValidityStartDate | ValidityStartDate | |||
| _Material | _Material | |||
| _Plant | _Plant |
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #COMPOSITE
@ObjectModel.dataCategory: #VALUE_HELP
@Analytics.technicalName: 'IPV__VH'
@ObjectModel.representativeKey: 'ProductionVersion'
@ObjectModel.supportedCapabilities: [#VALUE_HELP_PROVIDER, #SEARCHABLE_ENTITY]
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Search.searchable: true
@Consumption.ranked: true
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Production Version'
define view entity I_ProductionVersionStdVH as select from I_ProductionVersion {
@Consumption.valueHelpDefinition: [ { entity: { name: 'I_MaterialStdVH', element: 'Material' } } ]
@ObjectModel.foreignKey.association: '_Material'
@Search.defaultSearchElement: true
@Search.ranking: #LOW
@Search.fuzzinessThreshold: 0.8
key Material,
@ObjectModel.foreignKey.association: '_Plant'
@Search.defaultSearchElement: true
@Search.ranking: #LOW
@Search.fuzzinessThreshold: 0.8
key Plant,
@ObjectModel.text.element: ['ProductionVersionText']
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
key ProductionVersion,
@Search.defaultSearchElement: true
@Search.ranking: #LOW
@Search.fuzzinessThreshold: 0.8
@Semantics.text: true
ProductionVersionText,
@Semantics.businessDate.to: true
ValidityEndDate,
@Semantics.businessDate.from: true
ValidityStartDate,
@Consumption.hidden: true
_Material,
@Consumption.hidden: true
_Plant
};
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