C_FxdAstDeprAreaByCoCodeVH

DDL: C_FXDASTDEPRAREABYCOCODEVH SQL: CFASTDEPRAREACC Type: view CONSUMPTION

Fixed Asset Depreciation Areas of Company Code VH

C_FxdAstDeprAreaByCoCodeVH is a Consumption CDS View that provides data about "Fixed Asset Depreciation Areas of Company Code VH" in SAP S/4HANA. It reads from 1 data source (I_DepreciationAreaForLedger) and exposes 6 fields with key fields CompanyCode, Ledger, AssetDepreciationArea, AssetValuationView, AccountingPrinciple. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_DepreciationAreaForLedger I_DepreciationAreaForLedger from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_AstValnViewForAcctgPrinciple _AccountingPrinciple $projection.AssetValuationView = _AccountingPrinciple.AssetValuationView

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CFASTDEPRAREACC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Fixed Asset Depreciation Areas of Company Code VH view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey AssetDepreciationArea view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Consumption.ranked true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY Ledger Ledger Ledger
KEY AssetDepreciationArea AssetDepreciationArea Deprec. Area
KEY AssetValuationView AssetValuationView
KEY AccountingPrinciple _AccountingPrinciple AccountingPrinciple AP Ledger/CoCode
_Text _Text

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_FxdAstDeprAreaByCoCodeVH.
-- 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: CFASTDEPRAREACC

CREATE VIEW C_FxdAstDeprAreaByCoCodeVH AS
SELECT
  CompanyCode,
  Ledger,
  AssetDepreciationArea,
  AssetValuationView,
  _AccountingPrinciple.AccountingPrinciple AS AccountingPrinciple
FROM I_DepreciationAreaForLedger
LEFT OUTER JOIN I_AstValnViewForAcctgPrinciple AS _AccountingPrinciple ON AssetValuationView = _AccountingPrinciple.AssetValuationView  -- association [0..*]
;