P_BusinessPartnerFSAttr

DDL: P_BUSINESSPARTNERFSATTR SQL: PBPFSATTR Type: view CONSUMPTION

P_BusinessPartnerFSAttr is a Consumption CDS View in SAP S/4HANA.

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName PBPFSATTR view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
VDM.private true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner partner With Partner
BusinessPartnerIsVIP vip VIP Business Partner
CustomerIsUnwanted unw_customer Undesirable Customer
UndesirabilityReason unw_reason Reason Undes.
UndesirabilityComment unw_remark Comment
TradingPartner vbund Trading Partner
LastCustomerContactDate last_cust_cont Last Cust. Contact

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_BusinessPartnerFSAttr.
-- 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: PBPFSATTR

CREATE VIEW P_BusinessPartnerFSAttr AS
SELECT
  partner AS BusinessPartner,
  vip AS BusinessPartnerIsVIP,
  unw_customer AS CustomerIsUnwanted,
  unw_reason AS UndesirabilityReason,
  unw_remark AS UndesirabilityComment,
  vbund AS TradingPartner,
  last_cust_cont AS LastCustomerContactDate
;