EITV_EXP_ACTION_STATUS_TEXT
Action status text
EITV_EXP_ACTION_STATUS_TEXT is a CDS View that provides data about "Action status text" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 3 fields with key fields language, code.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07v | dd07v | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | EIT_V_T_AS | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Action status text | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | language | ddlanguage | ||
| KEY | code | domvalue_l | ||
| description | ddtext |
@AbapCatalog.sqlViewName: 'EIT_V_T_AS'
@ClientHandling:{ type: #INHERITED, algorithm: #SESSION_VARIABLE }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Action status text'
define view EITV_EXP_ACTION_STATUS_TEXT
as
select from dd07v
{
key ddlanguage as language,
key domvalue_l as code,
ddtext as description
}
where
domname = 'EIT_EXP_ACTION_STATUS' and
ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07V"
],
"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