I_ARPostgRuleRecyclingTP

DDL: I_ARPOSTGRULERECYCLINGTP Type: view_entity TRANSACTIONAL

Recycling of Rules - TP

I_ARPostgRuleRecyclingTP is a Transactional CDS View that provides data about "Recycling of Rules - TP" in SAP S/4HANA. It reads from 1 data source (far_pstrl_ru_rec) and exposes 6 fields with key field PostingRuleActionUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
far_pstrl_ru_rec far_pstrl_ru_rec from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ARPostingRuleTP _PostingRule1 $projection.PostingRuleUUID = _PostingRule1.PostingRuleUUID

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Recycling of Rules - TP view
VDM.viewType #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MIXED view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY PostingRuleActionUUID postingruleactionuuid Action Key
PostingRuleUUID postingruleuuid Rule Key
ReprocgRuleRecyclingIsActive reprocgrulerecyclingisactive Repetition is active
ReprocgRuleRecyclingInDays Repetition Period
_PostingRule1 _PostingRule1
_Action _Action

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_ARPostgRuleRecyclingTP.
-- 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_ARPostgRuleRecyclingTP AS
SELECT
  PostingRuleActionUUID,
  PostingRuleUUID,
  ReprocgRuleRecyclingIsActive,
  cast ( reprocgrulerecyclingindays as int4 ) AS ReprocgRuleRecyclingInDays
FROM far_pstrl_ru_rec
LEFT OUTER JOIN I_ARPostingRuleTP AS _PostingRule1 ON PostingRuleUUID = _PostingRule1.PostingRuleUUID  -- association [1..1]
;