R_REContrRglnPartcipnRuleTP

DDL: R_RECONTRRGLNPARTCIPNRULETP Type: view_entity TRANSACTIONAL Package: RAP_RE_CS

Real Estate Contr Rgln Partcipn Rule TP

R_REContrRglnPartcipnRuleTP is a Transactional CDS View that provides data about "Real Estate Contr Rgln Partcipn Rule TP" in SAP S/4HANA. It reads from 1 data source (I_REParticipationRule) and exposes 14 fields with key field REParticipationRuleUUID. It has 2 associations to related views. Part of development package RAP_RE_CS.

Data Sources (1)

SourceAliasJoin Type
I_REParticipationRule I_REParticipationRule from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_REEntryValidity _REEntryValidity $projection.REEntryValidity = _REEntryValidity.REEntryValidity
[0..*] R_REContrPartcipnRule2CostTP _REContrPartcipnRule2CostTP

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Real Estate Contr Rgln Partcipn Rule TP view
ObjectModel.representativeKey REParticipationRuleUUID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #TRANSACTIONAL view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY REParticipationRuleUUID REParticipationRuleUUID Participation Rule GUID
InternalRealEstateNumber InternalRealEstateNumber RE Key
REGenericRentalObjectUUID REGenericRentalObjectUUID UUID GO
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
REParticipationProcedure REParticipationProcedure Participation Procedure
RealEstateRentableObjectNumber
REGenericRentalObjectUsageType _REGenericRentalObject REGenericRentalObjectUsageType RO Usage Type
_REContract _REContract
_REGenericRentalObject _REGenericRentalObject
_REParticipationProcedure _REParticipationProcedure
_REContrSettlmtRgln _REContrSettlmtRgln
_REContrPartcipnRule2CostTP _REContrPartcipnRule2CostTP
_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 R_REContrRglnPartcipnRuleTP.
-- 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 R_REContrRglnPartcipnRuleTP AS
SELECT
  REParticipationRuleUUID,
  InternalRealEstateNumber,
  REGenericRentalObjectUUID,
  ValidityStartDate,
  ValidityEndDate,
  REParticipationProcedure,
  cast(_REGenericRentalObject.REGenericRentalObjectNumber as regogonrrentable preserving type) AS RealEstateRentableObjectNumber,
  _REGenericRentalObject.REGenericRentalObjectUsageType AS REGenericRentalObjectUsageType
FROM I_REParticipationRule
LEFT OUTER JOIN I_REEntryValidity AS _REEntryValidity ON REEntryValidity = _REEntryValidity.REEntryValidity  -- association [1..1]
LEFT OUTER JOIN R_REContrPartcipnRule2CostTP AS _REContrPartcipnRule2CostTP ON /* condition not available in parsed metadata */  -- association [0..*]
;