I_BusPartIndustryKeyText
Business Partner Industry Key Text
I_BusPartIndustryKeyText is a Basic CDS View that provides data about "Business Partner Industry Key Text" in SAP S/4HANA. It reads from 1 data source (tb038b) and exposes 5 fields with key fields Language, IndustrySystemType, IndustrySector. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tb038b | tb038b | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_BusPartIndustryKey | _BusPartIndustryKey | $projection.IndustrySystemType = _BusPartIndustryKey.IndustrySystemType and $projection.IndustrySector = _BusPartIndustryKey.IndustrySector |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBPINDKEYTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Business Partner Industry Key Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ObjectModel.representativeKey | IndustrySector | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | spras | ||
| KEY | IndustrySystemType | istype | ||
| KEY | IndustrySector | ind_sector | ||
| IndustryKeyDescription | text | |||
| _BusPartIndustryKey | _BusPartIndustryKey |
@AbapCatalog.sqlViewName: 'IBPINDKEYTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'Business Partner Industry Key Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Analytics.dataExtraction.enabled: true
@ObjectModel: {
representativeKey: 'IndustrySector',
dataCategory: #TEXT,
usageType.serviceQuality: #X,
usageType.sizeCategory : #S,
usageType.dataClass: #CUSTOMIZING,
modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET,
#EXTRACTION_DATA_SOURCE , #ANALYTICAL_DIMENSION ]
}
@Metadata.ignorePropagatedAnnotations: true
define view I_BusPartIndustryKeyText
as select from tb038b
association [0..1] to I_BusPartIndustryKey as _BusPartIndustryKey on $projection.IndustrySystemType = _BusPartIndustryKey.IndustrySystemType
and $projection.IndustrySector = _BusPartIndustryKey.IndustrySector
{
@Semantics.language: true
key spras as Language,
@ObjectModel.foreignKey.association: '_BusPartIndustryKey'
key istype as IndustrySystemType,
key ind_sector as IndustrySector,
@Semantics.text: true
text as IndustryKeyDescription,
// text_short as IndustryKeyShortDescription
_BusPartIndustryKey
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TB038B"
],
"ASSOCIATED":
[
"I_BUSPARTINDUSTRYKEY"
],
"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