C_ARPostgRuleRecycling

DDL: C_ARPOSTGRULERECYCLING Type: view_entity CONSUMPTION

Rule Recycling

C_ARPostgRuleRecycling is a Consumption CDS View that provides data about "Rule Recycling" in SAP S/4HANA. It reads from 1 data source (I_ARPostgRuleRecyclingTP) and exposes 5 fields with key field PostingRuleActionUUID.

Data Sources (1)

SourceAliasJoin Type
I_ARPostgRuleRecyclingTP I_ARPostgRuleRecyclingTP projection

Annotations (9)

NameValueLevelField
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
Search.searchable false view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #CONSUMPTION view
EndUserText.label Rule Recycling view
AccessControl.authorizationCheck #MANDATORY view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PostingRuleActionUUID PostingRuleActionUUID Action Key
PostingRuleUUID PostingRuleUUID Rule Key
ReprocgRuleRecyclingIsActive ReprocgRuleRecyclingIsActive Repetition is active
ReprocgRuleRecyclingInDays ReprocgRuleRecyclingInDays Repetition Period
_PostingRule1redirectedtoC_ARPostingRule

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 C_ARPostgRuleRecycling.
-- 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 C_ARPostgRuleRecycling AS
SELECT
  PostingRuleActionUUID,
  PostingRuleUUID,
  ReprocgRuleRecyclingIsActive,
  ReprocgRuleRecyclingInDays
FROM I_ARPostgRuleRecyclingTP
;