I_WorkForcePersonBPToSupplier

DDL: I_WORKFORCEPERSONBPTOSUPPLIER Type: view_entity COMPOSITE

Workforce Person BP or Supplier info

I_WorkForcePersonBPToSupplier is a Composite CDS View that provides data about "Workforce Person BP or Supplier info" in SAP S/4HANA. It reads from 2 data sources (I_BusinessPartner, I_SupplierToBusinessPartner) and exposes 2 fields with key field BusinessPartner.

Data Sources (2)

SourceAliasJoin Type
I_BusinessPartner BusinessPartner from
I_SupplierToBusinessPartner SupplierToBusinessPartner inner

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Workforce Person BP or Supplier info view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner I_BusinessPartner BusinessPartner Issuing Authority
Supplier I_SupplierToBusinessPartner Supplier Supplier

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_WorkForcePersonBPToSupplier.
-- 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.

CREATE VIEW I_WorkForcePersonBPToSupplier AS
SELECT
  BusinessPartner.BusinessPartner AS BusinessPartner,
  SupplierToBusinessPartner.Supplier AS Supplier
FROM I_BusinessPartner AS BusinessPartner
INNER JOIN I_SupplierToBusinessPartner AS SupplierToBusinessPartner ON /* join condition not captured in parsed metadata */
;