I_JITOutbAssemblyLineCat

DDL: I_JITOUTBASSEMBLYLINECAT SQL: IJITASMLINCAT Type: view BASIC

Assembly Sequence Line Category

I_JITOutbAssemblyLineCat is a Basic CDS View that provides data about "Assembly Sequence Line Category" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field JustInTimeAssemblyLineCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_JITOutbAssyLineCatTxt _Text $projection.JustInTimeAssemblyLineCategory = _Text.JustInTimeAssemblyLineCategory

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IJITASMLINCAT view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey JustInTimeAssemblyLineCategory view
EndUserText.label Assembly Sequence Line Category view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY JustInTimeAssemblyLineCategory
_Text _Text
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.resultSet.sizeCategory: #XS
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IJITASMLINCAT'
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.compiler.compareFilter: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities:  [  #SQL_DATA_SOURCE,
                                        #CDS_MODELING_DATA_SOURCE,
                                        #CDS_MODELING_ASSOCIATION_TARGET ]

@ObjectModel.representativeKey: 'JustInTimeAssemblyLineCategory'
@EndUserText.label: 'Assembly Sequence Line Category'
define view I_JITOutbAssemblyLineCat
  as select from dd07l
  association [0..*] to I_JITOutbAssyLineCatTxt as _Text on $projection.JustInTimeAssemblyLineCategory = _Text.JustInTimeAssemblyLineCategory
{
      @ObjectModel.text.association: '_Text'
  key cast (SUBSTRING(dd07l.domvalue_l, 1, 1) as njit_s2p_asm_seq_line_cat preserving type ) as JustInTimeAssemblyLineCategory,

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