I_ElectronicDocProcessText
eDocument Process - Text
I_ElectronicDocProcessText is a Basic CDS View that provides data about "eDocument Process - Text" in SAP S/4HANA. It reads from 1 data source (edoprocesst) and exposes 3 fields with key fields Language, ElectronicDocProcess. Part of development package GLO-EDO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| edoprocesst | edoprocesst | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IEDOPROCESST | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | eDocument Process - Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.modelingPattern | #NONE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Search.searchable | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | spras | ||
| KEY | ElectronicDocProcess | process | ||
| ElectronicDocProcessText | procdesc |
@AbapCatalog: {
sqlViewName: 'IEDOPROCESST',
compiler.compareFilter: true
// preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'eDocument Process - Text'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
usageType:{
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #S
},
supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT,
#SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET],
modelingPattern: #NONE
}
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@Search.searchable: true
define view I_ElectronicDocProcessText
as select from edoprocesst
{
@Semantics.language: true
@UI.hidden: true
key spras as Language,
@Search: {
defaultSearchElement: true,
ranking: #HIGH,
fuzzinessThreshold: 0.8 }
key process as ElectronicDocProcess,
@Semantics.text: true
@Search: {
defaultSearchElement: true,
ranking: #LOW,
fuzzinessThreshold: 0.8 }
procdesc as ElectronicDocProcessText
} where spras = $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