I_ABOPStrategy
Confirmation strategy in BOP
I_ABOPStrategy is a Basic CDS View that provides data about "Confirmation strategy in BOP" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ABOPConfirmationStrategy. It has 1 association to related views. Part of development package ATP_BOP_SETUP_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | typ | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ABOPStrategyText | _ABOPStrategyText | $projection.ABOPConfirmationStrategy = _ABOPStrategyText.ABOPConfirmationStrategy |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Confirmation strategy in BOP | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | ABOPConfirmationStrategy | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| Analytics.technicalName | IABOPSTRATEGY | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ABOPConfirmationStrategy | dd07l | domvalue_l | |
| _ABOPStrategyText | _ABOPStrategyText |
@EndUserText.label: 'Confirmation strategy in BOP'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED //#CHECK
@ObjectModel: {
representativeKey: 'ABOPConfirmationStrategy',
usageType: {
serviceQuality: #B,
sizeCategory: #L,
dataClass: #META
}
}
@Analytics.technicalName: 'IABOPSTRATEGY'
define view entity I_ABOPStrategy
as select from dd07l as typ
association [0..*] to I_ABOPStrategyText as _ABOPStrategyText on $projection.ABOPConfirmationStrategy = _ABOPStrategyText.ABOPConfirmationStrategy
{
@ObjectModel.text.association: '_ABOPStrategyText'
key typ.domvalue_l as ABOPConfirmationStrategy,
// Associations
_ABOPStrategyText
}
where
typ.domname = 'ATP_BOP_CONFIRMATION_STRATEGY'
and typ.domvalue_l <> 'NC'
and typ.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