I_PersnWrkAgrmtRoleForOPg

DDL: I_PERSNWRKAGRMTROLEFOROPG SQL: IPERSWKAGRMTROLE Type: view BASIC Package: VDM_SHCM_EMPLOYEE_V2

Person Work Agreement Role Details for Object Page

I_PersnWrkAgrmtRoleForOPg is a Basic CDS View that provides data about "Person Work Agreement Role Details for Object Page" in SAP S/4HANA. It reads from 2 data sources (wfd_d_assgmtdets, wfd_d_assgmt) and exposes 2 fields with key field PersonWorkAgreement. It has 1 association to related views. Part of development package VDM_SHCM_EMPLOYEE_V2.

Data Sources (2)

SourceAliasJoin Type
wfd_d_assgmtdets dets inner
wfd_d_assgmt new from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BusinessPartnerRoleText _BusinessPartnerRoleText $projection.BusinessPartnerRole = _BusinessPartnerRoleText.BusinessPartnerRole

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IPERSWKAGRMTROLE view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Person Work Agreement Role Details for Object Page view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PersonWorkAgreement wfd_d_assgmtdets workforce_assgmt_id WorkForce Assgmt ID
_BusinessPartnerRoleText _BusinessPartnerRoleText

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_PersnWrkAgrmtRoleForOPg.
-- 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: IPERSWKAGRMTROLE

CREATE VIEW I_PersnWrkAgrmtRoleForOPg AS
SELECT
  dets.workforce_assgmt_id AS PersonWorkAgreement
FROM wfd_d_assgmt AS new
INNER JOIN wfd_d_assgmtdets AS dets ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_BusinessPartnerRoleText AS _BusinessPartnerRoleText ON BusinessPartnerRole = _BusinessPartnerRoleText.BusinessPartnerRole  -- association [0..*]
;