R_PaymentApprovalRuleDraft

DDL: R_PAYMENTAPPROVALRULEDRAFT Type: view_entity BASIC Package: FCLM_PAYT_APPRVL_RULE_IMPL

Payment Approval Rule

R_PaymentApprovalRuleDraft is a Basic CDS View that provides data about "Payment Approval Rule" in SAP S/4HANA. It reads from 1 data source (fclmpar_hd_d) and exposes 15 fields with key field PaymentApprovalRule. It has 1 association to related views. Part of development package FCLM_PAYT_APPRVL_RULE_IMPL.

Data Sources (1)

SourceAliasJoin Type
fclmpar_hd_d fclmpar_hd_d from

Associations (1)

CardinalityTargetAliasCondition
[1..1] E_PaymentApprovalRuleDraft _Extension $projection.PaymentApprovalRule = _Extension.PaymentApprovalRule

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
EndUserText.label Payment Approval Rule view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.extensibility.extensible true view
AbapCatalog.extensibility.elementSuffix ARX view
AbapCatalog.extensibility.quota.maximumFields 100 view
AbapCatalog.extensibility.quota.maximumBytes 100000 view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY PaymentApprovalRule paymentapprovalrule Rule ID
PaymentApprovalRuleName paymentapprovalrulename Rule Descriptn
PaymentApprovalRuleStatus paymentapprovalrulestatus Rule Status
PaytApprvlDfltLmtCurrency paytapprvldfltlmtcurrency Default Limit Crcy
CreatedByUser createdbyuser User Name
LastChangeDateTime lastchangedatetime Timestamp
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_PaymentApprovalRuleDraft.
-- 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_PaymentApprovalRuleDraft AS
SELECT
  PaymentApprovalRule,
  PaymentApprovalRuleName,
  PaymentApprovalRuleStatus,
  PaytApprvlDfltLmtCurrency,
  CreatedByUser,
  LastChangeDateTime,
  CreationDateTime,
  LastChangedByUser,
  LocalLastChangeDateTime,
  DraftEntityCreationDateTime,
  DraftEntityLastChangeDateTime,
  DraftAdministrativeDataUUID,
  DraftEntityOperationCode,
  HasActiveEntity,
  DraftFieldChanges
FROM fclmpar_hd_d
LEFT OUTER JOIN E_PaymentApprovalRuleDraft AS _Extension ON PaymentApprovalRule = _Extension.PaymentApprovalRule  -- association [1..1]
;