Deprecated PUBLIC_LOCAL_API
This CDS view is deprecated in S/4HANA. Use I_MatlProcmtExternalTypeText instead. View all deprecated CDS views →

I_MatlProcurementExternalType

DDL: I_MATLPROCUREMENTEXTERNALTYPE SQL: IMATLPROCMEXTTYP Type: view BASIC

Material Procurement External Type

I_MatlProcurementExternalType (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Manufacturing

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.

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentPP-VDM
CapabilitiesAssociation Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities, Data Source for Search
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which material procurement external types are maintained?</p></li> <li><p>Which is the external type of a material procurement type?</p></li> <li><p>What are the names of material procurement external types in different languages?</p></li> </ul>

Documentation

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 Material Procurement Type - External Code
KEY Language Language Key
MaterialProcurementType Material Procurement Type
MaterialProcurementExtTypeName t460b sotxt Description of special stock
_Language _Language
_MaterialProcurementType _MaterialProcurementType

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_MatlProcurementExternalType.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IMATLPROCMEXTTYP

CREATE VIEW I_MatlProcurementExternalType AS
SELECT
  cast(typ.esobs as pph_esobs preserving type) AS MaterialProcurementExtType,
  cast(typ.spras as spras preserving type) AS Language,
  cast(typ.sobes as pph_sobes preserving type) AS MaterialProcurementType,
  typ.sotxt AS MaterialProcurementExtTypeName
FROM t460b AS typ
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_MatlProcurementType AS _MaterialProcurementType ON MaterialProcurementType = _MaterialProcurementType.MaterialProcurementType  -- association [1..1]
;