I_CustomerSupplierIndustry

DDL: I_CUSTOMERSUPPLIERINDUSTRY SQL: IFIINDUSTRY Type: view BASIC Package: FINS_FIS_FICO_MD

Customer Supplier Industry

I_CustomerSupplierIndustry (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Public 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 3 fields with key field Industry. It has 2 associations to related views. It is exposed through 1 OData service (ASQL_F2549). Part of development package FINS_FIS_FICO_MD.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-GL-GL-N-2CL
CapabilitiesData Source for Data Extraction,Analytical Dimension,Association Target for Defining CDS Entities,Data Source in SQL Select,Data Source for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageAccounting and Financial Close for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
t016 t016 from

Associations (2)

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

Annotations (16)

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
ObjectModel.sapObjectNodeType.name CustomerSupplierIndustry view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F2549 ASQL_F2549 C2 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Industry Customer Supplier Industry
_Text _Text
_IndustryHierarchyNode _IndustryHierarchyNode

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 preserving type ) AS Industry
FROM t016
LEFT OUTER JOIN I_CustomerSupplierIndustryText AS _Text ON Industry = _Text.Industry  -- association [0..*]
LEFT OUTER JOIN I_IndustryHierarchyNode AS _IndustryHierarchyNode ON Industry = _IndustryHierarchyNode.Industry  -- association [0..*]
;