STCCONT_ConfigEntityOperation

DDL: STCCONT_CEO_CDS SQL: V_STCCONT_CEO Type: view

Configuration Entity Operation

STCCONT_ConfigEntityOperation is a CDS View that provides data about "Configuration Entity Operation" in SAP S/4HANA. It reads from 2 data sources (stccont_ceo, dd07t) and exposes 3 fields with key fields Entity, Operation.

Data Sources (2)

SourceAliasJoin Type
stccont_ceo A from
dd07t B left_outer

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName V_STCCONT_CEO view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Configuration Entity Operation view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Entity stccont_ceo entity
KEY Operation stccont_ceo operation
Description dd07t ddtext
@AbapCatalog.sqlViewName: 'V_STCCONT_CEO'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Configuration Entity Operation'
define view STCCONT_ConfigEntityOperation
  //  with parameters

  //    @Consumption.hidden: true

  //    @Environment.systemField: #SYSTEM_LANGUAGE

  //    language : sylangu

  as select from    stccont_ceo as A
    left outer join dd07t       as B on  B.domname    = 'STCCONT_CEO_NAME'
                                     and B.domvalue_l = A.operation
                                     and B.ddlanguage = 'E' //:language

{
  key A.entity     as Entity,
  key A.operation  as Operation,
      B.ddtext     as Description
} 
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T",
"STCCONT_CEO"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/