I_ARPostgRuleActnAPARTP

DDL: I_ARPOSTGRULEACTNAPARTP Type: view_entity COMPOSITE

Posting Rule - APAR Action

I_ARPostgRuleActnAPARTP is a Composite CDS View that provides data about "Posting Rule - APAR Action" in SAP S/4HANA. It reads from 1 data source (far_pstrl_aapar) and exposes 9 fields with key field PostingRuleActionUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
far_pstrl_aapar APARAction from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DisputeCaseCreationModeText _DisputeCaseCreationMode $projection.DisputeCaseCreationMode = _DisputeCaseCreationMode.DisputeCaseCreationMode

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Posting Rule - APAR Action view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #MIXED view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY PostingRuleActionUUID far_pstrl_aapar postingruleactionuuid Action Key
PostingRuleUUID far_pstrl_aapar postingruleuuid Rule Key
AssignmentReference far_pstrl_aapar assignmentreference Assignment Reference
Customer far_pstrl_aapar customer Sold-to Party
DocumentItemText far_pstrl_aapar documentitemtext Text
Supplier far_pstrl_aapar supplier Supplier
DisputeCaseCreationMode far_pstrl_aapar disputecasecreationmode Dispute Case Crtn ID
_DisputeCaseCreationMode _DisputeCaseCreationMode
_Rule _Rule

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_ARPostgRuleActnAPARTP.
-- 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_ARPostgRuleActnAPARTP AS
SELECT
  APARAction.postingruleactionuuid AS PostingRuleActionUUID,
  APARAction.postingruleuuid AS PostingRuleUUID,
  APARAction.assignmentreference AS AssignmentReference,
  APARAction.customer AS Customer,
  APARAction.documentitemtext AS DocumentItemText,
  APARAction.supplier AS Supplier,
  APARAction.disputecasecreationmode AS DisputeCaseCreationMode
FROM far_pstrl_aapar AS APARAction
LEFT OUTER JOIN I_DisputeCaseCreationModeText AS _DisputeCaseCreationMode ON DisputeCaseCreationMode = _DisputeCaseCreationMode.DisputeCaseCreationMode  -- association [0..*]
;