A_CAScrtyDepDocumentFlow_2

DDL: A_CASCRTYDEPDOCUMENTFLOW_2 Type: view_entity COMPOSITE

Document Flow

A_CAScrtyDepDocumentFlow_2 is a Composite CDS View that provides data about "Document Flow" in SAP S/4HANA. It reads from 1 data source (R_CAScrtyDepDocumentFlowTP) and exposes 15 fields with key fields CASecurityDeposit, CADocumentNumber, CAScrtyDepositClearedDocument.

Data Sources (1)

SourceAliasJoin Type
R_CAScrtyDepDocumentFlowTP R_CAScrtyDepDocumentFlowTP projection

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Document Flow view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
OData.entityType.name A_ScrtyDepReqDocFlow_2_Type view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY CASecurityDeposit CASecurityDeposit
KEY CADocumentNumber CADocumentNumber Document Number
KEY CAScrtyDepositClearedDocument CAScrtyDepositClearedDocument
CAAuthorizationGroup CAAuthorizationGroup AuthorizGroup
CASecurityDepositDocument CASecurityDepositDocument
CASecurityDepositDocCategory CASecurityDepositDocCategory
CASecurityDepositDocCatText CASecurityDepositDocCatText
CAAmountInTransactionCurrency CAAmountInTransactionCurrency Amount
TransactionCurrency TransactionCurrency Transaction Currency
CAReleasedAmtInPaymentCurrency CAReleasedAmtInPaymentCurrency
PaymentCurrency PaymentCurrency Payment Currency
CreatedByUser CreatedByUser User Name
CreatedByUserDescription CreatedByUserDescription Description
CreationDate CreationDate Time Stamp
CreationTime CreationTime Time of Change

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 A_CAScrtyDepDocumentFlow_2.
-- 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 A_CAScrtyDepDocumentFlow_2 AS
SELECT
  CASecurityDeposit,
  CADocumentNumber,
  CAScrtyDepositClearedDocument,
  CAAuthorizationGroup,
  CASecurityDepositDocument,
  CASecurityDepositDocCategory,
  CASecurityDepositDocCatText,
  CAAmountInTransactionCurrency,
  TransactionCurrency,
  CAReleasedAmtInPaymentCurrency,
  PaymentCurrency,
  CreatedByUser,
  CreatedByUserDescription,
  CreationDate,
  CreationTime
FROM R_CAScrtyDepDocumentFlowTP
;