DBC2ABAP_SQL1_RT_HEAD

DDL: DBC2ABAP_SQL1_RT_HEAD Type: view_entity Package: SABP_DBC2ABAP_RUNTIME

Schemas for SQL service runtime

DBC2ABAP_SQL1_RT_HEAD is a CDS View that provides data about "Schemas for SQL service runtime" in SAP S/4HANA. It reads from 1 data source (sql1_head) and exposes 9 fields with key field Sql1Name. Part of development package SABP_DBC2ABAP_RUNTIME.

Data Sources (1)

SourceAliasJoin Type
sql1_head sql1_head from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Schemas for SQL service runtime view
AbapCatalog.entityBuffer.definitionAllowed true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Sql1Name sql1_name
Sql1NameRaw sql1_name_raw
ServiceName service_def_name
DisabledForSelect disabled_for_select
EnabledForInsert enabled_for_insert
EnabledForUpdate enabled_for_update
EnabledForDelete enabled_for_delete
EnabledForReplicate enabled_for_replicate
EnabledForExecute enabled_for_execute
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Schemas for SQL service runtime'
@AbapCatalog.entityBuffer.definitionAllowed: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
define view entity DBC2ABAP_SQL1_RT_HEAD
  as select from sql1_head
{
  key sql1_name             as Sql1Name,
      sql1_name_raw         as Sql1NameRaw,
      service_def_name      as ServiceName,
      disabled_for_select   as DisabledForSelect,
      enabled_for_insert    as EnabledForInsert,
      enabled_for_update    as EnabledForUpdate,
      enabled_for_delete    as EnabledForDelete,
      enabled_for_replicate as EnabledForReplicate,      
      enabled_for_execute   as EnabledForExecute
}
where
  state = 'A'