P_UtilitiesActionConfigText
P_UtilitiesActionConfigText is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, Configuration. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | P_UtilitiesActionConfiguration | _Configuration | $projection.Configuration = _Configuration.Configuration |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PCONFTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.compositionRoot | true | view | |
| Search.searchable | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | Configuration | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.private | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | Configuration | |||
| ConfigurationDesc | ||||
| DomainValue | dd07t | domvalue_l | ||
| _Configuration | _Configuration | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'PCONFTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.compositionRoot: true
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.representativeKey: 'Configuration'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.private: true
define view P_UtilitiesActionConfigText
as select from dd07t
association [1..1] to P_UtilitiesActionConfiguration as _Configuration on $projection.Configuration = _Configuration.Configuration
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
key cast( ddlanguage as spras preserving type) as Language,
@ObjectModel.foreignKey.association: '_Configuration'
key cast ( domvalue_l as deisu_sa_configuration_br ) as Configuration,
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Semantics.text: true
cast ( ddtext as deisu_sa_group_description_br preserving type) as ConfigurationDesc,
@Consumption.hidden: true
dd07t.domvalue_l as DomainValue,
@ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
_Configuration,
_Language
}where
domname = 'DMISU_SA_CONFIGURATION_BR' and as4local = 'A' and _Language.Language = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_LANGUAGE",
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"P_UTILITIESACTIONCONFIGURATION"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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