I_SpecialProcurementType

DDL: I_SPECIALPROCUREMENTTYPE SQL: ISPCLPROCMTTYPE Type: view BASIC

Special Procurement Type for BOM Item

I_SpecialProcurementType is a Basic CDS View that provides data about "Special Procurement Type for BOM Item" in SAP S/4HANA. It reads from 2 data sources (t460a, t460t) and exposes 3 fields with key fields SpecialProcurementType, Plant.

Data Sources (2)

SourceAliasJoin Type
t460a t460a from
t460t t460t inner

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISPCLPROCMTTYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Special Procurement Type for BOM Item view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
ObjectModel.representativeKey SpecialProcurementType view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SpecialProcurementType t460a sobsl
KEY Plant t460a werks
SpecialProcurementTypeText t460t ltext
@AbapCatalog.sqlViewName: 'ISPCLPROCMTTYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Special Procurement Type for BOM Item'
@ClientHandling.type : #INHERITED
@ClientHandling.algorithm : #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@ObjectModel.representativeKey: 'SpecialProcurementType'
define view I_SpecialProcurementType
  as select from t460a inner join
  t460t on t460a.sobsl = t460t.sobsl and 
  t460a.werks = t460t.werks and
  t460t.spras = $session.system_language
{
      @Search.defaultSearchElement: true
      key t460a.sobsl  as SpecialProcurementType,
      @Search.defaultSearchElement: true
      key t460a.werks as Plant,
      @Semantics.text: true
      @Search.defaultSearchElement: true
      t460t.ltext as SpecialProcurementTypeText
  
}
where t460a.clcor = 'X' 
   or t460a.dirpr = 'X'
   or t460a.dumps = 'X'
   or t460a.mlscr = 'X'
   or ( t460a.rewfg = 'X'
   and t460a.rewrk != ' ' )
      
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T460A",
"T460T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/