N_SCBO2_STANDARD_OPERATION_TXT

DDL: N_SCBO2_STANDARD_OPERATION_TXT Type: view_entity Package: S_CBO2_TRANSLATED_CONTENT

Standard Operation

N_SCBO2_STANDARD_OPERATION_TXT is a CDS View that provides data about "Standard Operation" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields StandardOperation, Language. Part of development package S_CBO2_TRANSLATED_CONTENT.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Standard Operation view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.resultSet.sizeCategory #XXS view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY StandardOperation
KEY Language ddlanguage
Description
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Standard Operation'
@Metadata: {
  allowExtensions: true,
  ignorePropagatedAnnotations: true
}
@ObjectModel: {
  resultSet: {
    sizeCategory: #XXS
  }
}
define view entity N_SCBO2_STANDARD_OPERATION_TXT
  as select from dd07t
{
      @EndUserText: {
        label: 'Standard Operation'
      }
  key max( domvalue_l ) as StandardOperation,
      @Semantics: {
        language: true
      }
  key ddlanguage        as Language,
      @EndUserText: {
        label: 'Description'
      }
      @Semantics: {
        text: true
      }
      max( ddtext )     as Description
}
where
      domname  = 'SCBO2_STANDARD_OPERATION'
  and as4local = 'A'
  and as4vers  = '0000'
group by
  valpos,
  ddlanguage