I_REAdjustmentObjectIndexRule

DDL: I_READJUSTMENTOBJECTINDEXRULE Type: view_entity BASIC Package: VDM_RE_AJ

Adjustment Object Index Rule

I_REAdjustmentObjectIndexRule is a Basic CDS View that provides data about "Adjustment Object Index Rule" in SAP S/4HANA. It reads from 1 data source (viajobjindx) and exposes 9 fields with key fields InternalRealEstateNumber, RETermNumber, REAdjustmentRule, REAdjustmentElementaryRule, ValidityStartDate. Part of development package VDM_RE_AJ.

Data Sources (1)

SourceAliasJoin Type
viajobjindx viajobjindx from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Adjustment Object Index Rule view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY InternalRealEstateNumber intreno Source Object
KEY RETermNumber termno Term Number
KEY REAdjustmentRule adjmrule Adjustment Rule
KEY REAdjustmentElementaryRule adjmsubrule Elem. Adj. Rule
KEY ValidityStartDate validfrom Vers.Valid From
ValidityEndDate Vers.Valid To
REAdjustment1stIndexBaseValue firstindexbase 1st Index Level
REAdjustmentFirstIndexDate firstindexdate Index Start
REAdjustmentFirstDate adjmfirstdate 1st adj. from

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 I_REAdjustmentObjectIndexRule.
-- 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 I_REAdjustmentObjectIndexRule AS
SELECT
  intreno AS InternalRealEstateNumber,
  termno AS RETermNumber,
  adjmrule AS REAdjustmentRule,
  adjmsubrule AS REAdjustmentElementaryRule,
  validfrom AS ValidityStartDate,
  cast ( validto as rebdvdmvalidto preserving type ) AS ValidityEndDate,
  firstindexbase AS REAdjustment1stIndexBaseValue,
  firstindexdate AS REAdjustmentFirstIndexDate,
  adjmfirstdate AS REAdjustmentFirstDate
FROM viajobjindx
;