C_ProdCmplncLanguageVH
Language of Product Compliance
C_ProdCmplncLanguageVH is a Consumption CDS View that provides data about "Language of Product Compliance" in SAP S/4HANA. It reads from 1 data source (I_Language) and exposes 3 fields with key field Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Language | I_Language | from |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CPCLANGVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Language of Product Compliance | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Metadata.allowExtensions | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.representativeKey | Language | view | |
| Search.searchable | true | view | |
| VDM.viewType | #CONSUMPTION | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | Language | ||
| LanguageISOCode | ||||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'CPCLANGVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Language of Product Compliance'
@Metadata.ignorePropagatedAnnotations: true
@Metadata.allowExtensions: true
@ObjectModel: {
usageType: {
serviceQuality: #C,
sizeCategory: #S,
dataClass: #MIXED },
dataCategory: #VALUE_HELP,
resultSet.sizeCategory: #XS,
representativeKey: 'Language' }
@Search.searchable: true --- required, otherwise type ahead won't work
@VDM.viewType: #CONSUMPTION
define view C_ProdCmplncLanguageVH as select from I_Language {
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.75
key Language,
@Search.defaultSearchElement
@Search.ranking: #MEDIUM
@Search.fuzzinessThreshold: 0.8
cast(LanguageISOCode as languageisocode preserving type ) as LanguageISOCode,
_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