C_EquipmentTextDP

DDL: C_EQUIPMENTTEXTDP Type: view_entity CONSUMPTION Package: VDM_EAM_EQUIPMENT

Equipment - Text

C_EquipmentTextDP is a Consumption CDS View that provides data about "Equipment - Text" in SAP S/4HANA. It reads from 1 data source (I_EquipmentTextDEX) and exposes 9 fields with key fields Equipment, Language. It is exposed through 1 OData service (DP_EQUIPMENT). Part of development package VDM_EAM_EQUIPMENT.

Data Sources (1)

SourceAliasJoin Type
I_EquipmentTextDEX I_EquipmentTextDEX from

Annotations (13)

NameValueLevelField
EndUserText.label Equipment - Text view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey Equipment view
ObjectModel.sapObjectNodeType.name EquipmentText view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
DataIntegration.deltaReplication.intended true view
VDM.viewType #CONSUMPTION view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view

OData Services (1)

ServiceBindingVersionContractRelease
DP_EQUIPMENT DP_EQUIPMENT C2 NOT_RELEASED

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Equipment Equipment Equipment check
KEY Language Language Report Text Language
EquipmentName EquipmentName Description
IsPrimaryLanguage IsPrimaryLanguage Primary lang.
EquipmentHasLongText EquipmentHasLongText More text
LastChangeDateTime LastChangeDateTime Timestamp
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
_Equipment _Equipment

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 C_EquipmentTextDP.
-- 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 C_EquipmentTextDP AS
SELECT
  Equipment,
  Language,
  EquipmentName,
  IsPrimaryLanguage,
  EquipmentHasLongText,
  LastChangeDateTime,
  ValidityStartDate,
  ValidityEndDate
FROM I_EquipmentTextDEX
;