I_PurchasingLongText
Purchasing Long Text
I_PurchasingLongText is a Basic CDS View that provides data about "Purchasing Long Text" in SAP S/4HANA. It reads from 1 data source (stxh) and exposes 8 fields with key fields TextObjectCategory, TextObjectKey, TextObjectType, Language. It has 1 association to related views. Part of development package APPL_MM_COMP_NOTES.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| stxh | stxh | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_TextObjectPlainLongText | _LongText | $projection.TextObjectCategory = _LongText.TextObjectCategory and $projection.TextObjectKey = _LongText.TextObjectKey and $projection.TextObjectType = _LongText.TextObjectType and $projection.Language = _LongText.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPURLONGTXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Purchasing Long Text | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.serviceQuality | #A | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | TextObjectCategory | tdobject | ||
| KEY | TextObjectKey | tdname | ||
| KEY | TextObjectType | tdid | ||
| KEY | Language | tdspras | ||
| PlainLongText | _LongText | PlainLongText | ||
| FixedIndicator | ||||
| DisplayModeOfTextTypeInPurg | ||||
| TextIsAdoptedFromReference |
@AbapCatalog.sqlViewName: 'IPURLONGTXT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Purchasing Long Text'
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.serviceQuality: #A
define view I_PurchasingLongText
as select from stxh
association [1..1] to I_TextObjectPlainLongText as _LongText on $projection.TextObjectCategory = _LongText.TextObjectCategory
and $projection.TextObjectKey = _LongText.TextObjectKey
and $projection.TextObjectType = _LongText.TextObjectType
and $projection.Language = _LongText.Language
{
key tdobject as TextObjectCategory,
key tdname as TextObjectKey,
key tdid as TextObjectType,
key tdspras as Language,
_LongText.PlainLongText as PlainLongText,
cast('' as fixie) as FixedIndicator,
cast('' as mmpur_text_displaymode) as DisplayModeOfTextTypeInPurg,
cast('' as mmpur_t_text_isadopted) as TextIsAdoptedFromReference
}
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