E_CustomerProjectWorkPackage

DDL: E_CUSTOMERPROJECTWORKPACKAGE SQL: EICPWRKPCKG Type: view EXTENSION

Customer Project Workpackage

E_CustomerProjectWorkPackage is a Extension CDS View that provides data about "Customer Project Workpackage" in SAP S/4HANA. It reads from 1 data source (/cpd/d_pfp_ps) and exposes 1 field with key field CustProjWorkPackageUUID.

Data Sources (1)

SourceAliasJoin Type
/cpd/d_pfp_ps Persistence from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName EICPWRKPCKG view
EndUserText.label Customer Project Workpackage view
ClientHandling.algorithm #AUTOMATED view
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY CustProjWorkPackageUUID /cpd/d_pfp_ps db_key UUID

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 E_CustomerProjectWorkPackage.
-- 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: EICPWRKPCKG

CREATE VIEW E_CustomerProjectWorkPackage AS
SELECT
  Persistence.db_key AS CustProjWorkPackageUUID
FROM /cpd/d_pfp_ps AS Persistence
;