SWF_VMD_USAGE_ABTUI
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.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@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%'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA