P_Fiarcn_Bp_Cust

DDL: P_FIARCN_BP_CUST SQL: PVFiarcn_BpCust Type: view CONSUMPTION

Customer and Business Partner

P_Fiarcn_Bp_Cust is a Consumption CDS View that provides data about "Customer and Business Partner" in SAP S/4HANA. It reads from 1 data source (I_Customer) and exposes 2 fields.

Data Sources (1)

SourceAliasJoin Type
I_Customer I_Customer from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PVFiarcn_BpCust view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
VDM.private true view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Customer and Business Partner view

Fields (2)

KeyFieldSource TableSource FieldDescription
Customer Customer Sold-to Party
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 P_Fiarcn_Bp_Cust.
-- 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: PVFiarcn_BpCust

CREATE VIEW P_Fiarcn_Bp_Cust AS
SELECT
  Customer,
  _CustomerToBusinessPartner._BusinessPartner.BusinessPartner AS BusinessPartner
FROM I_Customer
;