ViewReplGetDppFields

DDL: CVIEW_PROVISIONING_DPP_FIELDS SQL: CVIEWDPPFIELDS Type: view Package: ODATA_VIEW_PROVISIONING

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. Part of development package ODATA_VIEW_PROVISIONING.

Data Sources (2)

SourceAliasJoin Type
fndei_d_v_b_tbfd _dppfield inner
dd03m _getfields left_outer

Annotations (6)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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'