I_SURcp2BOMStatusText
Sync Unit Rcp2BOM Status Text
I_SURcp2BOMStatusText is a Basic CDS View that provides data about "Sync Unit Rcp2BOM Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields SyncUnitStatus, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_SURcp2BOMStatus | _SyncUnitStatus | $projection.SyncUnitStatus = _SyncUnitStatus.SyncUnitStatus |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISUR2BSTATUST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Sync Unit Rcp2BOM Status Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.representativeKey | SyncUnitStatus | view | |
| Search.searchable | true | view |
@AbapCatalog.sqlViewName: 'ISUR2BSTATUST'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Sync Unit Rcp2BOM Status Text'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.representativeKey: 'SyncUnitStatus'
@ObjectModel.semanticKey: [ 'SyncUnitStatus' ]
@Search.searchable: true
define view I_SURcp2BOMStatusText
as select from dd07t
association [0..1] to I_SURcp2BOMStatus as _SyncUnitStatus on $projection.SyncUnitStatus = _SyncUnitStatus.SyncUnitStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_SyncUnitStatus'
key cast( dd07t.domvalue_l as /plmb/gss_r2b_sync_status ) as SyncUnitStatus,
@Semantics.language
@ObjectModel.foreignKey.association: '_Language'
key dd07t.ddlanguage as Language,
@Semantics.text
@Search: {defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.7 }
dd07t.ddtext as SyncUnitStatusText,
/* Associations */
_SyncUnitStatus,
_Language
}
where
dd07t.domname = '/PLMB/GSS_SYNC_UNIT_STATUS'
and dd07t.as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SURCP2BOMSTATUS"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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