I_InhRepairFioriIDText
Fiori ID of In-House Repair Application - Text
I_InhRepairFioriIDText is a Basic CDS View that provides data about "Fiori ID of In-House Repair Application - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields InhRepairFioriID, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Fiori ID of In-House Repair Application - Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | InhRepairFioriID | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | IIHRFIORIIDT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view |
@EndUserText.label: 'Fiori ID of In-House Repair Application - Text'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl: {
authorizationCheck: #NOT_REQUIRED
}
@ObjectModel.supportedCapabilities: [
#CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#SQL_DATA_SOURCE,
#LANGUAGE_DEPENDENT_TEXT
]
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'InhRepairFioriID',
usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #META}
}
@Metadata: {
ignorePropagatedAnnotations: true
}
@ClientHandling: {
algorithm: #SESSION_VARIABLE
}
@AbapCatalog: {
sqlViewName: 'IIHRFIORIIDT',
compiler.compareFilter: true,
preserveKey: true
}
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
define view I_InhRepairFioriIDText as select from dd07t
association[0..1] to I_InhRepairFioriID as _InhRepairFioriID on $projection.InhRepairFioriID = _InhRepairFioriID.InhRepairFioriID
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_InhRepairFioriID'
key cast(dd07t.domvalue_l as crms4_repa_fiori_id preserving type) as InhRepairFioriID,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key dd07t.ddlanguage as Language,
@Semantics.text: true
dd07t.ddtext as InhRepairFioriIDText,
_InhRepairFioriID,
_Language
}
where dd07t.domname = 'CRMS4_REPA_FIORI_ID'
and dd07t.as4local = 'A'
and dd07t.as4vers = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_INHREPAIRFIORIID",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"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