A_ACMTrdgContrPlnt

DDL: A_ACMTRDGCONTRPLNT Type: view_entity CONSUMPTION

ACM Plant Details

A_ACMTrdgContrPlnt is a Consumption CDS View that provides data about "ACM Plant Details" in SAP S/4HANA. It reads from 1 data source (R_ACMTrdgContrPlntTP) and exposes 14 fields with key field Plant.

Data Sources (1)

SourceAliasJoin Type
R_ACMTrdgContrPlntTP R_ACMTrdgContrPlntTP projection

Annotations (8)

NameValueLevelField
EndUserText.label ACM Plant Details view
OData.entityType.name Plant_Type view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant Valuation Area
PlantName PlantName Plant Name
ValuationArea ValuationArea Valuation Area
PlantCustomer PlantCustomer
PlantSupplier PlantSupplier
FactoryCalendar FactoryCalendar Factory Calendar
DefaultPurchasingOrganization DefaultPurchasingOrganization
SalesOrganization SalesOrganization Sales Organization
AddressID AddressID Ship-to address
PlantCategory PlantCategory Plant cat.
DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
Division Division Internal Division ID
Language Language Report Text Language
IsMarkedForArchiving IsMarkedForArchiving Archiving Flag

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 A_ACMTrdgContrPlnt.
-- 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 A_ACMTrdgContrPlnt AS
SELECT
  Plant,
  PlantName,
  ValuationArea,
  PlantCustomer,
  PlantSupplier,
  FactoryCalendar,
  DefaultPurchasingOrganization,
  SalesOrganization,
  AddressID,
  PlantCategory,
  DistributionChannel,
  Division,
  Language,
  IsMarkedForArchiving
FROM R_ACMTrdgContrPlntTP
;