I_BusPartIndustryKey
Business Partner Industry Key
I_BusPartIndustryKey is a Basic CDS View (Dimension) that provides data about "Business Partner Industry Key" 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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tb038a | tb038a | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BusPartIndustryKeyText | _Text | $projection.IndustrySector = _Text.IndustrySector and $projection.IndustrySystemType = _Text.IndustrySystemType |
| [0..1] | I_BusPartIndustrySystem | _BusPartIndustrySystem | $projection.IndustrySystemType = _BusPartIndustrySystem.IndustrySystemType |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBPINDKEY | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Analytics.dataExtraction.delta.changeDataCapture.automatic | true | view | |
| ObjectModel.representativeKey | IndustrySector | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Business Partner Industry Key | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.sapObjectNodeType.name | BusinessPartnerIndustrySector | view | |
| ObjectModel.modelingPattern | #NONE | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | IndustrySystemType | istype | ||
| KEY | IndustrySector | ind_sector | ||
| _Text | _Text | |||
| _BusPartIndustrySystem | _BusPartIndustrySystem |
@AbapCatalog.sqlViewName: 'IBPINDKEY'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics: {
dataCategory: #DIMENSION,
dataExtraction: {
enabled: true,
delta.changeDataCapture: {
automatic: true
}
}
}
@ObjectModel.representativeKey:'IndustrySector'
@VDM.viewType: #BASIC
@EndUserText.label: 'Business Partner Industry Key'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
usageType.sizeCategory: #S,
usageType.serviceQuality: #X,
usageType.dataClass: #CUSTOMIZING,
sapObjectNodeType.name: 'BusinessPartnerIndustrySector',
modelingPattern: #NONE,
supportedCapabilities: [ #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ,
#EXTRACTION_DATA_SOURCE , #ANALYTICAL_DIMENSION ]
}
@Metadata.ignorePropagatedAnnotations: true
define view I_BusPartIndustryKey
as select from tb038a
association [0..*] to I_BusPartIndustryKeyText as _Text on $projection.IndustrySector = _Text.IndustrySector
and $projection.IndustrySystemType = _Text.IndustrySystemType
association [0..1] to I_BusPartIndustrySystem as _BusPartIndustrySystem on $projection.IndustrySystemType = _BusPartIndustrySystem.IndustrySystemType
{
@ObjectModel.foreignKey.association:'_BusPartIndustrySystem'
key istype as IndustrySystemType,
@ObjectModel.text.association: '_Text'
key ind_sector as IndustrySector,
_Text,
_BusPartIndustrySystem
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TB038A"
],
"ASSOCIATED":
[
"I_BUSPARTINDUSTRYKEYTEXT",
"I_BUSPARTINDUSTRYSYSTEM"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA