ViewReplGetDppFields
Get All Blacklisted Fields
ViewReplGetDppFields is a CDS View that provides data about "Get All Blacklisted Fields" in SAP S/4HANA. It reads from 2 data sources (fndei_d_v_b_tbfd, dd03m) and exposes 6 fields with key fields Tablename, ReplicationId, Feldname.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| fndei_d_v_b_tbfd | _dppfield | inner |
| dd03m | _getfields | left_outer |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CVIEWDPPFIELDS | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Get All Blacklisted Fields | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Tablename | _dpptab | tabname | |
| KEY | ReplicationId | _dpptab | replicationid | |
| KEY | Feldname | fndei_d_v_b_tbfd | fieldname | |
| Status | fndei_d_v_b_tbfd | status | ||
| Description | dd03m | ddtext | ||
| KeyField | dd03m | keyflag |
@AbapCatalog.sqlViewName: 'CVIEWDPPFIELDS'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Get All Blacklisted Fields'
define view ViewReplGetDppFields as select distinct from fndei_d_v_b_tabl as _dpptab
inner join fndei_d_v_b_tbfd as _dppfield
on _dpptab.tabname = _dppfield.tabname
and _dpptab.replicationid = _dppfield.replicationid
left outer join dd03m as _getfields
on _getfields.fieldname = _dppfield.fieldname
and _getfields.tabname = _dppfield.tabname
{
key _dpptab.tabname as Tablename,
key _dpptab.replicationid as ReplicationId,
key _dppfield.fieldname as Feldname,
_dppfield.status as Status,
_getfields.ddtext as Description,
_getfields.keyflag as KeyField
} where _getfields.fldstat = 'A' and _getfields.ddlanguage = 'E'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FNDEI_D_V_B_TABL",
"FNDEI_D_V_B_TBFD",
"DD03M"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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