I_MatlProcurementExternalType

DDL: I_MATLPROCUREMENTEXTERNALTYPE SQL: IMATLPROCMEXTTYP Type: view BASIC

Material Procurement External Type

I_MatlProcurementExternalType is a Basic CDS View (Dimension) that provides data about "Material Procurement External Type" in SAP S/4HANA. It reads from 1 data source (t460b) and exposes 6 fields with key fields MaterialProcurementExtType, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t460b typ from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_MatlProcurementType _MaterialProcurementType $projection.MaterialProcurementType = _MaterialProcurementType.MaterialProcurementType

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName IMATLPROCMEXTTYP view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey MaterialProcurementExtType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_MatlProcmtExternalTypeText view
VDM.viewType #BASIC view
EndUserText.label Material Procurement External Type view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY MaterialProcurementExtType
KEY Language
MaterialProcurementType
MaterialProcurementExtTypeName t460b sotxt
_Language _Language
_MaterialProcurementType _MaterialProcurementType
@AbapCatalog.sqlViewName: 'IMATLPROCMEXTTYP'
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.ranked: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'MaterialProcurementExtType'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.lifecycle.status: #DEPRECATED  // TEXT data category missing

@VDM.lifecycle.successor: 'I_MatlProcmtExternalTypeText'
@VDM.viewType: #BASIC
@EndUserText.label: 'Material Procurement External Type'

/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ]  } */
define view I_MatlProcurementExternalType
  as select from t460b as typ
  association [0..1] to I_Language            as _Language                on $projection.Language = _Language.Language
  association [1..1] to I_MatlProcurementType as _MaterialProcurementType on $projection.MaterialProcurementType = _MaterialProcurementType.MaterialProcurementType
{
      // Key

      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
      @ObjectModel.text.element: ['MaterialProcurementExtTypeName']
  key cast(typ.esobs as pph_esobs preserving type) as MaterialProcurementExtType,
      @Semantics.language: true
  key cast(typ.spras as spras     preserving type) as Language,
      @ObjectModel.foreignKey.association: '_MaterialProcurementType'
      cast(typ.sobes as pph_sobes preserving type) as MaterialProcurementType,
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      typ.sotxt                                    as MaterialProcurementExtTypeName,

      // Associations

      _Language,
      _MaterialProcurementType
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T460B"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_MATLPROCUREMENTTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/