I_CustomCDSViewLogicalLinkOp

DDL: I_CUSTOMCDSVIEWLOGICALLINKOP SQL: APS_CCV_I_LLO Type: view BASIC

Custom CDS View Logical Link Operator

I_CustomCDSViewLogicalLinkOp is a Basic CDS View that provides data about "Custom CDS View Logical Link Operator" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 2 fields with key field LogicalLinkOperator.

Data Sources (2)

SourceAliasJoin Type
dd07l dd07l from
dd07t text left_outer

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName APS_CCV_I_LLO view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey LogicalLinkOperator view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Custom CDS View Logical Link Operator view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY LogicalLinkOperator
LogicalLinkOperatorText dd07t ddtext
@AbapCatalog.sqlViewName: 'APS_CCV_I_LLO'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel: {
  representativeKey: 'LogicalLinkOperator',
  resultSet.sizeCategory: #XS,
  usageType: {
    dataClass: #META,
    serviceQuality: #A
  }
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Custom CDS View Logical Link Operator'
@Metadata.ignorePropagatedAnnotations:true
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #VALUE_HELP
@Search.searchable: true
define view I_CustomCDSViewLogicalLinkOp
  as select from    dd07l
    left outer join dd07t as text on  text.domname    = dd07l.domname
                                  and text.as4local   = dd07l.as4local
                                  and text.as4vers    = dd07l.as4vers
                                  and text.valpos     = dd07l.valpos
                                  and text.ddlanguage = $session.system_language
{

      @ObjectModel.text.element: ['LogicalLinkOperatorText']
  key substring(dd07l.domvalue_l, 1, 3) as LogicalLinkOperator,
      @Search.defaultSearchElement: true
      text.ddtext                       as LogicalLinkOperatorText
}
where
      dd07l.domname  = 'APS_CCV_LL_OPS'
  and dd07l.as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L",
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/