R_PaytApprvlRuleApprvrGrpDraft

DDL: R_PAYTAPPRVLRULEAPPRVRGRPDRAFT Type: view_entity BASIC Package: FCLM_PAYT_APPRVL_RULE_IMPL

Approver Groups of an Approval Item

R_PaytApprvlRuleApprvrGrpDraft is a Basic CDS View that provides data about "Approver Groups of an Approval Item" in SAP S/4HANA. It reads from 1 data source (fclmpar_apgrp_d) and exposes 14 fields with key fields PaymentApprovalRule, PaymentApprovalRuleItem, PaymentApproverGroupNumber. It has 1 association to related views. Part of development package FCLM_PAYT_APPRVL_RULE_IMPL.

Data Sources (1)

SourceAliasJoin Type
fclmpar_apgrp_d fclmpar_apgrp_d from

Associations (1)

CardinalityTargetAliasCondition
[1..1] E_PaytApprvlRuleApprvrGrpDraft _Extension $projection.PaymentApprovalRule = _Extension.PaymentApprovalRule and $projection.PaymentApprovalRuleItem = _Extension.PaymentApprovalRuleItem and $projection.PaymentApproverGroupNumber = _Extension.PaymentApproverGroupNumber

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Approver Groups of an Approval Item view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.elementSuffix ARG view
AbapCatalog.extensibility.quota.maximumFields 100 view
AbapCatalog.extensibility.quota.maximumBytes 100000 view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY PaymentApprovalRule paymentapprovalrule Rule ID
KEY PaymentApprovalRuleItem paymentapprovalruleitem Rule Item
KEY PaymentApproverGroupNumber paymentapprovergroupnumber Group Number
PaymentApproverGroup paymentapprovergroup Approver Group
CreatedByUser createdbyuser User Name
CreationDateTime creationdatetime Timestamp
LastChangedByUser lastchangedbyuser User Name
LocalLastChangeDateTime locallastchangedatetime Time Stamp
DraftEntityCreationDateTime draftentitycreationdatetime Draft Created On
DraftEntityLastChangeDateTime draftentitylastchangedatetime Draft Last Changed On
DraftAdministrativeDataUUID draftadministrativedatauuid UUID
DraftEntityOperationCode draftentityoperationcode Draft - Operation Code
HasActiveEntity hasactiveentity TRUE
DraftFieldChanges draftfieldchanges Field Changes

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 R_PaytApprvlRuleApprvrGrpDraft.
-- 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 R_PaytApprvlRuleApprvrGrpDraft AS
SELECT
  PaymentApprovalRule,
  PaymentApprovalRuleItem,
  PaymentApproverGroupNumber,
  PaymentApproverGroup,
  CreatedByUser,
  CreationDateTime,
  LastChangedByUser,
  LocalLastChangeDateTime,
  DraftEntityCreationDateTime,
  DraftEntityLastChangeDateTime,
  DraftAdministrativeDataUUID,
  DraftEntityOperationCode,
  HasActiveEntity,
  DraftFieldChanges
FROM fclmpar_apgrp_d
LEFT OUTER JOIN E_PaytApprvlRuleApprvrGrpDraft AS _Extension ON PaymentApprovalRule = _Extension.PaymentApprovalRule AND PaymentApprovalRuleItem = _Extension.PaymentApprovalRuleItem AND PaymentApproverGroupNumber = _Extension.PaymentApproverGroupNumber  -- association [1..1]
;