Deprecated
This CDS view is deprecated in S/4HANA. Use C_EWM_WhseDocAcctAsgtObjectVH instead. View all deprecated CDS views →

I_EWM_WhseDocAcctAsgtObjectVH

DDL: I_EWM_WHSEDOCACCTASGTOBJECTVH Type: view_entity COMPOSITE

Acct Assignment Object for Whse Document

I_EWM_WhseDocAcctAsgtObjectVH is a Composite CDS View that provides data about "Acct Assignment Object for Whse Document" in SAP S/4HANA. It reads from 1 data source (I_EWM_ConfirmedWarehouseTask_2) and exposes 4 fields with key fields EWMWarehouse, EWMAccountAssignmentCategory, EWMAccountAssignmentObject. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_EWM_ConfirmedWarehouseTask_2 I_EWM_ConfirmedWarehouseTask_2 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EWM_AccountAssgmtCatText _AccountAssgmtCatText $projection.EWMAccountAssignmentCategory = _AccountAssgmtCatText.EWMAccountAssignmentCategory

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Acct Assignment Object for Whse Document view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #COMPOSITE view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor C_EWM_WhseDocAcctAsgtObjectVH view
ObjectModel.representativeKey EWMAccountAssignmentObject view
Analytics.technicalName IEWMACCTASGTOBVH view
Search.searchable true view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EWMWarehouse EWMWarehouse Warehouse No.
KEY EWMAccountAssignmentCategory EWMAccountAssignmentCategory Acct.Assig.Cat.
KEY EWMAccountAssignmentObject Acc.Assign.Obj.
_AccountAssgmtCatText _AccountAssgmtCatText

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_WhseDocAcctAsgtObjectVH.
-- 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_WhseDocAcctAsgtObjectVH AS
SELECT
  EWMWarehouse,
  EWMAccountAssignmentCategory,
  cast( EWMAccountAssignmentObject as ewm_de_whsedocaccassobj preserving type ) AS EWMAccountAssignmentObject
FROM I_EWM_ConfirmedWarehouseTask_2
LEFT OUTER JOIN I_EWM_AccountAssgmtCatText AS _AccountAssgmtCatText ON EWMAccountAssignmentCategory = _AccountAssgmtCatText.EWMAccountAssignmentCategory  -- association [0..*]
;