I_PhysInvtryType

DDL: I_PHYSINVTRYTYPE Type: view_entity BASIC Package: MM_IM_VDM_PI

Physical Inventory Type

I_PhysInvtryType (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public 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. Part of development package MM_IM_VDM_PI.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessSupply Chain
Application ComponentMM-IM-VDM-PI-2CL
CapabilitiesData Source for Data Extraction,Association Target for Defining CDS Entities,Data Source for Defining CDS Entities,Analytical Dimension,Data Source in SQL Select
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageSupply Chain for SAP S/4HANA Cloud Public 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 (17)

NameValueLevelField
EndUserText.label Physical Inventory Type view
AccessControl.authorizationCheck #NOT_REQUIRED 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.technicalName IPITYPE 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..*]
;