I_PPM_AmountTypeText
Amount Types Text
I_PPM_AmountTypeText is a Basic CDS View that provides data about "Amount Types Text" in SAP S/4HANA. It reads from 1 data source (P_PPM_DomainValueText) and exposes 4 fields with key fields AmountType, Language. It has 1 association to related views. Part of development package VDM_PPM_OBJECTS_COMMON.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_PPM_DomainValueText | text | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPMAMNTTYPETXT | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | AmountType | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Amount Types Text | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AmountType | |||
| KEY | Language | |||
| AmountTypeName | ||||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IPPMAMNTTYPETXT'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'AmountType'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@EndUserText.label: 'Amount Types Text'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_PPM_AmountTypeText
as select from P_PPM_DomainValueText as text
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language {
key cast(text.domvalue_l as /rpm/tv_fin_amount_type) as AmountType,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key cast(text.ddlanguage as spras) as Language,
@Semantics.text
cast(text.ddtext as description_kk ) as AmountTypeName,
_Language
} where domname = '/RPM/TD_FIN_AMOUNT_TYPE'
and as4local = 'A';
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