I_ProdnVersTaskListVH

DDL: I_PRODNVERSTASKLISTVH SQL: IPRODNVERSTLVH Type: view BASIC

Task List

I_ProdnVersTaskListVH is a Basic CDS View that provides data about "Task List" in SAP S/4HANA. It reads from 2 data sources (I_BillOfOperationsChangeState, I_BOOMaterialAssgmtChangeState) and exposes 6 fields with key fields BillOfOperationsType, BillOfOperationsGroup, BillOfOperationsVariant, Material, Plant.

Data Sources (2)

SourceAliasJoin Type
I_BillOfOperationsChangeState I_BillOfOperationsChangeState left_outer
I_BOOMaterialAssgmtChangeState I_BOOMaterialAssgmtChangeState left_outer

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPRODNVERSTLVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Task List view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY BillOfOperationsType I_BillOfOperations BillOfOperationsType Task List Type
KEY BillOfOperationsGroup I_BillOfOperations BillOfOperationsGroup Group
KEY BillOfOperationsVariant I_BillOfOperations BillOfOperationsVariant Group Counter
KEY Material I_BOOMaterialAssgmtChangeState Material Vehicle Model
KEY Plant I_BOOMaterialAssgmtChangeState Plant Valuation Area
BillOfOperationsDesc I_BillOfOperationsChangeState BillOfOperationsDesc

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_ProdnVersTaskListVH.
-- 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: IPRODNVERSTLVH

CREATE VIEW I_ProdnVersTaskListVH AS
SELECT
  I_BillOfOperations.BillOfOperationsType AS BillOfOperationsType,
  I_BillOfOperations.BillOfOperationsGroup AS BillOfOperationsGroup,
  I_BillOfOperations.BillOfOperationsVariant AS BillOfOperationsVariant,
  I_BOOMaterialAssgmtChangeState.Material AS Material,
  I_BOOMaterialAssgmtChangeState.Plant AS Plant,
  I_BillOfOperationsChangeState.BillOfOperationsDesc AS BillOfOperationsDesc
LEFT OUTER JOIN I_BOOMaterialAssgmtChangeState ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_BillOfOperationsChangeState ON /* join condition not captured in parsed metadata */
;