R_SetlMgmtDocPlainLongText
Settlmt Mgmt Document Plain Long Text
R_SetlMgmtDocPlainLongText is a Basic CDS View that provides data about "Settlmt Mgmt Document Plain Long Text" in SAP S/4HANA. It reads from 2 data sources (I_TextObjectPlainLongText, R_SettlmtMgmtDoc) and exposes 9 fields with key fields SettlmtMgmtDoc, TextObjectType, Language. It has 1 association to related views. Part of development package WLF_FS_PERS_COMMON.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_TextObjectPlainLongText | PlainLongText | from |
| R_SettlmtMgmtDoc | SetlMgmtDoc | inner |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | R_SettlmtMgmtDoc | _SettlmtMgmtDoc | $projection.SettlmtMgmtDoc = _SettlmtMgmtDoc.SettlmtMgmtDoc |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Settlmt Mgmt Document Plain Long Text | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ObjectModel.representativeKey | TextObjectType | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| Analytics.technicalName | RWLFSMTMGTDOCPLT | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Metadata.allowExtensions | false | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SettlmtMgmtDoc | R_SettlmtMgmtDoc | SettlmtMgmtDoc | |
| KEY | TextObjectType | |||
| KEY | Language | I_TextObjectPlainLongText | Language | |
| PlainLongText | I_TextObjectPlainLongText | PlainLongText | ||
| SettlmtMgmtDocCat | R_SettlmtMgmtDoc | SettlmtMgmtDocCat | ||
| SettlmtPartnerCat | R_SettlmtMgmtDoc | SettlmtPartnerCat | ||
| SettlmtBusProcCat | R_SettlmtMgmtDoc | SettlmtBusProcCat | ||
| _SettlmtMgmtDoc | _SettlmtMgmtDoc | |||
| _Language | I_TextObjectPlainLongText | _Language |
@EndUserText.label: 'Settlmt Mgmt Document Plain Long Text'
@AccessControl: {
authorizationCheck: #MANDATORY,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
representativeKey: 'TextObjectType',
dataCategory: #TEXT,
usageType.serviceQuality: #A,
usageType.dataClass: #TRANSACTIONAL,
usageType.sizeCategory: #L
}
@Analytics.technicalName: 'RWLFSMTMGTDOCPLT'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #SAP_INTERNAL_API
}
//@Analytics: {
// internalName: #LOCAL
// }
@Metadata: {
ignorePropagatedAnnotations: true,
allowExtensions: false }
define view entity R_SetlMgmtDocPlainLongText
as select from I_TextObjectPlainLongText as PlainLongText
inner join R_SettlmtMgmtDoc as SetlMgmtDoc on PlainLongText.TextObjectCategory = 'WBRK'
and PlainLongText.TextObjectKey = SetlMgmtDoc.SettlmtMgmtDoc
association [1..1] to R_SettlmtMgmtDoc as _SettlmtMgmtDoc on $projection.SettlmtMgmtDoc = _SettlmtMgmtDoc.SettlmtMgmtDoc
{
@ObjectModel.foreignKey.association: '_SettlmtMgmtDoc'
@Consumption: {
valueHelpDefinition: [{ entity: { name: 'I_SettlmtMgmtDocStdVH', element: 'SettlmtMgmtDoc' } }]
}
key SetlMgmtDoc.SettlmtMgmtDoc as SettlmtMgmtDoc,
key cast( PlainLongText.TextObjectType as textobjecttype preserving type ) as TextObjectType,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key PlainLongText.Language as Language,
@Semantics.text:true
PlainLongText.PlainLongText as PlainLongText,
SetlMgmtDoc.SettlmtMgmtDocCat as SettlmtMgmtDocCat,
SetlMgmtDoc.SettlmtPartnerCat as SettlmtPartnerCat,
SetlMgmtDoc.SettlmtBusProcCat as SettlmtBusProcCat,
/* Associations */
// @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
_SettlmtMgmtDoc,
PlainLongText._Language
}
where
PlainLongText.TextObjectCategory = 'WBRK'
and SetlMgmtDoc.SettlmtMgmtDocHasNoTexts = ''
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