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