I_PaymentMethodVH
Obsolete: Payment Method Value Help
I_PaymentMethodVH is a Basic CDS View that provides data about "Obsolete: Payment Method Value Help" in SAP S/4HANA. It reads from 4 data sources (t042y, I_PaymentMethod, I_Bankaccountlinkage, I_CompanyCode) and exposes 7 fields with key fields PayingCompanyCode, BankAccountInternalID, PaymentMethod, Country, Currency.
Data Sources (4)
| Source | Alias | Join Type |
|---|---|---|
| t042y | a | from |
| I_PaymentMethod | b | inner |
| I_Bankaccountlinkage | c | inner |
| I_CompanyCode | d | inner |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPAYTMETH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Obsolete: Payment Method Value Help | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| VDM.lifecycle.successor | I_PaymentMethodInCountryVH | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PayingCompanyCode | t042y | zbukr | |
| KEY | BankAccountInternalID | I_Bankaccountlinkage | BankAccountInternalID | |
| KEY | PaymentMethod | t042y | zlsch | |
| KEY | Country | I_PaymentMethod | Country | |
| KEY | Currency | t042y | waers | |
| PaymentMethodName | I_PaymentMethod | PaymentMethodName | ||
| BankAccount | I_Bankaccountlinkage | BankAccount |
@AbapCatalog.sqlViewName: 'IPAYTMETH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Obsolete: Payment Method Value Help'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #C
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
//@Search.searchable: true
@VDM.lifecycle.status: #DEPRECATED
@VDM.lifecycle.successor: 'I_PaymentMethodInCountryVH'
define view I_PaymentMethodVH
as select from t042y as a
inner join I_CompanyCode as d on a.zbukr = d.CompanyCode
inner join I_PaymentMethod as b on a.zlsch = b.PaymentMethod
and b.Country = d.Country
inner join I_Bankaccountlinkage as c on a.zbukr = c.CompanyCode
and a.hbkid = c.HouseBank
and a.hktid = c.HouseBankAccount
{
key a.zbukr as PayingCompanyCode,
key c.BankAccountInternalID,
key a.zlsch as PaymentMethod,
key b.Country,
key a.waers as Currency,
@Semantics.text:true
b.PaymentMethodName,
c.BankAccount
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BANKACCOUNTLINKAGE",
"I_COMPANYCODE",
"I_PAYMENTMETHOD",
"T042Y"
],
"ASSOCIATED":
[],
"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