I_CADocSeparatedAmounts

DDL: I_CADOCSEPARATEDAMOUNTS Type: view_entity COMPOSITE Package: FKK_DOCUMENT

Separated Amounts for Document BP Item

I_CADocSeparatedAmounts is a Composite CDS View that provides data about "Separated Amounts for Document BP Item" in SAP S/4HANA. It reads from 1 data source (I_CADocBPItmWthoutSubstitOrigl) and exposes 18 fields with key fields CADocumentNumber, CARepetitionItemNumber, CABPItemNumber, CASubItemNumber. Part of development package FKK_DOCUMENT.

Data Sources (1)

SourceAliasJoin Type
I_CADocBPItmWthoutSubstitOrigl I_CADocBPItmWthoutSubstitOrigl from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Separated Amounts for Document BP Item view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #NONE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
VDM.viewType #COMPOSITE view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY CADocumentNumber CADocumentNumber Document Number
KEY CARepetitionItemNumber CARepetitionItemNumber Repetition Item
KEY CABPItemNumber CABPItemNumber Item
KEY CASubItemNumber CASubItemNumber Subitem
BusinessPartner BusinessPartner Issuing Authority
ContractAccount ContractAccount Contract Acct
CAContract CAContract Contract
CASubApplication CASubApplication Subapplication
CAAmountInTransactionCurrency CAAmountInTransactionCurrency Amount
TransactionCurrency TransactionCurrency Transaction Currency
CADocumentOriginCode CADocumentOriginCode Document Origin
CompanyCode CompanyCode Receiver Company Code
BusinessArea BusinessArea Business Area
Segment Segment Segment number
_BusinessPartner _BusinessPartner
_CADocument _CADocument
_CAProviderContract _CAProviderContract
_ContractAccountPartner _ContractAccountPartner

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 I_CADocSeparatedAmounts.
-- 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 I_CADocSeparatedAmounts AS
SELECT
  CADocumentNumber,
  CARepetitionItemNumber,
  CABPItemNumber,
  CASubItemNumber,
  BusinessPartner,
  ContractAccount,
  CAContract,
  CASubApplication,
  CAAmountInTransactionCurrency,
  TransactionCurrency,
  CADocumentOriginCode,
  CompanyCode,
  BusinessArea,
  Segment
FROM I_CADocBPItmWthoutSubstitOrigl
;