V_Coll_wl_Status_Text
Texts for Worklist Item Status
V_Coll_wl_Status_Text is a CDS View that provides data about "Texts for Worklist Item Status" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields Language, Status.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | VCOLLSTATUSTEXT | view | |
| EndUserText.label | Texts for Worklist Item Status | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | Status | |||
| Name | ddtext |
@AbapCatalog.sqlViewName: 'VCOLLSTATUSTEXT'
@EndUserText.label: 'Texts for Worklist Item Status'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.dataCategory: #TEXT
//@ObjectModel.representativeKey: 'StatusText'
@AbapCatalog.buffering.status: #NOT_ALLOWED
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
define view V_Coll_wl_Status_Text as select from dd07t{
@Semantics.language: true
key cast( ddlanguage as spras ) as Language,
key cast( substring( domvalue_l, 1, 1) as udm_worklist_item_status ) as Status,
@Semantics.text: true
ddtext as Name
}
where
dd07t.domname = 'UDM_WORKLIST_ITEM_STATUS'
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