E_PhysInvtryDocumentItem

DDL: E_PHYSINVTRYDOCUMENTITEM SQL: EPHYSINVDOCITEM Type: view EXTENSION

Physical Inventory Doc Item - Extension

E_PhysInvtryDocumentItem is a Extension CDS View that provides data about "Physical Inventory Doc Item - Extension" in SAP S/4HANA. It reads from 1 data source (iseg) and exposes 3 fields with key fields FiscalYear, PhysicalInventoryDocument, PhysicalInventoryDocumentItem.

Data Sources (1)

SourceAliasJoin Type
iseg Persistence from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName EPHYSINVDOCITEM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #EXTENSION view
EndUserText.label Physical Inventory Doc Item - Extension view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY FiscalYear gjahr Settlement Year
KEY PhysicalInventoryDocument iblnr Phys. Inv. Doc.
KEY PhysicalInventoryDocumentItem zeili Item

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 E_PhysInvtryDocumentItem.
-- 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: EPHYSINVDOCITEM

CREATE VIEW E_PhysInvtryDocumentItem AS
SELECT
  gjahr AS FiscalYear,
  iblnr AS PhysicalInventoryDocument,
  zeili AS PhysicalInventoryDocumentItem
FROM iseg AS Persistence
;