I_PlantAddressVH
Plant by Address
I_PlantAddressVH is a Basic CDS View that provides data about "Plant by Address" in SAP S/4HANA. It reads from 1 data source (I_Plant) and exposes 10 fields with key field Plant. Part of development package PLANT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Plant | I_Plant | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Plant by Address | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | Plant | view | |
| VDM.viewType | #BASIC | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Plant | Plant | ||
| PlantName | PlantName | |||
| AddresseeFullName | _StandardOrganizationAddress | AddresseeFullName | ||
| AddresseeName1 | _StandardOrganizationAddress | AddresseeName1 | ||
| AddresseeName2 | _StandardOrganizationAddress | AddresseeName2 | ||
| AddressSearchTerm1 | _StandardOrganizationAddress | AddressSearchTerm1 | ||
| AddressSearchTerm2 | _StandardOrganizationAddress | AddressSearchTerm2 | ||
| PostalCode | _StandardOrganizationAddress | PostalCode | ||
| CityName | _StandardOrganizationAddress | CityName | ||
| AddressRepresentationCode | _StandardOrganizationAddress | AddressRepresentationCode |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Plant by Address'
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@ObjectModel: {
usageType: {
sizeCategory: #S,
serviceQuality: #A,
dataClass:#CUSTOMIZING
},
dataCategory: #VALUE_HELP,
representativeKey: 'Plant'
}
@VDM.viewType: #BASIC
define view entity I_PlantAddressVH as select from I_Plant
{
@ObjectModel.text.element: [ 'PlantName']
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key Plant,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
PlantName,
@Semantics.text: true
_StandardOrganizationAddress.AddresseeFullName,
@UI.hidden: true
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #MEDIUM
_StandardOrganizationAddress.AddresseeName1,
@UI.hidden: true
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #MEDIUM
_StandardOrganizationAddress.AddresseeName2,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
_StandardOrganizationAddress.AddressSearchTerm1,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
_StandardOrganizationAddress.AddressSearchTerm2,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
_StandardOrganizationAddress.PostalCode,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
_StandardOrganizationAddress.CityName,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
_StandardOrganizationAddress.AddressRepresentationCode
}
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