I_CustomerSupplierIndustry

DDL: I_CUSTOMERSUPPLIERINDUSTRY SQL: IFIINDUSTRY Type: view BASIC

Customer Supplier Industry

I_CustomerSupplierIndustry (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Customer Supplier Industry · Accounting and Financial Close

I_CustomerSupplierIndustry is a Basic CDS View (Dimension) that provides data about "Customer Supplier Industry" in SAP S/4HANA. It reads from 1 data source (t016) and exposes 2 fields with key field Industry. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-FIO-GL-IS
CapabilitiesData Source for Data Extraction, Analytical Dimension, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t016 t016 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CustomerSupplierIndustryText _Text $projection.Industry = _Text.Industry

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IFIINDUSTRY view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Customer Supplier Industry view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey Industry view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Industry Customer Supplier Industry
_Text _Text

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_CustomerSupplierIndustry.
-- 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: IFIINDUSTRY

CREATE VIEW I_CustomerSupplierIndustry AS
SELECT
  cast(brsch as fis_brsch) AS Industry
FROM t016
LEFT OUTER JOIN I_CustomerSupplierIndustryText AS _Text ON Industry = _Text.Industry  -- association [0..*]
;