FAA_SDM_DOCIT_CP03

DDL: FAA_SDM_DOCIT_CP03 SQL: FAAVDOCITCP03 Type: view

KFC DOC_IT aggregation

FAA_SDM_DOCIT_CP03 is a CDS View that provides data about "KFC DOC_IT aggregation" in SAP S/4HANA. It reads from 8 data sources and exposes 21 fields with key fields bukrs, gjahr, anlkl, SelectedCurrencyBranch, DisplayCurrency.

Data Sources (8)

SourceAliasJoin Type
faat_doc_it doc_it from
faat_doc_it doc_it union
faat_doc_it doc_it union
faat_doc_it doc_it union
faac_kfc_spec kfc_spec left_outer
faac_kfc_spec kfc_spec left_outer
faac_kfc_spec kfc_spec left_outer
faac_kfc_spec kfc_spec left_outer

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName FAAVDOCITCP03 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label KFC DOC_IT aggregation view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY bukrs faat_doc_it bukrs Value
KEY gjahr faat_doc_it gjahr Settlement Year
KEY anlkl faat_doc_it anlkl Asset Class
KEY SelectedCurrencyBranch
KEY DisplayCurrency
bukrs Value
KEY gjahr faat_doc_it gjahr Settlement Year
KEY anlkl faat_doc_it anlkl Asset Class
KEY SelectedCurrencyBranch
KEY DisplayCurrency
bukrs Value
KEY gjahr faat_doc_it gjahr Settlement Year
KEY anlkl faat_doc_it anlkl Asset Class
KEY SelectedCurrencyBranch
KEY DisplayCurrency
bukrs Value
KEY gjahr faat_doc_it gjahr Settlement Year
KEY anlkl faat_doc_it anlkl Asset Class
KEY SelectedCurrencyBranch
KEY DisplayCurrency
AmountInDisplayCurrency

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 FAA_SDM_DOCIT_CP03.
-- 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: FAAVDOCITCP03

CREATE VIEW FAA_SDM_DOCIT_CP03 AS
SELECT
  doc_it.bukrs AS bukrs,
  doc_it.gjahr AS gjahr,
  doc_it.anlkl AS anlkl,
  cast( '10' as fis_selected_currency_branch ) AS SelectedCurrencyBranch,
  cast( doc_it.rhcur as vdm_v_display_currency ) AS DisplayCurrency,
  cast( sum( doc_it.vsl ) as farp_amount_display_crcy ) AS AmountInDisplayCurrency
FROM faat_doc_it AS doc_it
LEFT OUTER JOIN faac_kfc_spec AS kfc_spec ON /* join condition not captured in parsed metadata */
-- UNION with additional select branch(es): faat_doc_it
;