R_VarConfignInconstcyCharcTP

DDL: R_VARCONFIGNINCONSTCYCHARCTP Type: view_entity TRANSACTIONAL

Var Confign Inconsistency Charc - TP

R_VarConfignInconstcyCharcTP is a Transactional CDS View that provides data about "Var Confign Inconsistency Charc - TP" in SAP S/4HANA. It reads from 1 data source (vch_rap_dummy) and exposes 8 fields with key fields VarConfigurationRootInstance, VarConfigurationBusObjectKey, VarConfigurationBusObjectType, VarConfignInconsistencyID, VarConfignInstceInternalID.

Data Sources (1)

SourceAliasJoin Type
vch_rap_dummy vch_rap_dummy from

Annotations (7)

NameValueLevelField
EndUserText.label Var Confign Inconsistency Charc - TP view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY VarConfigurationRootInstance
KEY VarConfigurationBusObjectKey
KEY VarConfigurationBusObjectType
KEY VarConfignInconsistencyID
KEY VarConfignInstceInternalID
KEY Characteristic
_Inconsistency _Inconsistency
_Root _Root
@EndUserText.label: 'Var Confign Inconsistency Charc - TP'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #TRANSACTIONAL
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
//@ObjectModel.query.implementedBy: 'ABAP:CL_VCR_RAP_STICKY_QRY'


define view entity R_VarConfignInconstcyCharcTP
  as select from vch_rap_dummy
  
  association to R_VariantConfigurationTP            as _Root     on  _Root.VarConfigurationRootInstance  = $projection.VarConfigurationRootInstance
                                                                  and _Root.VarConfigurationBusObjectType = $projection.VarConfigurationBusObjectType
                                                                  and _Root.VarConfigurationBusObjectKey  = $projection.VarConfigurationBusObjectKey
  
  association to parent R_VarConfignInconsistencyTP       as _Inconsistency on  $projection.VarConfigurationRootInstance  = _Inconsistency.VarConfigurationRootInstance
                                                                                and $projection.VarConfigurationBusObjectType = _Inconsistency.VarConfigurationBusObjectType
                                                                                and $projection.VarConfigurationBusObjectKey  = _Inconsistency.VarConfigurationBusObjectKey
                                                                                and $projection.VarConfignInconsistencyID = _Inconsistency.VarConfignInconsistencyID
{
        key cast ('' as ib_root)      as VarConfigurationRootInstance,
        key cast ('' as ibobjkey )    as VarConfigurationBusObjectKey,
        key cast ('' as ibobjtyp )    as VarConfigurationBusObjectType,
        key cast (0 as vcr_inconsistency_id )   as VarConfignInconsistencyID,
        key cast (0 as vch_hl_cfg_instance_id)  as VarConfignInstceInternalID,
        key cast ('' as atnam)        as Characteristic,

      /* Associations */
      _Inconsistency,
      _Root
}