P_BusinessPartnerLegalEntity

DDL: P_BUSINESSPARTNERLEGALENTITY SQL: PBPLEGALENTITY Type: view BASIC

P_BusinessPartnerLegalEntity is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (tb032) and exposes 2 fields with key field BPOrganisationLegalEntity.

Data Sources (1)

SourceAliasJoin Type
tb032 tb032 from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PBPLEGALENTITY view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BPOrganisationLegalEntity legal_org Legal entity
IsPrivate org_priv Private law

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_BusinessPartnerLegalEntity.
-- 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: PBPLEGALENTITY

CREATE VIEW P_BusinessPartnerLegalEntity AS
SELECT
  legal_org AS BPOrganisationLegalEntity,
  org_priv AS IsPrivate
FROM tb032
;