C_RERntblObjToUsblObjAssgmtDEX

DDL: C_RERNTBLOBJTOUSBLOBJASSGMTDEX Type: view_entity CONSUMPTION Package: ODATA_RE_GO

Extractor for RE Rentable to Usable Obj

C_RERntblObjToUsblObjAssgmtDEX (Consumption)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Cross Applications

C_RERntblObjToUsblObjAssgmtDEX is a Consumption CDS View that provides data about "Extractor for RE Rentable to Usable Obj" in SAP S/4HANA. It reads from 1 data source (I_RERntblObjToUsblObjAssgmt) and exposes 8 fields with key field RERntblObjToUsblObjAssgmtUUID. It has 1 association to related views. Part of development package ODATA_RE_GO.

SAP API Hub

CategoryConsumption
StateC1
Line of BusinessCross Applications
Application ComponentRE-FX-BD-2CL
CapabilitiesData Source for Data Extraction,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Not Released
Release State (Developer)Released
PackageCross Applications for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_RERntblObjToUsblObjAssgmt I_RERntblObjToUsblObjAssgmt from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_REUsableObject _REUsableObject $projection.RealEstateUsableObjectUUID = _REUsableObject.RealEstateUsableObjectUUID

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Extractor for RE Rentable to Usable Obj view
VDM.viewType #CONSUMPTION view
Analytics.dataExtraction.enabled true view
Analytics.technicalName CRERNTBLTOUSBLASSGMTDEX view
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey RERntblObjToUsblObjAssgmtUUID view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY RERntblObjToUsblObjAssgmtUUID RERntblObjToUsblObjAssgmtUUID UUID for Rentable to Usable Object Assignment
RealEstateRentableObjectUUID RealEstateRentableObjectUUID UUID for Rentable Object
RealEstateUsableObjectUUID RealEstateUsableObjectUUID UUID for Usable Object
RealEstateUsableObjectNumber _REUsableObject RealEstateUsableObjectNumber Real Estate Generic Rental Object Number
ValidityEndDate ValidityEndDate End of Rentable to Usable Object Assignment
ValidityStartDate ValidityStartDate Start of Rentable to Usable Object Assignment
_RERentableObject _RERentableObject
_REUsableObject _REUsableObject

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_RERntblObjToUsblObjAssgmtDEX.
-- 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_RERntblObjToUsblObjAssgmtDEX AS
SELECT
  RERntblObjToUsblObjAssgmtUUID,
  RealEstateRentableObjectUUID,
  RealEstateUsableObjectUUID,
  _REUsableObject.RealEstateUsableObjectNumber AS RealEstateUsableObjectNumber,
  ValidityEndDate,
  ValidityStartDate
FROM I_RERntblObjToUsblObjAssgmt
LEFT OUTER JOIN I_REUsableObject AS _REUsableObject ON RealEstateUsableObjectUUID = _REUsableObject.RealEstateUsableObjectUUID  -- association [1..1]
;