A_CustProjSlsOrdItemWorkPckg

DDL: A_CUSTPROJSLSORDITEMWORKPCKG Type: view COMPOSITE

Sales Order Item Work Package

A_CustProjSlsOrdItemWorkPckg is a Composite CDS View that provides data about "Sales Order Item Work Package" in SAP S/4HANA. It reads from 1 data source (I_CustProjSlsOrdItemWorkPckg) and exposes 11 fields with key fields CustomerProject, SalesOrderItem, WorkPackage.

Data Sources (1)

SourceAliasJoin Type
I_CustProjSlsOrdItemWorkPckg CustProjSlsOrdItemWorkPckg from

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Sales Order Item Work Package view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName ACUSTPROJSOIWP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.createEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.preserveKey true view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY CustomerProject CustomerProject Engmnt Project ID
KEY SalesOrderItem SalesOrderItem Sales Order Item
KEY WorkPackage WorkPackage Plan Item
WorkPackageName WorkPackageName Plan Item Desc.
SalesOrder SalesOrder SD Document
WorkPackageStartDate WorkPackageStartDate Start Date
WorkPackageEndDate WorkPackageEndDate End Date
SalesOrderType SalesOrderType Sales Order Type
OrganizationDivision OrganizationDivision Org. Division
SalesOrganization SalesOrganization Sales Organization
DistributionChannel DistributionChannel RefDistCh-Cust/Mat.

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 A_CustProjSlsOrdItemWorkPckg.
-- 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 A_CustProjSlsOrdItemWorkPckg AS
SELECT
  CustomerProject,
  SalesOrderItem,
  WorkPackage,
  WorkPackageName,
  SalesOrder,
  WorkPackageStartDate,
  WorkPackageEndDate,
  SalesOrderType,
  OrganizationDivision,
  SalesOrganization,
  DistributionChannel
FROM I_CustProjSlsOrdItemWorkPckg AS CustProjSlsOrdItemWorkPckg
;