I_CAWorklistActionValueHelp
Worklist Action
I_CAWorklistActionValueHelp is a Composite CDS View that provides data about "Worklist Action" in SAP S/4HANA. It reads from 1 data source (I_CAWorklistAction) and exposes 3 fields with key fields CAWorklistActionCode, CAInternalAppCode.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CAWorklistAction | I_CAWorklistAction | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICAWLACTVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | CAWorklistActionCode | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Worklist Action | view | |
| Search.searchable | true | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CAWorklistActionCode | CAWorklistActionCode | Priority | |
| KEY | CAInternalAppCode | CAInternalAppCode | ||
| CAWorklistActionText |
@AbapCatalog.sqlViewName: 'ICAWLACTVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.representativeKey: 'CAWorklistActionCode'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Worklist Action'
@Search.searchable: true
@ObjectModel: {
resultSet.sizeCategory: #XS
}
define view I_CAWorklistActionValueHelp
as select from I_CAWorklistAction
{
@ObjectModel.text.element: 'CAWorklistActionText'
@EndUserText.label: 'Priority'
@UI.hidden:true
key CAWorklistActionCode,
@UI.hidden:true
key CAInternalAppCode,
@Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8 }
@Semantics.text: true
_Text[1:Language = $session.system_language].CAWorklistActionText as CAWorklistActionText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CAWORKLISTACTION",
"I_CAWORKLISTACTIONTEXT"
],
"ASSOCIATED":
[],
"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