P_PAYMENTMETHODTEXT
Payment Method Description
P_PAYMENTMETHODTEXT is a CDS View in S/4HANA. Payment Method Description. It contains 4 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_PaymentMethodText | view | from | BASIC | Payment Method - Text |
Fields (4)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | Country | Country | 1 |
| KEY | Language | Language | 1 |
| KEY | PaymentMethod | PaymentMethod | 1 |
| PaymentMethodDescription | PaymentMethodDescription | 1 |
@AbapCatalog.sqlViewName: 'PPAYTMETHTEXT'
@ObjectModel.representativeKey: 'PaymentMethod'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private: true
@AbapCatalog.compiler.compareFilter: true
define view P_PaymentMethodText
as select from t042zt
association [0..1] to I_Country as _Country on $projection.Country = _Country.Country
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Country'
key land1 as Country,
@ObjectModel.text.element: 'PaymentMethodDescription'
key cast( zlsch as farp_schzw_bseg ) as PaymentMethod,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key spras as Language,
@Semantics.text: true
text2 as PaymentMethodDescription,
_Country,
_Language
}