Deprecated
This CDS view is deprecated in S/4HANA. Use I_BPCollectionProfileAssgmt instead. View all deprecated CDS views →

P_BPCollectionProfile

DDL: P_BPCOLLECTIONPROFILE SQL: PBPCOLLPROFILE Type: view BASIC

P_BPCollectionProfile is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (udmbpprofile) and exposes 4 fields with key fields BusinessPartner, BPCollPrflAssignmentValidTo.

Data Sources (1)

SourceAliasJoin Type
udmbpprofile udmbpprofile from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PBPCOLLPROFILE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.private true view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_BPCollectionProfileAssgmt view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner partner With Partner
KEY BPCollPrflAssignmentValidTo valid_until Valid Until
BPCollPrflAssignmentValidFrom valid_from Validity Start Time
CollectionProfile coll_profile Collection Prof.

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_BPCollectionProfile.
-- 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: PBPCOLLPROFILE

CREATE VIEW P_BPCollectionProfile AS
SELECT
  partner AS BusinessPartner,
  valid_until AS BPCollPrflAssignmentValidTo,
  valid_from AS BPCollPrflAssignmentValidFrom,
  coll_profile AS CollectionProfile
FROM udmbpprofile
;