A_CnsldtnPlantT

DDL: A_CNSLDTNPLANTT SQL: ACSPLANTTEXT Type: view COMPOSITE

Combined Plant Text

A_CnsldtnPlantT is a Composite CDS View that provides data about "Combined Plant Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnPlantT) and exposes 4 fields with key fields Language, Plant. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnPlantT _Source from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_CnsldtnPlant _CnsldtnPlant $projection.Plant = _CnsldtnPlant.Plant

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ACSPLANTTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Combined Plant Text view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
OData.entitySet.name PlantText view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey Plant view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language I_CnsldtnPlantT Language Report Text Language
KEY Plant I_CnsldtnPlantT Plant Valuation Area
CnsldtnPlantText
_CnsldtnPlant _CnsldtnPlant

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_CnsldtnPlantT.
-- 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: ACSPLANTTEXT

CREATE VIEW A_CnsldtnPlantT AS
SELECT
  _Source.Language AS Language,
  _Source.Plant AS Plant,
  cast(_Source.AdditionalMasterDataText as fincs_werks_t preserving type) AS CnsldtnPlantText
FROM I_CnsldtnPlantT AS _Source
LEFT OUTER JOIN A_CnsldtnPlant AS _CnsldtnPlant ON Plant = _CnsldtnPlant.Plant  -- association [0..1]
;