R_MaintenanceItemTextTP

DDL: R_MAINTENANCEITEMTEXTTP Type: view_entity TRANSACTIONAL

Maintenace Item Long Text

R_MaintenanceItemTextTP is a Transactional CDS View that provides data about "Maintenace Item Long Text" in SAP S/4HANA. It reads from 1 data source (I_MaintenanceItemText) and exposes 11 fields with key fields MaintenanceItem, Language.

Data Sources (1)

SourceAliasJoin Type
I_MaintenanceItemText I_MaintenanceItemText from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Maintenace Item Long Text view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY MaintenanceItem MaintenanceItem MaintItem
KEY Language Language Report Text Language
TextObjectKey TextObjectKey Text Name
TextObjectCategory TextObjectCategory Text object
TextObjectType TextObjectType Text ID
MaintenanceItemLongText MaintenanceItemLongText Long Text
_Language _Language
_LongText _LongText
_TextObjectCategory _TextObjectCategory
_TextObjectType _TextObjectType
_MaintenanceItem _MaintenanceItem

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view R_MaintenanceItemTextTP.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW R_MaintenanceItemTextTP AS
SELECT
  MaintenanceItem,
  Language,
  TextObjectKey,
  TextObjectCategory,
  TextObjectType,
  MaintenanceItemLongText
FROM I_MaintenanceItemText
;