I_PhysInvtryGroupType

DDL: I_PHYSINVTRYGROUPTYPE Type: view BASIC

Physical Inventory Group Type

I_PhysInvtryGroupType (Basic)

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

Physical Inventory Group Type · Supply Chain

I_PhysInvtryGroupType is a Basic CDS View (Dimension) that provides data about "Physical Inventory Group Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field PhysicalInventoryGroupType. 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 group type field of physical inventory documents and the corresponding text representation.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PhysInvtryGroupTypeText _Text $projection.PhysicalInventoryGroupType = _Text.PhysicalInventoryGroupType

Annotations (20)

NameValueLevelField
AbapCatalog.sqlViewName IPIGRPTYPE view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Physical Inventory Group 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 PhysicalInventoryGroupType view
ObjectModel.sapObjectNodeType.name PhysicalInventoryGroupType 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 PhysicalInventoryGroupType Type of Grouping Criterion
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_PhysInvtryGroupType.
-- 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_PhysInvtryGroupType AS
SELECT
  cast ( substring( domvalue_l, 1, 2 ) as keord preserving type) AS PhysicalInventoryGroupType,
  dd07l.domvalue_l AS DomainValue
FROM dd07l
LEFT OUTER JOIN I_PhysInvtryGroupTypeText AS _Text ON PhysicalInventoryGroupType = _Text.PhysicalInventoryGroupType  -- association [0..*]
;