I_DfsLocationCost

DDL: I_DFSLOCATIONCOST Type: view BASIC

Location and Account Assignment

I_DfsLocationCost is a Basic CDS View that provides data about "Location and Account Assignment" in SAP S/4HANA. It reads from 3 data sources (equi, equz, iloa) and exposes 5 fields with key fields Equipment, ValidityEndDate.

Data Sources (3)

SourceAliasJoin Type
equi equi from
equz equz inner
iloa iloa inner

Annotations (9)

NameValueLevelField
EndUserText.label Location and Account Assignment view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IDFSLOCCOST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Equipment equi equnr Equipment
KEY ValidityEndDate equz datbi Validity period
ControllingArea iloa kokrs Org. Value
CostCenter iloa kostl Substitute CC
MaintenancePlant iloa swerk MaintPlant

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_DfsLocationCost.
-- 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_DfsLocationCost AS
SELECT
  equi.equnr AS Equipment,
  equz.datbi AS ValidityEndDate,
  iloa.kokrs AS ControllingArea,
  iloa.kostl AS CostCenter,
  iloa.swerk AS MaintenancePlant
FROM equi
INNER JOIN equz ON /* join condition not captured in parsed metadata */
INNER JOIN iloa ON /* join condition not captured in parsed metadata */
;