I_CADisputeCaseOriginText
Beschreibung zum Klärungsfallsherkunft
I_CADisputeCaseOriginText is a Basic CDS View that provides data about "Beschreibung zum Klärungsfallsherkunft" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields CADisputeCaseOrigin, Language. It has 2 associations to related views. Part of development package UDM_FICA_CASE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_CADisputeCaseOrigin | _CADisputeCase | $projection.CADisputeCaseOrigin = _CADisputeCase.CADisputeCaseOrigin |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Beschreibung zum Klärungsfallsherkunft | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CADisputeCaseOrigin | |||
| KEY | Language | |||
| CADisputeCaseOriginText | ||||
| _CADisputeCase | _CADisputeCase | |||
| _Language | _Language |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Beschreibung zum Klärungsfallsherkunft'
@ObjectModel: { dataCategory: #TEXT,
usageType: { dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S } }
@VDM.viewType: #BASIC
define view entity I_CADisputeCaseOriginText
as select from dd07t
association [1..1] to I_CADisputeCaseOrigin as _CADisputeCase on $projection.CADisputeCaseOrigin = _CADisputeCase.CADisputeCaseOrigin
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_CADisputeCase'
key cast( substring( domvalue_l, 1, 2 ) as fica_dispute_origin) as CADisputeCaseOrigin,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cast( ddlanguage as spras preserving type ) as Language,
@Semantics.text: true
cast( ddtext as fica_dispute_origin_text ) as CADisputeCaseOriginText,
_CADisputeCase,
_Language
}
where
dd07t.domname = 'FICA_DISPUTE_ORIGIN'
and dd07t.as4local = 'A'
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