A_SitnDefTemplateActionText

DDL: A_SITNDEFTEMPLATEACTIONTEXT SQL: ASITNDEFTMPLACTT Type: view COMPOSITE Package: ODATA_CA_SIT_DEF

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)

SourceAliasJoin Type
I_SitnDefTemplateActionText _ActionText from
I_Language _Language inner

Annotations (14)

NameValueLevelField
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)

ServiceBindingVersionContractRelease
API_BUS_SITN_MSTRDATA_SRV API_BUS_SITN_MSTRDATA_SRV V2 C2 C1
API_BUS_SITN_MSTRDATA_SRV_2

Fields (4)

KeyFieldSource TableSource FieldDescription
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

}