I_SVTSourceAddressType
Domain for Source Address Type
I_SVTSourceAddressType is a Basic CDS View that provides data about "Domain for Source Address Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field SVTSourceAddressType. It has 1 association to related views. Part of development package EHPMA_SVT_PREPROCESSING.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SVTSourceAddressTypeText | _Text | $projection.SVTSourceAddressType = _Text.SVTSourceAddressType |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Domain for Source Address Type | view | |
| AbapCatalog.sqlViewName | ISVTSRCEADRSTYP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.representativeKey | SVTSourceAddressType | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SVTSourceAddressType | |||
| _Text | _Text |
@EndUserText.label: 'Domain for Source Address Type'
@AbapCatalog.sqlViewName: 'ISVTSRCEADRSTYP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.representativeKey: 'SVTSourceAddressType'
@ObjectModel.usageType:{ serviceQuality: #A, // < 1 msec
sizeCategory: #S, // < 1.000
dataClass: #META }
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_SVTSourceAddressType
as select from dd07l
association [0..*] to I_SVTSourceAddressTypeText as _Text on $projection.SVTSourceAddressType = _Text.SVTSourceAddressType
{
@ObjectModel.text.association: '_Text'
key cast(dd07l.domvalue_l as ehpma_svt_source_address_type ) as SVTSourceAddressType,
_Text
}
where
dd07l.domname = 'EHPMA_SVT_SOURCE_ADDRESS_TYPE'
and dd07l.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