FAA_UPA_MIG_DA_CONS_AREA

DDL: FAA_UPA_MIG_DA_CONS_AREA Type: view_entity

Constitutional area

FAA_UPA_MIG_DA_CONS_AREA is a CDS View that provides data about "Constitutional area" in SAP S/4HANA. It reads from 2 data sources (I_CalculatedAssetValuationView, I_DepreciationAreaForLedger) and exposes 4 fields with key fields CompanyCode, Ledger, AssetDepreciationArea.

Data Sources (2)

SourceAliasJoin Type
I_CalculatedAssetValuationView CalculatedAssetValuationView inner
I_DepreciationAreaForLedger SourceDeprAreaForLedger from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Constitutional area view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_DepreciationAreaForLedger CompanyCode Receiver Company Code
KEY Ledger I_DepreciationAreaForLedger Ledger Ledger
KEY AssetDepreciationArea I_DepreciationAreaForLedger AssetDepreciationArea Deprec. Area
AssetValuationView I_DepreciationAreaForLedger AssetValuationView

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_UPA_MIG_DA_CONS_AREA.
-- 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 FAA_UPA_MIG_DA_CONS_AREA AS
SELECT
  SourceDeprAreaForLedger.CompanyCode AS CompanyCode,
  SourceDeprAreaForLedger.Ledger AS Ledger,
  SourceDeprAreaForLedger.AssetDepreciationArea AS AssetDepreciationArea,
  SourceDeprAreaForLedger.AssetValuationView AS AssetValuationView
FROM I_DepreciationAreaForLedger AS SourceDeprAreaForLedger
INNER JOIN I_CalculatedAssetValuationView AS CalculatedAssetValuationView ON /* join condition not captured in parsed metadata */
;