R_PaymentMethodText
Payment Method Text
R_PaymentMethodText is a Basic CDS View that provides data about "Payment Method Text" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key fields PaymentMethodInEmplCentral, Language. Part of development package ODATA_CA_BUM_WF.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | FixedValue | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | PaymentMethodInEmplCentral | view | |
| Consumption.ranked | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| Search.searchable | true | view | |
| EndUserText.label | Payment Method Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PaymentMethodInEmplCentral | |||
| KEY | Language | _ValueText | ddlanguage |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey:'PaymentMethodInEmplCentral'
@Consumption.ranked:true
@Metadata.ignorePropagatedAnnotations: true
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #SAP_INTERNAL_API
}
@Search.searchable: true
@EndUserText.label: 'Payment Method Text'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #XL,
dataClass: #MASTER
}
define view entity R_PaymentMethodText
as select from dd07l as FixedValue
left outer to one join dd07t as _ValueText on _ValueText.domname = FixedValue.domname
and _ValueText.domvalue_l = FixedValue.domvalue_l
and _ValueText.as4local = FixedValue.as4local
{
key cast (FixedValue.domvalue_l as fap_h2r_payt_method_in_ec ) as PaymentMethodInEmplCentral,
@Semantics.language:true
key _ValueText.ddlanguage as Language,
@Semantics.text: true -- identifies the text field
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
cast ( _ValueText.ddtext as farp_text2_042z ) as PaymentMethodDescription
}
where
FixedValue.as4local = 'A' --Active
and FixedValue.domname = 'FAP_H2R_PAYT_METHOD_IN_EC'
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