P_WorkPackageFunctionValues

DDL: P_WORKPACKAGEFUNCTIONVALUES SQL: PWPFUNCVAL Type: view BASIC

P_WorkPackageFunctionValues is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (entprobj_blkfunc) and exposes 4 fields with key fields WorkPackageUUID, WorkPackageFunctionId.

Data Sources (1)

SourceAliasJoin Type
entprobj_blkfunc WorkPackageFunctions from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PWPFUNCVAL view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY WorkPackageUUID entprobj_blkfunc parent_object_guid Entity GUID
KEY WorkPackageFunctionId entprobj_blkfunc function_id Function ID
WorkPackageFunctionIsBlocked entprobj_blkfunc is_blocked Func Is Blocked
WorkPackageInternalID entprobj_blkfunc wbs_element_internal_id WBS Internal ID

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 P_WorkPackageFunctionValues.
-- 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: PWPFUNCVAL

CREATE VIEW P_WorkPackageFunctionValues AS
SELECT
  WorkPackageFunctions.parent_object_guid AS WorkPackageUUID,
  WorkPackageFunctions.function_id AS WorkPackageFunctionId,
  WorkPackageFunctions.is_blocked AS WorkPackageFunctionIsBlocked,
  WorkPackageFunctions.wbs_element_internal_id AS WorkPackageInternalID
FROM entprobj_blkfunc AS WorkPackageFunctions
;