I_ABCIndicator
ABC Indicator
I_ABCIndicator is a Basic CDS View (Dimension) that provides data about "ABC Indicator" in SAP S/4HANA. It reads from 1 data source (t370c) and exposes 3 fields with key field ABCIndicator. It has 1 association to related views. Part of development package IEQM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t370c | t370c | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ABCIndicatorText | _Text | $projection.ABCIndicator = _Text.ABCIndicator |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IABCINDICATOR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | ABC Indicator | view | |
| ObjectModel.representativeKey | ABCIndicator | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| ObjectModel.objectIdentifier.oidElement | ABCIndicatorCodeOID | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ABCIndicator | t370c | abckz | |
| ABCIndicatorCodeOID | ||||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IABCINDICATOR'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'ABC Indicator'
@ObjectModel.representativeKey: 'ABCIndicator'
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.semanticKey: [ 'ABCIndicator' ]
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations
@Search.searchable: true
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]
@ObjectModel.alternativeKey:[{id:'OID',element:['ABCIndicatorCodeOID']}]
//@ObjectModel.sapObjectNodeType.name:'ABCIndicatorCode'
@ObjectModel.objectIdentifier.oidElement:'ABCIndicatorCodeOID'
define view I_ABCIndicator
as select from t370c
association [0..*] to I_ABCIndicatorText as _Text on $projection.ABCIndicator = _Text.ABCIndicator
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@ObjectModel.text.association: '_Text'
key t370c.abckz as ABCIndicator,
@ObjectModel.filter.enabled:false
@ObjectModel.sort.enabled:false
cast( t370c.abckz as abcindicator_oid ) as ABCIndicatorCodeOID, //use your own OID field name
_Text
}
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