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

C_REObjectAssgmtMsmtChart

DDL: C_REOBJECTASSGMTMSMTCHART SQL: CREOBJASMSMTC Type: view CONSUMPTION

Real Estate Object Assgmt Msmt Chart

C_REObjectAssgmtMsmtChart is a Consumption CDS View that provides data about "Real Estate Object Assgmt Msmt Chart" in SAP S/4HANA. It reads from 2 data sources (I_REChartColorAssignment, I_REObjectAssgmtMeasurement) and exposes 17 fields with key fields REStatusObject, InternalRealEstateNumber, REMeasurementType, ValidityEndDate.

Data Sources (2)

SourceAliasJoin Type
I_REChartColorAssignment _ChartColor inner
I_REObjectAssgmtMeasurement _REObjectAssgmtMeasurement from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName CREOBJASMSMTC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Real Estate Object Assgmt Msmt Chart 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
UI.headerInfo.typeName Measurement Chart view
UI.headerInfo.typeNamePlural Measurement Charts view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor C_REObjectAssgmtMsmtChart_2 view

Fields (17)

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
REMeasurementTypeName
_REBuilding _REBuilding
_REBusinessEntity _REBusinessEntity
_REContract _REContract
_REMeasurementType _REMeasurementType
_REProperty _REProperty
_RERentalObject _RERentalObject
_RESettlementUnit _RESettlementUnit
_UnitOfMeasure _UnitOfMeasure
REChartColor I_REChartColorAssignment REChartColor Measurement Type

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_REObjectAssgmtMsmtChart.
-- 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: CREOBJASMSMTC

CREATE VIEW C_REObjectAssgmtMsmtChart AS
SELECT
  REStatusObject,
  InternalRealEstateNumber,
  REMeasurementType,
  cast( coalesce(ValidityEndDate, '99991231') as rebdvdmvalidto ) AS ValidityEndDate,
  cast( coalesce(ValidityStartDate,'00000000' ) as rebdvdmvalidfrom ) AS ValidityStartDate,
  REMeasurementQuantity,
  REMeasurementUnit,
  _REMeasurementType._Text[1: Language = $session.system_language ].REMeasurementTypeName AS REMeasurementTypeName,
  _ChartColor.REChartColor AS REChartColor
FROM I_REObjectAssgmtMeasurement AS _REObjectAssgmtMeasurement
INNER JOIN I_REChartColorAssignment AS _ChartColor ON /* join condition not captured in parsed metadata */
;