I_BPCOLLECTIONPROFILEASSGMT
Business Partner Collection Profile Assignment
I_BPCOLLECTIONPROFILEASSGMT is a CDS View in S/4HANA. Business Partner Collection Profile Assignment. It contains 2 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| P_CollMgmtRblsItmForKeyDte1 | view | inner | COMPOSITE | |
| R_BusPartCollsProfileAssgmtTP | view_entity | from | TRANSACTIONAL | Business Partner: Collection Profiles |
Fields (2)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| CollectionProfile | CollectionProfile | 1 | |
| LastChangeDateTime | LastChangeDateTime | 1 |
@AbapCatalog: { sqlViewName: 'IBPCOLLPROFILE',
compiler: { compareFilter: true },
preserveKey: true }
@AccessControl: { authorizationCheck: #CHECK }
@EndUserText: { label: 'Business Partner Collection Profile Assignment' }
@VDM: { viewType: #BASIC,
lifecycle: { contract: { type: #PUBLIC_LOCAL_API } } }
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@ObjectModel: { usageType: { serviceQuality: #A,
sizeCategory: #L,
dataClass: #TRANSACTIONAL },
semanticKey: [ 'BusinessPartner',
'CollectionProfile' ],
representativeKey: 'BPCollPrflAssignmentValidTo' }
define view I_BPCollectionProfileAssgmt
as select from udmbpprofile
// VDM Associations
// Business Partner
association [0..1] to I_BusinessPartner as _BusinessPartner on $projection.BusinessPartner = _BusinessPartner.BusinessPartner
// Collection Profile
association [0..1] to I_CollectionsProfile as _CollectionsProfile on $projection.CollectionProfile = _CollectionsProfile.CollectionProfile
{
key partner as BusinessPartner,
key valid_until as BPCollPrflAssignmentValidTo,
valid_from as BPCollPrflAssignmentValidFrom,
coll_profile as CollectionProfile,
last_changed_at as LastChangeDateTime,
// Exposed Associations
_BusinessPartner,
_CollectionsProfile
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"UDMBPPROFILE"
],
"ASSOCIATED":
[
"I_BUSINESSPARTNER",
"I_COLLECTIONSPROFILE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/