I_WorkforcePersonImageURL

DDL: I_WORKFORCEPERSONIMAGEURL SQL: IWFPERSIMG Type: view BASIC

Workforce person Image URL

I_WorkforcePersonImageURL is a Basic CDS View that provides data about "Workforce person Image URL" in SAP S/4HANA. It reads from 1 data source (WFD_TF_I_WorkforcePersonImgURL) and exposes 3 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
WFD_TF_I_WorkforcePersonImgURL WFD_TF_I_WorkforcePersonImgURL from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_BusinessPartner _BusinessPartner _BusinessPartner.BusinessPartner = $projection.Person

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName IWFPERSIMG view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Workforce person Image URL view

Fields (3)

KeyFieldSource TableSource FieldDescription
Person Person Person/ Farm/ Field
WorkforcePersonImageURL WorkforcePersonImageURL
_BusinessPartner _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_WorkforcePersonImageURL.
-- 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: IWFPERSIMG

CREATE VIEW I_WorkforcePersonImageURL AS
SELECT
  Person,
  WorkforcePersonImageURL
FROM WFD_TF_I_WorkforcePersonImgURL
LEFT OUTER JOIN I_BusinessPartner AS _BusinessPartner ON _BusinessPartner.BusinessPartner = Person  -- association [1..1]
;