ViewProvisioningDPPTables
Get All tables for blacklisting
ViewProvisioningDPPTables is a CDS View that provides data about "Get All tables for blacklisting" in SAP S/4HANA. It reads from 2 data sources (dd02t, dd02l) and exposes 2 fields with key field tabname.
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CVIEWPROVTABBL | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Get All tables for blacklisting | view |
@AbapCatalog.sqlViewName: 'CVIEWPROVTABBL'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Get All tables for blacklisting'
define view ViewProvisioningDPPTables as select from dd02l
as _gettables inner join dd02t
as _getdesc on _gettables.tabname = _getdesc.tabname
{
key _gettables.tabname as tabname,
_getdesc.ddtext
} where _gettables.tabclass = 'TRANSP'
and _gettables.as4local = 'A'
and _getdesc.as4local = 'A'
and _getdesc.ddlanguage = 'E'
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