I_SalesDocumentItemProcgCode

DDL: I_SALESDOCUMENTITEMPROCGCODE Type: view BASIC Package: VDM_SD_SLS_OA_SCH

Sales Document Item Processing Code

I_SalesDocumentItemProcgCode is a Basic CDS View (Dimension) that provides data about "Sales Document Item Processing Code" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field SalesDocumentItemProcgCode. It has 1 association to related views. Part of development package VDM_SD_SLS_OA_SCH.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SalesDocumentItemProcgCodeT _Text $projection.SalesDocumentItemProcgCode = _Text.SalesDocumentItemProcgCode

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Sales Document Item Processing Code view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName ISDITMPROCGCODE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey SalesDocumentItemProcgCode view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SalesDocumentItemProcgCode
_Text _Text
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Sales Document Item Processing Code'
@VDM.viewType: #BASIC
@AbapCatalog:{
  sqlViewName: 'ISDITMPROCGCODE',
  compiler.compareFilter: true,
  preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel:{
representativeKey: 'SalesDocumentItemProcgCode',
  usageType:{
    dataClass: #META,
    serviceQuality: #A,
    sizeCategory: #S
    }
}
@Analytics:{
  dataCategory: #DIMENSION,
  internalName: #LOCAL
}

define view I_SalesDocumentItemProcgCode
  as select from dd07l
  association [0..*] to I_SalesDocumentItemProcgCodeT as _Text on $projection.SalesDocumentItemProcgCode = _Text.SalesDocumentItemProcgCode
{
      @ObjectModel.text.association: '_Text'
  key SUBSTRING(dd07l.domvalue_l, 1, 1) as SalesDocumentItemProcgCode,

      _Text
}
where
  (
    dd07l.domname  = 'DOM_ITEM_PROCESS_CODE'
  )
  and(
    dd07l.as4local = 'A'
  )