I_CndnContrProcVarTypeAssgmt

DDL: I_CNDNCONTRPROCVARTYPEASSGMT Type: view BASIC

Process Variant Contract Type Assgmt

I_CndnContrProcVarTypeAssgmt is a Basic CDS View (Dimension) that provides data about "Process Variant Contract Type Assgmt" in SAP S/4HANA. It reads from 1 data source (wcb_c_proc_var_c) and exposes 4 fields with key fields CndnContrProcVar, CndnContrType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
wcb_c_proc_var_c wcb_c_proc_var_c from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CndnContrProcVar _CndnContrProcVar $projection.CndnContrProcVar = _CndnContrProcVar.CndnContrProcVar
[0..1] I_CndnContrType _CndnContrType $projection.CndnContrType = _CndnContrType.CndnContrType

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName IWCBPROCVARCTASG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey CndnContrProcVar view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled false view
Analytics.internalName #LOCAL view
EndUserText.label Process Variant Contract Type Assgmt view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CndnContrProcVar process_variant
KEY CndnContrType contract_type
_CndnContrProcVar _CndnContrProcVar
_CndnContrType _CndnContrType
@AbapCatalog: {
  sqlViewName: 'IWCBPROCVARCTASG',
  compiler.compareFilter: true,
  buffering: {
    status: #ACTIVE,
    type: #GENERIC,
    numberOfKeyFields: 001
  },
  preserveKey: true
}
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl: {
  authorizationCheck: #NOT_REQUIRED
}
@ObjectModel: {
   representativeKey: 'CndnContrProcVar',
   modelingPattern: #ANALYTICAL_DIMENSION,
   supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE],
   usageType: {
     dataClass:      #CUSTOMIZING,
     serviceQuality: #B,
     sizeCategory:   #S
   }
}
@ClientHandling: {
     type: #INHERITED,
     algorithm: #SESSION_VARIABLE
}
@Analytics: {
    dataCategory: #DIMENSION,
    dataExtraction.enabled: false,
    internalName: #LOCAL
}
@EndUserText.label: 'Process Variant Contract Type Assgmt'
@Metadata.ignorePropagatedAnnotations: true
define view I_CndnContrProcVarTypeAssgmt
  as select from wcb_c_proc_var_c
  association [0..1] to I_CndnContrProcVar as _CndnContrProcVar on $projection.CndnContrProcVar = _CndnContrProcVar.CndnContrProcVar
  association [0..1] to I_CndnContrType    as _CndnContrType    on $projection.CndnContrType = _CndnContrType.CndnContrType
{
  key process_variant       as CndnContrProcVar,
      @ObjectModel.foreignKey.association: '_CndnContrType'
      @Consumption: {
         valueHelpDefinition: [{ entity: { name: 'I_CndnContrTypeStdVH', element: 'CndnContrType' } }]
         }
  key contract_type         as CndnContrType,
      //Associations

      _CndnContrProcVar,
      _CndnContrType
}