I_SDDocumentLongTextID
Long Text ID of SD Document
I_SDDocumentLongTextID is a Basic CDS View that provides data about "Long Text ID of SD Document" in SAP S/4HANA. It reads from 1 data source (I_TextObjectType) and exposes 3 fields with key field LongTextID. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_TextObjectType | I_TextObjectType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_TextObjectTypeText | _Text | $projection.LongTextID = _Text.TextObjectType and $projection.TextObjectCategory = _Text.TextObjectCategory |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ISDDOCLNGTXTID | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | LongTextID | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view | |
| EndUserText.label | Long Text ID of SD Document | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LongTextID | TextObjectType | ||
| TextObjectCategory | TextObjectCategory | |||
| _Text | _Text |
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
sqlViewName: 'ISDDOCLNGTXTID',
preserveKey: true,
compiler.compareFilter: true
}
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
representativeKey: 'LongTextID',
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
}
}
@Search.searchable: true
@EndUserText.label: 'Long Text ID of SD Document'
define view I_SDDocumentLongTextID
as select from I_TextObjectType
association [0..*] to I_TextObjectTypeText as _Text on $projection.LongTextID = _Text.TextObjectType
and $projection.TextObjectCategory = _Text.TextObjectCategory
{
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.9
@Search.ranking: #HIGH
key TextObjectType as LongTextID,
TextObjectCategory,
_Text
} where TextObjectCategory = 'VBBK'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_TEXTOBJECTTYPE"
],
"ASSOCIATED":
[
"I_TEXTOBJECTTYPETEXT"
],
"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