SWF_VMD_USAGE_ABTUI

DDL: SWF_VMD_USAGE_ABTUI Type: view_entity Package: SWF_VMD

Where Used ABTUI

SWF_VMD_USAGE_ABTUI is a CDS View that provides data about "Where Used ABTUI" in SAP S/4HANA. It reads from 4 data sources (tdevc, df14l, tadir, swfvtv) and exposes 7 fields with key fields pgmid, object, obj_name. Part of development package SWF_VMD.

Data Sources (4)

SourceAliasJoin Type
tdevc d inner
df14l f inner
tadir t from
swfvtv v inner

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Where Used ABTUI view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY pgmid tadir pgmid
KEY object tadir object
KEY obj_name tadir obj_name
Task swfvtv task
devclass tadir devclass
dlvunit tdevc dlvunit
author tadir author
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Where Used ABTUI'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
define view entity SWF_VMD_USAGE_ABTUI
  as select from tadir  as t
    inner join   swfvtv as v on v.task = concat(
      'TS', t.obj_name
    )
    inner join   tdevc  as d on d.devclass = t.devclass
    inner join   df14l  as f on f.fctr_id = d.component
{
  key t.pgmid    as pgmid,
  key t.object   as object,
  key t.obj_name as obj_name,
      v.task     as Task,
      t.devclass as devclass,
      d.dlvunit  as dlvunit,
      t.author   as author,
      f.ps_posid as akh_component
}
where
      t.pgmid  =    'R3TR'
  and t.object =    'PDTS'
  and v.vtyp   =    'INBOX_GEN'
  and v.vpar   =    'COMPONENT_NAME'
  and v.vval   =    'cross.fnd.fiori.inbox.annotationBasedTaskUI'
  and v.task   like 'TS%'