I_PhysInvtryType

DDL: I_PHYSINVTRYTYPE Type: view BASIC

Physical Inventory Type

I_PhysInvtryType (Basic)

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

Physical Inventory Type · Supply Chain

I_PhysInvtryType is a Basic CDS View (Dimension) that provides data about "Physical Inventory Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field PhysicalInventoryType. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessSupply Chain
Application ComponentMM-IM-VDM-PI
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities, Data Source for Data Extraction
PackageSupply Chain for SAP S/4HANA Cloud Private Edition
Description <p>These two CDS views (type code list view and its corresponding text view) provide a list of allowed type codes for the physical inventory type and the corresponding text representation.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PhysInvtryTypeText _Text $projection.PhysicalInventoryType = _Text.PhysicalInventoryType

Annotations (20)

NameValueLevelField
AbapCatalog.sqlViewName IPITYPE view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Physical Inventory Type view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey PhysicalInventoryType view
ObjectModel.sapObjectNodeType.name PhysicalInventoryType view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PhysicalInventoryType Physical Inventory Type
DomainValue dd07l domvalue_l Values for Domains: Single Value/Lower Limit
_Text _Text

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_PhysInvtryType.
-- 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.

CREATE VIEW I_PhysInvtryType AS
SELECT
  cast ( substring( domvalue_l, 1, 1 ) as invart preserving type) AS PhysicalInventoryType,
  dd07l.domvalue_l AS DomainValue
FROM dd07l
LEFT OUTER JOIN I_PhysInvtryTypeText AS _Text ON PhysicalInventoryType = _Text.PhysicalInventoryType  -- association [0..*]
;