I_Relstartchar
Characteristic Basic View
I_Relstartchar is a Basic CDS View that provides data about "Characteristic Basic View" in SAP S/4HANA. It reads from 1 data source (cabn) and exposes 11 fields with key fields CharacteristicInternalID, ArchivingObject. It has 2 associations to related views. Part of development package VDM_MM_PUR_REL_STRAT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| cabn | cabn | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_Relstartcharinclass | _Relstartcharinclass | $projection.CharacteristicInternalID = _Relstartcharinclass.CharacteristicInternalID |
| [1..*] | I_Relstratchartext | _Text | $projection.CharacteristicInternalID = _Text.CharacteristicInternalID |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRELCHAR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Characteristic Basic View | view | |
| ObjectModel.transactionalProcessingEnabled | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CharacteristicInternalID | atinn | ||
| KEY | ArchivingObject | adzhl | ||
| CharacteristicDescription | atnam | |||
| DatabaseTable | attab | |||
| DatabaseTableFieldName | atfel | |||
| ValidFrom | datuv | |||
| RelStrgyCharcValAssignmentType | atein | |||
| CreatedByUser | aname | |||
| LastChangedByUser | vname | |||
| OriginalStatusText | atmst | |||
| CharacteristicValueDescription | _Text | CharacteristicValueDescription |
@AbapCatalog.sqlViewName: 'IRELCHAR'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Characteristic Basic View'
@ObjectModel.transactionalProcessingEnabled: true
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality:#A
@ObjectModel.usageType.sizeCategory:#M
@ObjectModel.usageType.dataClass:#MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_Relstartchar
as select from cabn
association [0..*] to I_Relstartcharinclass as _Relstartcharinclass on $projection.CharacteristicInternalID = _Relstartcharinclass.CharacteristicInternalID
association [1..*] to I_Relstratchartext as _Text on $projection.CharacteristicInternalID = _Text.CharacteristicInternalID
{
//key cast(atinn as atinn_no_conv) as CharacteristicInternalID,
key atinn as CharacteristicInternalID,
key adzhl as ArchivingObject,
atnam as CharacteristicDescription,
attab as DatabaseTable,
atfel as DatabaseTableFieldName,
//datuv as ValidityStartDate,
datuv as ValidFrom,
atein as RelStrgyCharcValAssignmentType,
aname as CreatedByUser,
vname as LastChangedByUser,
atmst as OriginalStatusText,
_Text.CharacteristicValueDescription as CharacteristicValueDescription
}
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