R_REIntegObjectMeasurementTP

DDL: R_REINTEGOBJECTMEASUREMENTTP SQL: RREINTEGOBJMSTP Type: view_entity TRANSACTIONAL Package: RAP_RE_IP

IntegrationObject Measurement TP

R_REIntegObjectMeasurementTP is a Transactional CDS View that provides data about "IntegrationObject Measurement TP" in SAP S/4HANA. It reads from 1 data source (I_REMeasurement) and exposes 9 fields with key fields InternalRealEstateNumber, REMeasurementType, ValidityEndDate. Part of development package RAP_RE_IP.

Data Sources (1)

SourceAliasJoin Type
I_REMeasurement _REIntegObjectMeasurement from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label IntegrationObject Measurement TP view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.representativeKey REMeasurementType view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY InternalRealEstateNumber InternalRealEstateNumber RE Key
KEY REMeasurementType REMeasurementType MeasType
KEY ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
REMeasurementQuantity REMeasurementQuantity Assigned Amount
REMeasurementUnit REMeasurementUnit
_REIntegrationObjectTP _REIntegrationObjectTP
_REMeasurementType _REMeasurementType
_UnitOfMeasure _UnitOfMeasure

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_REIntegObjectMeasurementTP.
-- 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.
-- SQL view name: RREINTEGOBJMSTP

CREATE VIEW R_REIntegObjectMeasurementTP AS
SELECT
  InternalRealEstateNumber,
  REMeasurementType,
  ValidityEndDate,
  ValidityStartDate,
  REMeasurementQuantity,
  REMeasurementUnit
FROM I_REMeasurement AS _REIntegObjectMeasurement
;