FAA_UPA_MIG_MD_VAL_MIG

DDL: FAA_UPA_MIG_MD_VAL_MIG SQL: FAAVMDVALMIG Type: view_entity

Migration View for New Valuation

FAA_UPA_MIG_MD_VAL_MIG is a CDS View that provides data about "Migration View for New Valuation" in SAP S/4HANA. It reads from 2 data sources (anlb, FAA_CFG_DEPR_AREA) and exposes 6 fields with key fields comp_code, asset_no, asset_subno, ledger, depr_area.

Data Sources (2)

SourceAliasJoin Type
anlb anlb inner
FAA_CFG_DEPR_AREA cfg_da inner

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Migration View for New Valuation view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY comp_code anlb bukrs Value
KEY asset_no anlb anln1 Asset
KEY asset_subno anlb anln2 Sub-number
KEY ledger FAA_CFG_DEPR_AREA ledger Ledger
KEY depr_area anlb afabe Deprec. Area
sdm_status

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_MD_VAL_MIG.
-- 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: FAAVMDVALMIG

CREATE VIEW FAA_UPA_MIG_MD_VAL_MIG AS
SELECT
  anlb.bukrs AS comp_code,
  anlb.anln1 AS asset_no,
  anlb.anln2 AS asset_subno,
  cfg_da.ledger AS ledger,
  anlb.afabe AS depr_area,
  '' AS sdm_status
INNER JOIN anlb ON /* join condition not captured in parsed metadata */
INNER JOIN FAA_CFG_DEPR_AREA AS cfg_da ON /* join condition not captured in parsed metadata */
;