I_CustomCDSViewCompOpText
Custom CDS View Comparison Operator Text
I_CustomCDSViewCompOpText is a CDS View that provides data about "Custom CDS View Comparison Operator Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields ComparisonOperator, Language. It has 2 associations to related views. Part of development package SAPS_CCV_DB.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_CustomCDSViewCompOperator | _DD07L | $projection.ComparisonOperator = _DD07L.ComparisonOperator |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | APS_CCV_I_CO_T | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Custom CDS View Comparison Operator Text | view | |
| Search.searchable | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ComparisonOperator | |||
| KEY | Language | ddlanguage | ||
| ComparisonOperatorText | ddtext | |||
| _DD07L | _DD07L | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'APS_CCV_I_CO_T'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.dataCategory: #TEXT
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Custom CDS View Comparison Operator Text'
@Search.searchable: true
define view I_CustomCDSViewCompOpText
as select from dd07t
association [0..1] to I_CustomCDSViewCompOperator as _DD07L on $projection.ComparisonOperator = _DD07L.ComparisonOperator
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_DD07L'
key substring(domvalue_l,1,2) as ComparisonOperator,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key ddlanguage as Language,
@Semantics.text: true
@Search.defaultSearchElement: true
ddtext as ComparisonOperatorText,
//Associations
_DD07L,
_Language
}
where
dd07t.domname = 'APS_CCV_COMP_OPERATOR'
and dd07t.as4local = 'A'
and dd07t.ddlanguage = $session.system_language;
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