I_PickingControlText

DDL: I_PICKINGCONTROLTEXT SQL: ILEPICKINGCTRLT Type: view BASIC

Picking Control - Text

I_PickingControlText is a Basic CDS View that provides data about "Picking Control - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields PickingControl, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_PickingControl _PickingControl $projection.PickingControl = _PickingControl.PickingControl
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
Analytics.dataExtraction.enabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey PickingControl view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Picking Control - Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ILEPICKINGCTRLT view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PickingControl
KEY Language ddlanguage
PickingControlDesc ddtext
_PickingControl _PickingControl
_Language _Language
@Analytics.dataExtraction.enabled: true //Inserted by VDM CDS Suite Plugin

@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'PickingControl'
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
//Commented by VDM CDS Suite Plugin:@ObjectModel.representativeKey: 'PickingControl'

//Commented by VDM CDS Suite Plugin:@ObjectModel.dataCategory: #TEXT

@EndUserText.label: 'Picking Control - Text'
//Commented by VDM CDS Suite Plugin:@Analytics: { dataCategory: #TEXT, dataExtraction.enabled: true }

@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ILEPICKINGCTRLT'
@Metadata.ignorePropagatedAnnotations:true 
@ObjectModel.supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #EXTRACTION_DATA_SOURCE ]
@ObjectModel.modelingPattern: [ #LANGUAGE_DEPENDENT_TEXT ]

define view I_PickingControlText
as select from
dd07t
association [0..1] to I_PickingControl as _PickingControl on $projection.PickingControl = _PickingControl.PickingControl
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
    @ObjectModel.foreignKey.association: '_PickingControl'
    key SUBSTRING(dd07t.domvalue_l, 1, 1) as PickingControl,
    
    @Semantics.language
    @ObjectModel.foreignKey.association: '_Language'
    key ddlanguage as Language,
    
    @Semantics.text: true
    ddtext as PickingControlDesc,
    
    _PickingControl,
    _Language
    
} 

where domname = 'KOMKZ' and as4local = 'A';