I_CommoditySubAccountText

DDL: I_COMMODITYSUBACCOUNTTEXT SQL: ICMMDTYSATXT Type: view BASIC

Commodity Subaccount Text

I_CommoditySubAccountText is a Basic CDS View that provides data about "Commodity Subaccount Text" in SAP S/4HANA. It reads from 1 data source (I_CommoditySubAccount) and exposes 2 fields with key field CommoditySubAccount.

Data Sources (1)

SourceAliasJoin Type
I_CommoditySubAccount I_CommoditySubAccount from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICMMDTYSATXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Commodity Subaccount Text view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey CommoditySubAccount view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CommoditySubAccount CommoditySubAccount Subaccount ID
CommoditySubAccountName CommoditySubAccountName Subaccount Name

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_CommoditySubAccountText.
-- 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: ICMMDTYSATXT

CREATE VIEW I_CommoditySubAccountText AS
SELECT
  CommoditySubAccount,
  CommoditySubAccountName
FROM I_CommoditySubAccount
;