R_DefectLongTextTP
Defect Long Text
R_DefectLongTextTP is a Transactional CDS View that provides data about "Defect Long Text" in SAP S/4HANA. It reads from 1 data source (I_DefectLongText) and exposes 12 fields with key fields DefectInternalID, LongTextInternalNumber, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DefectLongText | _DefectLongText | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Defect Long Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.representativeKey | LongTextInternalNumber | view | |
| ObjectModel.dataCategory | #TEXT | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DefectInternalID | I_DefectLongText | DefectInternalID | |
| KEY | LongTextInternalNumber | I_DefectLongText | LongTextInternalNumber | |
| KEY | Language | I_DefectLongText | Language | |
| LongTextID | I_DefectLongText | LongTextID | ||
| DefectLongText | I_DefectLongText | DefectLongText | ||
| LongTextCreatedByUser | I_DefectLongText | LongTextCreatedByUser | ||
| LongTextCreatedAt | I_DefectLongText | LongTextCreatedAt | ||
| LongTextLastChangedByUser | I_DefectLongText | LongTextLastChangedByUser | ||
| LongTextLastChangedAt | I_DefectLongText | LongTextLastChangedAt | ||
| MimeType | I_DefectLongText | MimeType | ||
| _Defect | _Defect | |||
| _Language | I_DefectLongText | _Language |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Defect Long Text'
@Metadata.ignorePropagatedAnnotations: true
@VDM: {
viewType: #TRANSACTIONAL,
lifecycle.contract.type: #SAP_INTERNAL_API
}
@ObjectModel:
{ usageType: {
dataClass: #TRANSACTIONAL,
sizeCategory: #L,
serviceQuality: #A
},
representativeKey: 'LongTextInternalNumber',
dataCategory: #TEXT
}
define view entity R_DefectLongTextTP as select from I_DefectLongText as _DefectLongText
association to parent R_DefectTP as _Defect on $projection.DefectInternalID = _Defect.DefectInternalID
{
@ObjectModel.foreignKey.association: '_Defect'
key _DefectLongText.DefectInternalID,
key _DefectLongText.LongTextInternalNumber,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key _DefectLongText.Language,
_DefectLongText.LongTextID,
@Semantics.text: true
_DefectLongText.DefectLongText,
_DefectLongText.LongTextCreatedByUser,
_DefectLongText.LongTextCreatedAt,
_DefectLongText.LongTextLastChangedByUser,
_DefectLongText.LongTextLastChangedAt,
_DefectLongText.MimeType,
/* Associations */
_Defect,
_DefectLongText._Language
}
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