I_ProductTypeNumberRanges

DDL: I_PRODUCTTYPENUMBERRANGES Type: view BASIC

Number ranges for product type

I_ProductTypeNumberRanges is a Basic CDS View that provides data about "Number ranges for product type" in SAP S/4HANA. It reads from 1 data source (t134) and exposes 3 fields with key field ProductType.

Data Sources (1)

SourceAliasJoin Type
t134 t134 from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPRODTYPENUMRG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Number ranges for product type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProductType
InternalProductNumberRange numki
ExternalProductNumberRange numke
@AbapCatalog:
  { sqlViewName:  'IPRODTYPENUMRG',
    compiler.compareFilter: true,
    preserveKey: true
  }

@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED


@ObjectModel:
  { usageType: { serviceQuality: #A,
                 sizeCategory : #S,
                 dataClass: #MASTER
               },
    semanticKey:['ProductType']
  }

@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Number ranges for product type'

@Search. searchable: true
define view I_ProductTypeNumberRanges
  as select from t134
{

      @Search:
          { defaultSearchElement: true,
             fuzzinessThreshold: 1,
             ranking: #HIGH 
          }
  key cast(t134.mtart as producttype preserving type ) as ProductType,
      numki                                            as InternalProductNumberRange,
      numke                                            as ExternalProductNumberRange
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T134"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/