I_IL_PaymentMethodText
IL Payment Method - Text
I_IL_PaymentMethodText is a Basic CDS View that provides data about "IL Payment Method - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field Language. Part of development package GLO_FIN_CASH_IL.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | IL Payment Method - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| ObjectModel.representativeKey | IL_PaymentMethod | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| IL_PaymentMethodText | ddtext |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'IL Payment Method - Text'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@Search.searchable: true
@ObjectModel: { representativeKey: 'IL_PaymentMethod',
dataCategory: #TEXT,
usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER } }
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view entity I_IL_PaymentMethodText
as
select from dd07t
{
@Semantics.language: true
key ddlanguage as Language,
key cast(
substring(domvalue_l,1,4)
as gsfincsil_pmt preserving type ) as IL_PaymentMethod,
@Semantics.text: true
@Search:{ defaultSearchElement: true,
fuzzinessThreshold: 0.7 }
ddtext as IL_PaymentMethodText
}
where
domname = 'GSFINCSIL_PMT'
and as4local = 'A'
and(
ddlanguage = 'E'
or ddlanguage = $session.system_language
)
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