I_ProdnVersTaskListVH

DDL: I_PRODNVERSTASKLISTVH SQL: IPRODNVERSTLVH Type: view BASIC Package: MPE_PLAN_PV

Task List

I_ProdnVersTaskListVH is a Basic CDS View that provides data about "Task List" in SAP S/4HANA. It reads from 1 data source (I_BOOMaterialAssgmtChangeState) and exposes 5 fields with key fields BillOfOperationsType, BillOfOperationsGroup, BillOfOperationsVariant, Material, Plant. It is exposed through 1 OData service (ASQL_F6400). Part of development package MPE_PLAN_PV.

Data Sources (1)

SourceAliasJoin Type
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

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F6400 ASQL_F6400 C2 NOT_RELEASED

Fields (5)

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

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
LEFT OUTER JOIN I_BOOMaterialAssgmtChangeState ON /* join condition not captured in parsed metadata */
;