I_ConsignmentControl

DDL: I_CONSIGNMENTCONTROL SQL: ICONSICONTROL Type: view BASIC Package: VDM_RFM_PRODUCT

Consignment Control

I_ConsignmentControl is a Basic CDS View (Dimension) that provides data about "Consignment Control" in SAP S/4HANA. It reads from 1 data source (wrft_cons_procg) and exposes 2 fields with key field ConsignmentControl. It has 1 association to related views. Part of development package VDM_RFM_PRODUCT.

Data Sources (1)

SourceAliasJoin Type
wrft_cons_procg wrft_cons_procg from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ConsignmentControlText _Text

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName ICONSICONTROL view
EndUserText.label Consignment Control view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.sapObjectNodeType.name ConsignmentControl view
ObjectModel.supportedCapabilities #VALUE_HELP_PROVIDER view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.compositionRoot true view
ObjectModel.representativeKey ConsignmentControl view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ConsignmentControl
_Text _Text
@AbapCatalog.sqlViewName: 'ICONSICONTROL'
@EndUserText.label: 'Consignment Control'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@Analytics.internalName: #LOCAL
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@ObjectModel.sapObjectNodeType.name: 'ConsignmentControl' 
@ObjectModel: {
    supportedCapabilities: #VALUE_HELP_PROVIDER,
    dataCategory: #VALUE_HELP,
    compositionRoot: true,
    representativeKey: 'ConsignmentControl',
    usageType.serviceQuality: #A,
    usageType.sizeCategory: #S,
    usageType.dataClass: #CUSTOMIZING
}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
define root view I_ConsignmentControl
  as select from wrft_cons_procg
  composition [0..*] of I_ConsignmentControlText as _Text
{
      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key cast( wrf_cons_procg as consignmentcontrol preserving type ) as ConsignmentControl,

      _Text

}