I_ARPostingRuleUserTP

DDL: I_ARPOSTINGRULEUSERTP Type: view_entity COMPOSITE Package: ODATA_AR_POSTING_RULES

Posting Rule User

I_ARPostingRuleUserTP is a Composite CDS View that provides data about "Posting Rule User" in SAP S/4HANA. It reads from 1 data source (far_pstrl_d_user) and exposes 4 fields with key field PostingRuleUserUUID. Part of development package ODATA_AR_POSTING_RULES.

Data Sources (1)

SourceAliasJoin Type
far_pstrl_d_user User from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Posting Rule User view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MIXED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PostingRuleUserUUID far_pstrl_d_user postingruleuseruuid User Key
PostingRuleUUID far_pstrl_d_user postingruleuuid Rule Key
UserID far_pstrl_d_user userid User Name
_PostingRule _PostingRule

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_ARPostingRuleUserTP.
-- 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_ARPostingRuleUserTP AS
SELECT
  User.postingruleuseruuid AS PostingRuleUserUUID,
  User.postingruleuuid AS PostingRuleUUID,
  User.userid AS UserID
FROM far_pstrl_d_user AS User
;