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

P_TemporaryBPCollectionSegment

DDL: P_TEMPORARYBPCOLLECTIONSEGMENT SQL: PTBPCOLLSGMNT Type: view BASIC

P_TemporaryBPCollectionSegment is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (udmbptempassignm) and exposes 7 fields with key fields BusinessPartner, CollectionSegment, BPCollSgmtAssignmentValidTo, TmpBPCollSgmtAssgmtValidTo.

Data Sources (1)

SourceAliasJoin Type
udmbptempassignm udmbptempassignm from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PTBPCOLLSGMNT 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_BPCollectionsSgmtTmpAssgmt view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner partner With Partner
KEY CollectionSegment coll_segment Segment
KEY BPCollSgmtAssignmentValidTo valid_until Valid Until
KEY TmpBPCollSgmtAssgmtValidTo date_to Validity End Date
TmpBPCollSgmtAssgmtValidFrom date_from Validity Start Date
CollectionGroup coll_group Collection Group
CollectionSpecialist coll_specialist Specialist

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_TemporaryBPCollectionSegment.
-- 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: PTBPCOLLSGMNT

CREATE VIEW P_TemporaryBPCollectionSegment AS
SELECT
  partner AS BusinessPartner,
  coll_segment AS CollectionSegment,
  valid_until AS BPCollSgmtAssignmentValidTo,
  date_to AS TmpBPCollSgmtAssgmtValidTo,
  date_from AS TmpBPCollSgmtAssgmtValidFrom,
  coll_group AS CollectionGroup,
  coll_specialist AS CollectionSpecialist
FROM udmbptempassignm
;