/SCMTMS/VE_BPPRF

DDL: /SCMTMS/VE_BPPRF Type: view_entity

BOPF: Business Partner TSP Profile

/SCMTMS/VE_BPPRF is a CDS View that provides data about "BOPF: Business Partner TSP Profile" in SAP S/4HANA. It reads from 1 data source (/sctm/tsphd) and exposes 6 fields with key fields profile_guid, partner. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/sctm/tsphd /sctm/tsphd from

Associations (1)

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

Annotations (7)

NameValueLevelField
EndUserText.label BOPF: Business Partner TSP Profile view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY profile_guid profile_guid GUID of an SCM Master Data Object
KEY partner partner With Partner
perf_pct perf_pct Performance (%)
cont_mv cont_mv Continuous Move
AuthorizationGroup _BusinessPartner AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted _BusinessPartner IsBusinessPurposeCompleted Purpose Completed

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 /SCMTMS/VE_BPPRF.
-- 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 /SCMTMS/VE_BPPRF AS
SELECT
  profile_guid,
  partner,
  perf_pct,
  cont_mv,
  _BusinessPartner.AuthorizationGroup AS AuthorizationGroup,
  _BusinessPartner.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted
FROM /sctm/tsphd
LEFT OUTER JOIN I_BusinessPartner AS _BusinessPartner ON partner = _BusinessPartner.BusinessPartner  -- association [1..1]
;