I_EWM_PInvCountDynFldSel_2

DDL: I_EWM_PINVCOUNTDYNFLDSEL_2 Type: view_entity BASIC

Dynamic Fields of Whse Phys Inventory

I_EWM_PInvCountDynFldSel_2 is a Basic CDS View that provides data about "Dynamic Fields of Whse Phys Inventory" in SAP S/4HANA. It reads from 1 data source (/scwm/tformfld) and exposes 36 fields with key fields EWMWarehouse, PhysicalInventoryArea.

Data Sources (1)

SourceAliasJoin Type
/scwm/tformfld /scwm/tformfld from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Dynamic Fields of Whse Phys Inventory view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view

Fields (36)

KeyFieldSource TableSource FieldDescription
KEY EWMWarehouse lgnum Whse Number
KEY PhysicalInventoryArea pi_area Phys. Inv. Area
PInvItmNumberIsDspd pi_itm_number PI Item
StorageBinIsDspd bin Storage Bin
StorageBinEmptyIsDspd bin_empty Bin Empty
NestedHndlgUnitIsDspd sub_hu Nested Handling Unit
NestedHndlgUnitCmpltIsDspd sub_hu_complete Nested HU Complete
NestedHndlgUnitMisgIsDspd sub_hu_missing Nested HU Missing
NestedHndlgUnitEmptyIsDspd sub_hu_empty Nested HU Empty
HandlingUnitIsDspd hu Handling Unit
HndlgUnitCompleteIsDspd hu_complete HU Complete
HndlgUnitMissingIsDspd hu_missing HU Missing
HndlgUnitEmptyIsDspd hu_empty HU Empty
ProductIDIsDspd productid Product ID
ProductDescIsDspd product_desc Product Description
BatchIsDspd batch Lot No.
OwnerIsDspd owner Vehicle Owner
OwnerNameIsDspd owner_desc Owner Description
EntitledToDisposePtyIsDspd entitled Party Ent. to Disp.
EntitledToDisposePtyNameIsDspd entitled_desc Ent. to Disp. Desc.
StockTypeIsDspd stock_type Stock Type
StockTypeTextIsDspd stock_type_desc Stock Type Desc.
StockUsageIsDspd stock_usage Usage
StockUsageTextIsDspd stock_usage_desc Usage Description
SpecialStockTypeIsDspd special_stock_type Special Stock Type
SpecialStockTypeTextIsDspd special_stock_type_desc Special Stk Ty. Des.
SpecialStockExtNoIsDspd special_stock_ext_no Ext. No. of Spe. Stk
SpecialStockExtItmNoIsDspd special_stock_ext_itm_no Special Stock Item
CountryOfOriginIsDspd country_of_origin Ctry/Reg. of Origin
CountryOfOriginNameIsDspd coo_desc Country/Region
ShelfLifeExprtnDateIsDspd sled Shelf Life Exp. Date
GoodsReceiptDateIsDspd gr_date Goods Receipt Date
ProductQuantityIsDspd quantity Value
ProductUoMIsDspd uom UoM: Conv. to
BookQuantityIsDspd bookqtyflg Book Quantity
BookQuantityUoMIsDspd bookuomflg Book Quantity UoM

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_EWM_PInvCountDynFldSel_2.
-- 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_EWM_PInvCountDynFldSel_2 AS
SELECT
  lgnum AS EWMWarehouse,
  pi_area AS PhysicalInventoryArea,
  pi_itm_number AS PInvItmNumberIsDspd,
  bin AS StorageBinIsDspd,
  bin_empty AS StorageBinEmptyIsDspd,
  sub_hu AS NestedHndlgUnitIsDspd,
  sub_hu_complete AS NestedHndlgUnitCmpltIsDspd,
  sub_hu_missing AS NestedHndlgUnitMisgIsDspd,
  sub_hu_empty AS NestedHndlgUnitEmptyIsDspd,
  hu AS HandlingUnitIsDspd,
  hu_complete AS HndlgUnitCompleteIsDspd,
  hu_missing AS HndlgUnitMissingIsDspd,
  hu_empty AS HndlgUnitEmptyIsDspd,
  productid AS ProductIDIsDspd,
  product_desc AS ProductDescIsDspd,
  batch AS BatchIsDspd,
  owner AS OwnerIsDspd,
  owner_desc AS OwnerNameIsDspd,
  entitled AS EntitledToDisposePtyIsDspd,
  entitled_desc AS EntitledToDisposePtyNameIsDspd,
  stock_type AS StockTypeIsDspd,
  stock_type_desc AS StockTypeTextIsDspd,
  stock_usage AS StockUsageIsDspd,
  stock_usage_desc AS StockUsageTextIsDspd,
  special_stock_type AS SpecialStockTypeIsDspd,
  special_stock_type_desc AS SpecialStockTypeTextIsDspd,
  special_stock_ext_no AS SpecialStockExtNoIsDspd,
  special_stock_ext_itm_no AS SpecialStockExtItmNoIsDspd,
  country_of_origin AS CountryOfOriginIsDspd,
  coo_desc AS CountryOfOriginNameIsDspd,
  sled AS ShelfLifeExprtnDateIsDspd,
  gr_date AS GoodsReceiptDateIsDspd,
  quantity AS ProductQuantityIsDspd,
  uom AS ProductUoMIsDspd,
  bookqtyflg AS BookQuantityIsDspd,
  bookuomflg AS BookQuantityUoMIsDspd
FROM /scwm/tformfld
;