I_SEPAPaymentTypeText
SEPA Payment Type - Text
I_SEPAPaymentTypeText is a Basic CDS View that provides data about "SEPA Payment Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, SEPAPaymentType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISEPAPAYTYTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | SEPA Payment Type - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SEPAPaymentType | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | dd07t | ddlanguage | |
| KEY | SEPAPaymentType | |||
| SEPAPaymentTypeName | ||||
| _Language | _Language | |||
| _SEPAPaymentType | _SEPAPaymentType |
@AbapCatalog.sqlViewName: 'ISEPAPAYTYTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'SEPA Payment Type - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SEPAPaymentType'
@ObjectModel.usageType: {serviceQuality: #D, sizeCategory: #S, dataClass: #META}
@Analytics:{
dataExtraction: {
enabled: true
}
}
@ObjectModel.supportedCapabilities: [ #EXTRACTION_DATA_SOURCE, #LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]
@VDM.viewType: #BASIC
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
define view I_SEPAPaymentTypeText
as select from dd07t
association to parent I_SEPAPaymentType as _SEPAPaymentType on $projection.SEPAPaymentType = _SEPAPaymentType.SEPAPaymentType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key dd07t.ddlanguage as Language,
@ObjectModel.foreignKey.association: '_SEPAPaymentType'
key cast(domvalue_l as sepa_pay_type) as SEPAPaymentType,
@Semantics.text: true
cast(ddtext as fsepa_payment_type_name preserving type ) as SEPAPaymentTypeName,
_Language,
_SEPAPaymentType
}
where dd07t.domname = 'SEPA_PAY_TYPE'
and dd07t.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SEPAPAYMENTTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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