Deprecated
This CDS view is deprecated in S/4HANA. Use C_REUseEnableObjRltnMsmt_2 instead. View all deprecated CDS views →

C_REUseEnableObjRelMsmt

DDL: C_REUSEENABLEOBJRELMSMT SQL: CREUSEOBJMSMT Type: view CONSUMPTION

Real Estate Use Obj Measurements

C_REUseEnableObjRelMsmt is a Consumption CDS View that provides data about "Real Estate Use Obj Measurements" in SAP S/4HANA. It reads from 1 data source (I_REObjectAssgmtMeasurement) and exposes 23 fields with key fields REStatusObject, InternalRealEstateNumber, REMeasurementType, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
I_REObjectAssgmtMeasurement I_REObjectAssgmtMeasurement from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CREUSEOBJMSMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Real Estate Use Obj Measurements view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey REStatusObject view
Metadata.allowExtensions true view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor C_REUseEnableObjRltnMsmt_2 view

Fields (23)

KeyFieldSource TableSource FieldDescription
KEY REStatusObject REStatusObject Val. Obj. No.
KEY InternalRealEstateNumber InternalRealEstateNumber RE Key
KEY REMeasurementType REMeasurementType
KEY ValidityEndDate
ValidityStartDate
REMeasurementQuantity REMeasurementQuantity Meas Amount
REMeasurementUnit REMeasurementUnit
REEntryValidity REEntryValidity Entry Validity
REEntryValidityCriticality REEntryValidityCriticality
REMeasurementIsTotal _REMeasurementType REMeasurementIsTotal
REMeasurementTotalCriticality REMeasurementTotalCriticality
REMeasurementTypeName
REEntryValidityText
_REBuilding _REBuilding
_REBusinessEntity _REBusinessEntity
_REContract _REContract
_REIntegrationObject _REIntegrationObject
_REMeasurementType _REMeasurementType
_REProperty _REProperty
_RERentalObject _RERentalObject
_RESettlementUnit _RESettlementUnit
_UnitOfMeasure _UnitOfMeasure
_REEntryValidity _REEntryValidity

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_REUseEnableObjRelMsmt.
-- 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: CREUSEOBJMSMT

CREATE VIEW C_REUseEnableObjRelMsmt AS
SELECT
  REStatusObject,
  InternalRealEstateNumber,
  REMeasurementType,
  cast( coalesce(ValidityEndDate, '99991231') as rebdvdmvalidto ) AS ValidityEndDate,
  cast( coalesce(ValidityStartDate, '00000000') as rebdvdmvalidfrom ) AS ValidityStartDate,
  REMeasurementQuantity,
  REMeasurementUnit,
  REEntryValidity,
  REEntryValidityCriticality,
  _REMeasurementType.REMeasurementIsTotal AS REMeasurementIsTotal,
  REMeasurementTotalCriticality,
  _REMeasurementType._Text[1: Language = $session.system_language ].REMeasurementTypeName AS REMeasurementTypeName,
  _REEntryValidity._Text[1: Language = $session.system_language ].REEntryValidityText AS REEntryValidityText
FROM I_REObjectAssgmtMeasurement
;