C_RERentableObjectTP

DDL: C_RERENTABLEOBJECTTP Type: view_entity CONSUMPTION

Real Estate Rentable Object

C_RERentableObjectTP is a Consumption CDS View that provides data about "Real Estate Rentable Object" in SAP S/4HANA. It reads from 1 data source (R_RERentableObjectTP) and exposes 35 fields with key field RealEstateRentableObjectUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
R_RERentableObjectTP R_RERentableObjectTP projection

Associations (1)

CardinalityTargetAliasCondition
[0..*] C_REGnrcRntlObjMeasurement _RERentableObjectTotalMsmt $projection.InternalRealEstateNumber = _RERentableObjectTotalMsmt.InternalRealEstateNumber and $projection.ValidityStartDate = _RERentableObjectTotalMsmt.ValidityEndDate and $projection.ValidityEndDate = _RERentableObjectTotalMsmt.ValidityStartDate

Annotations (16)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Real Estate Rentable Object view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey RealEstateRentableObjectUUID view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.modelingPattern #TRANSACTIONAL_QUERY view
Metadata.allowExtensions true view
Search.searchable true view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.allowNewDatasources false view
AbapCatalog.extensibility.elementSuffix ROC view
AbapCatalog.extensibility.quota.maximumFields 340 view
AbapCatalog.extensibility.quota.maximumBytes 27200 view
AbapCatalog.extensibility.allowNewCompositions true view

Fields (35)

KeyFieldSource TableSource FieldDescription
KEY RealEstateRentableObjectUUID RealEstateRentableObjectUUID UUID GO
REGenericRentalObjectType REGenericRentalObjectType RO Obj Type
InternalRealEstateNumber InternalRealEstateNumber RE Key
REStatusObject REStatusObject Val. Obj. No.
RealEstateRentableObjectOID RealEstateRentableObjectOID Generic Rental Object OID
REGnrcRntlObjectAlternativeID REGnrcRntlObjectAlternativeID Alternative ID
REGnrcRentalObjPortfolioID REGnrcRentalObjPortfolioID Portfolio ID
RealEstateRentableObjectNumber RealEstateRentableObjectNumber Rentable Object
RERentableObjectNumberForEdit RERentableObjectNumberForEdit Rentable Object
RealEstateUsableObjectNumber
RERentableObjectName RERentableObjectName Rentable Object Name
CompanyCode CompanyCode Receiver Company Code
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
REAuthorizationGroup REAuthorizationGroup Authoriz. Group
REGnrcRentalObjUsageCategory REGnrcRentalObjUsageCategory Usage Category
REGenericRentalObjectUsageType REGenericRentalObjectUsageType RO Usage Type
RERentableObjectCategory RERentableObjectCategory Rentable Object Category
REArchtrObjectNumberBldngLand REArchtrObjectNumberBldngLand Building/Land Object Number
REArchitectureObjectNumberSite
REArchitectureObjectOID _REArchitectureObject REArchitectureObjectOID Architecture Object OID
StatusProfile StatusProfile Status Profile
CreationDateTime CreationDateTime Timestamp
LastChangeDateTime LastChangeDateTime Timestamp
LocalLastChangeDateTime LocalLastChangeDateTime Time Stamp
CompanyCodeName _CompanyCode CompanyCodeName Company Name
REArchtrObjectBldngLandName _REArchitectureObject REArchitectureObjectName Architecture Object Name
SemanticObject
REArchtrObjectSiteName
REUsableObjectName
virtualSystemStatusTextregovdmgostatus
virtualIsDraftEntityrecabool
virtualRECreateContractIsHiddenrecabool
ChangeDocObject ChangeDocObject Object Value
_RERentableObjectTotalMsmt _RERentableObjectTotalMsmt

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_RERentableObjectTP.
-- 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_RERentableObjectTP AS
SELECT
  RealEstateRentableObjectUUID,
  REGenericRentalObjectType,
  InternalRealEstateNumber,
  REStatusObject,
  RealEstateRentableObjectOID,
  REGnrcRntlObjectAlternativeID,
  REGnrcRentalObjPortfolioID,
  RealEstateRentableObjectNumber,
  RERentableObjectNumberForEdit,
  _RERntblObjToUsblObjAssgmt[1:ValidityStartDate <= $session.system_date and ValidityEndDate >= $session.system_date ]._REUsableObject.RealEstateUsableObjectNumber AS RealEstateUsableObjectNumber,
  RERentableObjectName,
  CompanyCode,
  ValidityStartDate,
  ValidityEndDate,
  REAuthorizationGroup,
  REGnrcRentalObjUsageCategory,
  REGenericRentalObjectUsageType,
  RERentableObjectCategory,
  REArchtrObjectNumberBldngLand,
  cast (_REArchitectureObject._REArchitectureObjSite.REArchitectureObjectNumber as reobvdmobnrsite preserving type ) AS REArchitectureObjectNumberSite,
  _REArchitectureObject.REArchitectureObjectOID AS REArchitectureObjectOID,
  StatusProfile,
  CreationDateTime,
  LastChangeDateTime,
  LocalLastChangeDateTime,
  _CompanyCode.CompanyCodeName AS CompanyCodeName,
  _REArchitectureObject.REArchitectureObjectName AS REArchtrObjectBldngLandName,
  _REArchitectureObject._REArchitectureObjectType.SemanticObject AS SemanticObject,
  _REArchitectureObject._REArchitectureObjSite.REArchitectureObjectName AS REArchtrObjectSiteName,
  _RERntblObjToUsblObjAssgmt[1:ValidityStartDate <= $session.system_date and ValidityEndDate >= $session.system_date ]._REUsableObject.REUsableObjectName AS REUsableObjectName,
  virtual SystemStatusText : regovdmgostatus AS virtualSystemStatusTextregovdmgostatus,
  virtual IsDraftEntity : recabool AS virtualIsDraftEntityrecabool,
  virtual RECreateContractIsHidden : recabool AS virtualRECreateContractIsHiddenrecabool,
  ChangeDocObject
FROM R_RERentableObjectTP
LEFT OUTER JOIN C_REGnrcRntlObjMeasurement AS _RERentableObjectTotalMsmt ON InternalRealEstateNumber = _RERentableObjectTotalMsmt.InternalRealEstateNumber AND ValidityStartDate = _RERentableObjectTotalMsmt.ValidityEndDate AND ValidityEndDate = _RERentableObjectTotalMsmt.ValidityStartDate  -- association [0..*]
;