I_ProcmtEmployeeUserDetails

DDL: I_PROCMTEMPLOYEEUSERDETAILS SQL: IPROCMTUSRDTL Type: view COMPOSITE

CDS view for Procurement Employee Details

I_ProcmtEmployeeUserDetails is a Composite CDS View that provides data about "CDS view for Procurement Employee Details" in SAP S/4HANA. It reads from 2 data sources (P_SSPWorkPersonDetails, I_User) and exposes 14 fields with key field UserID.

Data Sources (2)

SourceAliasJoin Type
P_SSPWorkPersonDetails _Employee inner
I_User usr21 from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPROCMTUSRDTL view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
EndUserText.label CDS view for Procurement Employee Details view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.personalData.blocking #REQUIRED view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY UserID
BusinessPartnerUUID I_User BusinessPartnerUUID UUID
FirstName P_SSPWorkPersonDetails FirstName First Name
LastName P_SSPWorkPersonDetails LastName Last Name
FullName P_SSPWorkPersonDetails PersonFullName Full Name
Employee P_SSPWorkPersonDetails PersonExternalID
AuthorizationGroup P_SSPWorkPersonDetails AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted P_SSPWorkPersonDetails IsBusinessPurposeCompleted Purpose Completed
ValidityEndDate P_SSPWorkPersonDetails ValidityEndDate ValidTo
PersonWorkAgreement P_SSPWorkPersonDetails PersonWorkAgreement Personnel No.
CompanyCode P_SSPWorkPersonDetails CompanyCode Receiver Company Code
Person P_SSPWorkPersonDetails Person Person/ Farm/ Field
PersonWorkAgrmtAuthznGrpg P_SSPWorkPersonDetails PersonWorkAgrmtAuthznGrpg Org.key
_BusinessPartner P_SSPWorkPersonDetails _BusinessPartner

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_ProcmtEmployeeUserDetails.
-- 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: IPROCMTUSRDTL

CREATE VIEW I_ProcmtEmployeeUserDetails AS
SELECT
  cast( usr21.UserID as vdm_userid ) AS UserID,
  usr21.BusinessPartnerUUID AS BusinessPartnerUUID,
  _Employee.FirstName AS FirstName,
  _Employee.LastName AS LastName,
  _Employee.PersonFullName AS FullName,
  _Employee.PersonExternalID AS Employee,
  _Employee.AuthorizationGroup AS AuthorizationGroup,
  _Employee.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted,
  _Employee.ValidityEndDate AS ValidityEndDate,
  _Employee.PersonWorkAgreement AS PersonWorkAgreement,
  _Employee.CompanyCode AS CompanyCode,
  _Employee.Person AS Person,
  _Employee.PersonWorkAgrmtAuthznGrpg AS PersonWorkAgrmtAuthznGrpg,
  _Employee._BusinessPartner AS _BusinessPartner
FROM I_User AS usr21
INNER JOIN P_SSPWorkPersonDetails AS _Employee ON /* join condition not captured in parsed metadata */
;