I_Scbo_Domain_Value_Text
Descriptions of fixed values of a DDIC domain
I_Scbo_Domain_Value_Text is a CDS View that provides data about "Descriptions of fixed values of a DDIC domain" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Name, Code, Language. Part of development package S_CBO_MODEL.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | Value | from |
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | P_SCBO_DOM_VAL_T | view | |
| EndUserText.label | Descriptions of fixed values of a DDIC domain | view | |
| VDM.private | true | view |
@AbapCatalog.sqlViewName: 'P_SCBO_DOM_VAL_T'
@EndUserText.label: 'Descriptions of fixed values of a DDIC domain'
@VDM.private: true
define view I_Scbo_Domain_Value_Text
as select from dd07t as Value
association to I_Language as _Language
on $projection.Language = _Language.Language
{
key Value.domname as Name,
key Value.domvalue_l as Code,
key Value.ddlanguage as Language,
Value.ddtext as Description,
_Language
} where Value.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