I_EWM_PInvCountDynFldSel_2
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)
| Source | Alias | Join Type |
|---|---|---|
| /scwm/tformfld | /scwm/tformfld | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
;
Learn More
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- CDS View Annotations — A Complete Guide
- What Is a CDS View in SAP S/4HANA?
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA