I_PartnerTypeText
Purchasing Document Partner Type Text
I_PartnerTypeText is a Basic CDS View that provides data about "Purchasing Document Partner Type Text" in SAP S/4HANA. It reads from 1 data source (tvpat) and exposes 4 fields with key fields PurchasingDocumentPartnerType, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tvpat | tvpat | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | IPARTNTYPETXT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Purchasing Document Partner Type Text | view | |
| ObjectModel.representativeKey | PurchasingDocumentPartnerType | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'IPARTNTYPETXT'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED //or #CHECK
@EndUserText.label: 'Purchasing Document Partner Type Text'
@ObjectModel.representativeKey: 'PurchasingDocumentPartnerType'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
define view I_PartnerTypeText as select from tvpat
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key tvpat.nrart as PurchasingDocumentPartnerType,
@Semantics.language: true
key tvpat.spras as Language,
@Semantics.text: true
tvpat.vtext as PurgDocumentPartnerTypeName,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TVPAT"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"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