R_REContrReminderRuleMainTP

DDL: R_RECONTRREMINDERRULEMAINTP Type: view_entity TRANSACTIONAL Package: RAP_RE_CN

Main Reminder Rule Object

R_REContrReminderRuleMainTP is a Transactional CDS View that provides data about "Main Reminder Rule Object" in SAP S/4HANA. It reads from 1 data source (I_REReminderObjRule) and exposes 10 fields with key fields InternalRealEstateNumber, REReminderNumber. It has 1 association to related views. Part of development package RAP_RE_CN.

Data Sources (1)

SourceAliasJoin Type
I_REReminderObjRule _REReminderObjRule from

Associations (1)

CardinalityTargetAliasCondition
[1..*] R_REContrReminderRuleParamTP _REReminderRuleParam

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Main Reminder Rule Object view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.representativeKey REReminderNumber view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY InternalRealEstateNumber InternalRealEstateNumber RE Key
KEY REReminderNumber REReminderNumber
REReminderRule REReminderRule
REReminderReason REReminderReason
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
_REReminderRuleParam _REReminderRuleParam
_REReminderReason _REReminderReason
_REReminderRule _REReminderRule
_REContract _REContract

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_REContrReminderRuleMainTP.
-- 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_REContrReminderRuleMainTP AS
SELECT
  InternalRealEstateNumber,
  REReminderNumber,
  REReminderRule,
  REReminderReason,
  ValidityStartDate,
  ValidityEndDate
FROM I_REReminderObjRule AS _REReminderObjRule
LEFT OUTER JOIN R_REContrReminderRuleParamTP AS _REReminderRuleParam ON /* condition not available in parsed metadata */  -- association [1..*]
;