I_Textvalues
Basic view to get the Text description
I_Textvalues is a CDS View that provides data about "Basic view to get the Text description" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key field Domname.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | TEXTVALUES | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientDependent | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Basic view to get the Text description | view |
@AbapCatalog.sqlViewName: 'TEXTVALUES'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientDependent: true
@ObjectModel.dataCategory: #TEXT
//@ObjectModel.representativeKey: 'SalesOrderPaymentMethod'
@ObjectModel.usageType.serviceQuality:#C
@ObjectModel.usageType.sizeCategory:#S
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Basic view to get the Text description'
define view I_Textvalues as select from dd07t {
key dd07t.domname as Domname,
dd07t.domvalue_l as Domvalue,
dd07t.ddtext as Text,
@Semantics.language: true
cast(ddlanguage as sylangu) as language
}
where dd07t.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"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