I_RECostCollector

DDL: I_RECOSTCOLLECTOR SQL: IRECOSTCOLL Type: view BASIC Package: VDM_RE_SC

Real Estate Cost Collector

I_RECostCollector is a Basic CDS View (Dimension) that provides data about "Real Estate Cost Collector" in SAP S/4HANA. It reads from 1 data source (visccc) and exposes 8 fields with key field REStatusObject. Part of development package VDM_RE_SC.

Data Sources (1)

SourceAliasJoin Type
visccc _RECostCollector from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IRECOSTCOLL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Real Estate Cost Collector view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey REStatusObject view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
VDM.viewType #BASIC view
Analytics.internalName #LOCAL view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY REStatusObject objnr Val. Obj. No.
InternalRealEstateNumber intreno Source Object
ValidityStartDate Vers.Valid From
ValidityEndDate Vers.Valid To
RESettlementVariant settlvariant SettVar
REReleasedOnDate releasedon Opened on
REClosedOnDate closedon Closed
RESettledOnDate settledon Settled on

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 I_RECostCollector.
-- 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: IRECOSTCOLL

CREATE VIEW I_RECostCollector AS
SELECT
  objnr AS REStatusObject,
  intreno AS InternalRealEstateNumber,
  cast( validfrom as rebdvdmvalidfrom ) AS ValidityStartDate,
  cast( validto as rebdvdmvalidto ) AS ValidityEndDate,
  settlvariant AS RESettlementVariant,
  releasedon AS REReleasedOnDate,
  closedon AS REClosedOnDate,
  settledon AS RESettledOnDate
FROM visccc AS _RECostCollector
;