C_CASubmittedCFO

DDL: C_CASUBMITTEDCFO SQL: CCASUBMITTEDCFO Type: view CONSUMPTION Package: ODATA_O2C_FICA_CFO

Abgegebene Posten

C_CASubmittedCFO is a Consumption CDS View that provides data about "Abgegebene Posten" in SAP S/4HANA. It reads from 1 data source (I_CATransferToCollAgency) and exposes 7 fields with key fields CADocumentNumber, CAGrpgCodeForTransfToCollAgcy. Part of development package ODATA_O2C_FICA_CFO.

Data Sources (1)

SourceAliasJoin Type
I_CATransferToCollAgency I_CATransferToCollAgency from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CCASUBMITTEDCFO view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Abgegebene Posten view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CADocumentNumber CADocumentNumber Document Number
KEY CAGrpgCodeForTransfToCollAgcy CAGrpgCodeForTransfToCollAgcy Collection item
BusinessPartner BusinessPartner Issuing Authority
CADateOfTransferToCollAgcy CADateOfTransferToCollAgcy Submission Date
CATransferToCollAgcyStatusName
CAAmountInTransactionCurrency CAAmountInTransactionCurrency Amount
TransactionCurrency TransactionCurrency Transaction Currency

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 C_CASubmittedCFO.
-- 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: CCASUBMITTEDCFO

CREATE VIEW C_CASubmittedCFO AS
SELECT
  CADocumentNumber,
  CAGrpgCodeForTransfToCollAgcy,
  BusinessPartner,
  CADateOfTransferToCollAgcy,
  _Status._Text[1:Language = $session.system_language].CATransferToCollAgcyStatusName AS CATransferToCollAgcyStatusName,
  CAAmountInTransactionCurrency,
  TransactionCurrency
FROM I_CATransferToCollAgency
;