I_Industries

DDL: I_INDUSTRIES SQL: I_INDUSTRY Type: view BASIC Package: VDM_MD_BP_BASE

I_Industries

I_Industries is a Basic CDS View that provides data about "I_Industries" in SAP S/4HANA. It reads from 1 data source (tb038a) and exposes 4 fields with key fields IndustrySystemType, IndustrySector. It has 2 associations to related views. Part of development package VDM_MD_BP_BASE.

Data Sources (1)

SourceAliasJoin Type
tb038a tb038a from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_Industrykeytexts _IndustryKeyText tb038a.istype = _IndustryKeyText.IndustrySystemType
[0..*] I_Industrykeysystemtexts _IndustryKeySystemText tb038a.istype = _IndustryKeySystemText.IndustrySystemType and tb038a.ind_sector = _IndustryKeySystemText.IndustrySector

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName I_INDUSTRY view
EndUserText.label I_Industries view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey IndustrySystemType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY IndustrySystemType tb038a istype Industry System
KEY IndustrySector tb038a ind_sector Industry sector
_IndustryKeySystemText _IndustryKeySystemText
_IndustryKeyText _IndustryKeyText

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_Industries.
-- 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: I_INDUSTRY

CREATE VIEW I_Industries AS
SELECT
  tb038a.istype AS IndustrySystemType,
  tb038a.ind_sector AS IndustrySector
FROM tb038a
LEFT OUTER JOIN I_Industrykeytexts AS _IndustryKeyText ON tb038a.istype = _IndustryKeyText.IndustrySystemType  -- association [0..*]
LEFT OUTER JOIN I_Industrykeysystemtexts AS _IndustryKeySystemText ON tb038a.istype = _IndustryKeySystemText.IndustrySystemType AND tb038a.ind_sector = _IndustryKeySystemText.IndustrySector  -- association [0..*]
;