A_REContrReminderRule

DDL: A_RECONTRREMINDERRULE Type: view_entity CONSUMPTION Package: ODATA_RE_CN

Reminder Rules

A_REContrReminderRule is a Consumption CDS View that provides data about "Reminder Rules" in SAP S/4HANA. It reads from 1 data source (R_REContrReminderRuleTP) and exposes 11 fields with key fields InternalRealEstateNumber, REReminderNumber, REReminderRuleParamNumber. It is exposed through 1 OData service (API_RECONTRACT). Part of development package ODATA_RE_CN.

Data Sources (1)

SourceAliasJoin Type
R_REContrReminderRuleTP R_REContrReminderRuleTP projection

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #CONSUMPTION view
EndUserText.label Reminder Rules view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
OData.entityType.name REContrReminderRule_Type view

OData Services (1)

ServiceBindingVersionContractRelease
API_RECONTRACT API_REAL_ESTATE_CONTRACT V4 C2 C1

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY InternalRealEstateNumber InternalRealEstateNumber RE Key
KEY REReminderNumber REReminderNumber
KEY REReminderRuleParamNumber REReminderRuleParamNumber
REReminderRule REReminderRule
REReminderReason REReminderReason
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
REReminderParamType REReminderParamType
REReminderParamDate REReminderParamDate
REReminderParamNmbr REReminderParamNmbr
REReminderParamIsBoolean REReminderParamIsBoolean

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 A_REContrReminderRule.
-- 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 A_REContrReminderRule AS
SELECT
  InternalRealEstateNumber,
  REReminderNumber,
  REReminderRuleParamNumber,
  REReminderRule,
  REReminderReason,
  ValidityStartDate,
  ValidityEndDate,
  REReminderParamType,
  REReminderParamDate,
  REReminderParamNmbr,
  REReminderParamIsBoolean
FROM R_REContrReminderRuleTP
;