I_ABOPFallbackBehaviorText
Fallback behavior Text in BOP
I_ABOPFallbackBehaviorText is a Basic CDS View that provides data about "Fallback behavior Text in BOP" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields ABOPFallbackRqmtRstrcnBehvr, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | txt | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IABOPFLBKBHVTXT | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Fallback behavior Text in BOP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | ABOPFallbackRqmtRstrcnBehvr | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
@AbapCatalog.sqlViewName: 'IABOPFLBKBHVTXT'
@VDM.viewType: #BASIC
@EndUserText.label: 'Fallback behavior Text in BOP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
representativeKey: 'ABOPFallbackRqmtRstrcnBehvr',
dataCategory: #TEXT,
usageType: {
serviceQuality: #B,
sizeCategory: #L,
dataClass: #CUSTOMIZING
}
}
define view I_ABOPFallbackBehaviorText
as select from dd07t as txt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key txt.domvalue_l as ABOPFallbackRqmtRstrcnBehvr,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast(txt.ddlanguage as spras) as Language,
@Semantics.text: true
txt.ddtext as ABOPFallbackRqmtRstrcnBehvrTxt,
// Associations
_Language
}
where
txt.domname = 'ATP_BOP_FALLBACK_BEHAVIOR'
and txt.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