A_SitnDefTemplateActionText
Situation Action for Sitn Tmpl - Text
A_SitnDefTemplateActionText is a Composite CDS View that provides data about "Situation Action for Sitn Tmpl - Text" in SAP S/4HANA. It reads from 2 data sources (I_SitnDefTemplateActionText, I_Language) and exposes 4 fields with key fields SitnActionID, Language. It is exposed through 2 OData services (API_BUS_SITN_MSTRDATA_SRV, API_BUS_SITN_MSTRDATA_SRV_2). Part of development package ODATA_CA_SIT_DEF.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_SitnDefTemplateActionText | _ActionText | from |
| I_Language | _Language | inner |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ASITNDEFTMPLACTT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | SitnActionID | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Situation Action for Sitn Tmpl - Text | view |
OData Services (2)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| API_BUS_SITN_MSTRDATA_SRV | API_BUS_SITN_MSTRDATA_SRV | V2 | C2 | C1 |
| API_BUS_SITN_MSTRDATA_SRV_2 |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SitnActionID | I_SitnDefTemplateActionText | SitnActionID | |
| KEY | Language | I_SitnDefTemplateActionText | LanguageISOCode | |
| SitnActionName | I_SitnDefTemplateActionText | SitnActionName | ||
| SitnActionDescription | I_SitnDefTemplateActionText | SitnActionDescription |
@AbapCatalog.sqlViewName: 'ASITNDEFTMPLACTT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
// #BASIC view = I_SitnDefTemplateActionText
@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type:#PUBLIC_REMOTE_API
@ObjectModel:{
usageType:{
serviceQuality: #C,
sizeCategory: #M,
dataClass: #MIXED
},
semanticKey: [ 'SitnActionID' ],
dataCategory: #TEXT,
representativeKey: 'SitnActionID'
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Situation Action for Sitn Tmpl - Text'
define view A_SitnDefTemplateActionText
// select from I_SitnDefTemplateActionText as #BASIC view instead sit_t_action_t
as select from I_SitnDefTemplateActionText as _ActionText
inner join I_Language as _Language on _ActionText.LanguageISOCode = _Language.Language
and _Language.LanguageISOCode <> '1Q'
and _Language.LanguageISOCode <> '2Q'
{
key _ActionText.SitnActionID as SitnActionID,
@Semantics.language: true
key _ActionText.LanguageISOCode as Language,
@Semantics.text:true
_ActionText.SitnActionName as SitnActionName,
@Semantics.text:true
_ActionText.SitnActionDescription as SitnActionDescription
}
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