I_SupplierListUpdateType

DDL: I_SUPPLIERLISTUPDATETYPE Type: view BASIC

Update Type for Supplier List

I_SupplierListUpdateType is a Basic CDS View that provides data about "Update Type for Supplier List" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field SupplierListUpdateType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SupplierListUpdateTypeText _Text

Annotations (17)

NameValueLevelField
EndUserText.label Update Type for Supplier List view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISLUPDATETYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey SupplierListUpdateType view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.resultSet.sizeCategory #XS view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Analytics.internalName #LOCAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SupplierListUpdateType
DomainValue dd07l domvalue_l
_Text _Text
@EndUserText.label: 'Update Type for Supplier List'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
  sqlViewName: 'ISLUPDATETYPE',
  compiler.compareFilter: true,
  preserveKey: true
}
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ObjectModel: {
   representativeKey: 'SupplierListUpdateType',
   usageType: {
     dataClass:      #META,
     serviceQuality: #B,
     sizeCategory:   #S
   },
   dataCategory: #VALUE_HELP,
   resultSet.sizeCategory: #XS   // UI renders code list as drop down listbox

}

@Metadata.ignorePropagatedAnnotations: true

@Search.searchable: true
@Analytics: {
    internalName: #LOCAL
}

define root view I_SupplierListUpdateType
  as select from dd07l
  composition [0..*] of I_SupplierListUpdateTypeText as _Text
{
      @ObjectModel.text.association: '_Text'
  key cast(dd07l.domvalue_l as vdm_suplrlupdatetype) as SupplierListUpdateType,
      @Analytics.hidden: true
      @Consumption.hidden: true
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      dd07l.domvalue_l                               as DomainValue,
      _Text
} 
where
      domname  = 'VDM_SUPLRLUPDATETYPE'
  and as4local = 'A'
  and as4vers  = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_SUPPLIERLISTUPDATETYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/