P_CAExternalCollectionVolume

DDL: P_CAEXTERNALCOLLECTIONVOLUME SQL: PCAEXTCOLLVOLUME Type: view CONSUMPTION Package: ODATA_O2C_FICA_EXTCOLLVOLUME

Open Amount of External Submission of Receivable

P_CAExternalCollectionVolume is a Consumption CDS View that provides data about "Open Amount of External Submission of Receivable" in SAP S/4HANA. It reads from 1 data source (I_CATransferToCollAgency) and exposes 3 fields with key fields CADocumentNumber, CAGrpgCodeForTransfToCollAgcy. Part of development package ODATA_O2C_FICA_EXTCOLLVOLUME.

Data Sources (1)

SourceAliasJoin Type
I_CATransferToCollAgency I_CATransferToCollAgency from

Annotations (8)

NameValueLevelField
VDM.viewType #CONSUMPTION view
VDM.private true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PCAEXTCOLLVOLUME view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CADocumentNumber CADocumentNumber Document Number
KEY CAGrpgCodeForTransfToCollAgcy CAGrpgCodeForTransfToCollAgcy Collection item
OpenAmountInTransCrcy

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 P_CAExternalCollectionVolume.
-- 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.
-- SQL view name: PCAEXTCOLLVOLUME

CREATE VIEW P_CAExternalCollectionVolume AS
SELECT
  CADocumentNumber,
  CAGrpgCodeForTransfToCollAgcy,
  CAAmountInTransactionCurrency - CAPaymentAmountInTransCurrency - CANoncollectableAmount AS OpenAmountInTransCrcy
FROM I_CATransferToCollAgency
;