FISVD_ACTION_DS
Action Description
FISVD_ACTION_DS is a CDS View that provides data about "Action Description" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 2 fields with key field action.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FITAXACTIONDS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| EndUserText.label | Action Description | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | action | domvalue_l | ||
| language | ddlanguage |
@AbapCatalog.sqlViewName: 'FITAXACTIONDS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType: {
serviceQuality: #P
}
@EndUserText.label: 'Action Description'
/*This CDS view is for the Change Document:Change Type */
define view FISVD_ACTION_DS
as select from dd07t
{
@ObjectModel.text.element: ['action_txt']
key domvalue_l as action,
@Semantics.language: true
ddlanguage as language,
@Semantics.text: true
case
when domvalue_l = 'E' then 'Delete'
when domvalue_l = 'J' then 'Insert'
else
ddtext
end as Description
}
where
domname = 'CDCHNGIND'
and ddlanguage = $session.system_language
and 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